CharTween.gd 482 B

12345678910111213
  1. extends Tween
  2. # Drive moves for player
  3. export var default_duration = 0.1
  4. func connect_into(o):
  5. connect("tween_completed", o, "_on_tween_completed")
  6. func move_char(c, target, duration = default_duration):
  7. interpolate_property(c, "position", c.get_position(), target, duration, Tween.TRANS_LINEAR, Tween.EASE_OUT_IN)
  8. func rotate_char(c, from, to, duration = default_duration):
  9. interpolate_property(c, "rotation_degrees", from, to, duration, Tween.TRANS_LINEAR, Tween.EASE_OUT)