z_order.script 250 B

12345678
  1. function init(self)
  2. go.animate(".", "position.x", go.PLAYBACK_LOOP_PINGPONG, 600, go.EASING_INOUTSINE, 3) -- <1>
  3. end
  4. --[[
  5. 1. Animate the game object's ("." is shorthand for the current game object) x position between
  6. start position and 600.
  7. --]]