CharTween.gd 543 B

12345678910111213141516171819
  1. extends Tween
  2. export var duration = 0.75
  3. # Called when the node enters the scene tree for the first time.
  4. func _ready():
  5. pass # Replace with function body.
  6. func connect_into(o):
  7. connect("tween_all_completed", o, "_on_tween_completed")
  8. pass
  9. func move_char(c, t_pos):
  10. interpolate_property(c, "position", c.get_position(), t_pos, duration, Tween.TRANS_LINEAR, Tween.EASE_OUT_IN)
  11. pass
  12. func rotate_char(c, t_rot):
  13. interpolate_property(c, "rotation_degrees", c.rotation_degrees, t_rot, duration, Tween.TRANS_LINEAR, Tween.EASE_OUT)
  14. pass