Browse Source

Fixed typo.

Mark Sibly 7 years ago
parent
commit
ed8cee9000
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/mojo3d/scene/entityexts.monkey2

+ 1 - 1
modules/mojo3d/scene/entityexts.monkey2

@@ -266,7 +266,7 @@ Class Entity Extension
 	
 	#rem monkeydoc Gets entity position in local or world space.
 	#end
-	Method GetPostition:Vec3f( localSpace:Bool=False )
+	Method GetPosition:Vec3f( localSpace:Bool=False )
 		
 		Return localSpace ? LocalPosition Else Position
 	End