CharTween.gd 698 B

123456789101112131415161718192021222324252627
  1. extends Tween
  2. # Drive moves for player
  3. export var default_duration = 0.1
  4. export var drift_duration = 0.2
  5. var current_duration = default_duration
  6. func connect_into(o):
  7. connect("tween_completed", o, "_on_tween_completed")
  8. func move_char(c, target, duration = current_duration):
  9. interpolate_property(c, "position", c.get_position(), target, duration, Tween.TRANS_LINEAR, Tween.EASE_OUT_IN)
  10. func rotate_char(c, from, to, duration = current_duration):
  11. interpolate_property(c, "rotation_degrees", from, to, duration, Tween.TRANS_LINEAR, Tween.EASE_OUT)
  12. func _on_Player_drift_started():
  13. current_duration = drift_duration
  14. func _on_Player_drift_ended():
  15. current_duration = default_duration