CharTween.gd 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. extends Tween
  2. # Drive moves for player
  3. const MINIMAL_DURATION = 0.01
  4. export var default_duration = 0.1
  5. export var drift_duration = 0.2
  6. export var boost_bonus = 0.02
  7. var current_duration = default_duration
  8. var current_bonus = 0.0
  9. func connect_into(o):
  10. connect("tween_completed", o, "_on_tween_completed")
  11. func move_char(character, target):
  12. move_char_during(character, target, get_computed_duration())
  13. func move_char_during(c, target, duration):
  14. interpolate_property(c, "position", c.get_position(), target, duration, Tween.TRANS_LINEAR, Tween.EASE_OUT_IN)
  15. func rotate_char(character, from, to):
  16. rotate_char_during(character, from, to, get_computed_duration())
  17. func rotate_char_during(c, from, to, duration):
  18. interpolate_property(c, "rotation_degrees", from, to, duration, Tween.TRANS_LINEAR, Tween.EASE_OUT)
  19. func set_boost(value:int):
  20. current_bonus = boost_bonus * value
  21. func get_computed_duration():
  22. var duration = current_duration - current_bonus
  23. if duration < MINIMAL_DURATION :
  24. return MINIMAL_DURATION
  25. return duration
  26. func _on_Player_drift_started():
  27. current_duration = drift_duration
  28. func _on_Player_drift_ended():
  29. current_duration = default_duration