CharTween.gd 359 B

1234567891011121314
  1. extends Tween
  2. # Called when the node enters the scene tree for the first time.
  3. func _ready():
  4. pass # Replace with function body.
  5. func connect_into(o):
  6. connect("tween_completed", o, "_on_tween_completed")
  7. pass
  8. func move_char(c, t_pos):
  9. interpolate_property(c, "position", c.get_position(), t_pos, 0.75, Tween.TRANS_LINEAR, Tween.EASE_IN)
  10. start()
  11. pass