LevelSwap.gd 318 B

123456789101112
  1. extends Tween
  2. export var duration = 1
  3. const far_away = 4000
  4. func swap_out(node):
  5. interpolate_property(node, "position:x", null, far_away, duration, Tween.TRANS_QUAD, Tween.EASE_IN)
  6. start()
  7. func swap_in(node):
  8. interpolate_property(node, "position:y", null, 0, duration, Tween.TRANS_QUAD, Tween.EASE_OUT)
  9. start()