GetPosition

From MaratisWiki
(Difference between revisions)
Jump to: navigation, search
m
 
(3 intermediate revisions by one user not shown)
Line 1: Line 1:
 +
{{lua-function|getPosition|object}}
 +
 
Get the current object position in 3d space.
 
Get the current object position in 3d space.
  
objectpos = getPosition(object)
+
{{lua-function-param|object|object to operate on}}
  
Then you can use your object coordinates like this :
+
  objectpos = getPosition(object)
  
objectpos[1] : X position
+
Then you can use your object coordinates like this :
 
+
objectpos[2] : Y position
+
  
objectpos[3] : Z position
+
* '''objectpos[1]:''' X position
 +
* '''objectpos[2]:''' Y position
 +
* '''objectpos[3]:''' Z position
 
 
Example 1, Press Space to display the X position of the object in maratis
+
'''Example 1:''' Press Space to display the X position of the object in Maratis console window.
console window :
+
  
 
     object = getObject("object")  
 
     object = getObject("object")  
Line 24: Line 25:
  
 
[[Category:Lua scripting]]
 
[[Category:Lua scripting]]
 +
[[Category:Lua function]]
 +
[[Category:Transformation]]

Latest revision as of 01:18, 9 February 2014

getPosition(object)

Get the current object position in 3d space.

  • object : object to operate on
 objectpos = getPosition(object)

Then you can use your object coordinates like this :

  • objectpos[1]: X position
  • objectpos[2]: Y position
  • objectpos[3]: Z position

Example 1: Press Space to display the X position of the object in Maratis console window.

   object = getObject("object") 
   -- Scene update
   function onSceneUpdate()
       objectpos = getPosition(object) -- you can rename objectpos whatever you want
       if isKeyPressed("SPACE") then print(objectpos[1]) end
   end

See setPosition(object) function for a more advanced usage.

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox