Quellcode durchsuchen

Make the tween ease symetric

Same behaviour at start and end of tween.
DricomDragon vor 5 Jahren
Ursprung
Commit
1ab8273596
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      CharTween.gd

+ 1 - 1
CharTween.gd

@@ -11,7 +11,7 @@ func connect_into(o):
 	pass
 	pass
 
 
 func move_char(c, t_pos):
 func move_char(c, t_pos):
-	interpolate_property(c, "position", c.get_position(), t_pos, duration, Tween.TRANS_LINEAR, Tween.EASE_IN)
+	interpolate_property(c, "position", c.get_position(), t_pos, duration, Tween.TRANS_LINEAR, Tween.EASE_OUT_IN)
 	pass
 	pass
 
 
 func rotate_char(c, t_rot):
 func rotate_char(c, t_rot):