SetPosition
From MaratisWiki
setPosition(object, vector)
Set an object to a given position.
-
object
: object to operate on -
vector
: vector
Example 1: This script will move an object to another object. getPosition
is used to determinate the first object (the target) position.
object = getObject("object") object2 = getObject("object2") -- Scene update function onSceneUpdate() objectpos = getPosition(object) if isKeyPressed("SPACE") then setPosition(object2, {objectpos[1], objectpos[2], objectpos[3]}) end end