Mark Sibly 7 年 前
コミット
ed8cee9000
1 ファイル変更1 行追加1 行削除
  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