Code Blocks is in BETA!
How to Move and Rotate spots
Preview
Code
var object = Space.getSpot('Cube'); //note: easing and looping are now in Alpha, current apps already support it but keep this in mind object.rotateTo(new Vector3(0, 180, 0), 2).ease(EaseType.inQuad).loop(-1).loopType(LoopType.pingPong); object.moveTo(new Vector3(0, 1.8, 0), 2).ease(EaseType.outQuad).loop(-1).loopType(LoopType.pingPong;)