CharTween.gd 457 B

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