Hi Stiev,
yes you can use the
item.moveTo() method to move an item in space. You can call it with 2, 3, or 4 arguments.
item.moveTo(xPos, yPos)
item.moveTo(xPos, yPos, zPos)
item.moveTo(xPos, yPos, zPos, callback)
Example:
var man = Space.createItem('LP_Man', 0, 0, 0);
man.moveTo(3, 4);
man.setPosition(7, -2, 3);
var newPos = man.getPosition(); // returns an object => {x: 7, y: -2, z: 3}
Thank you!
Benjamin