소스 검색

Make the tween ease symetric

Same behaviour at start and end of tween.
DricomDragon 5 년 전
부모
커밋
1ab8273596
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      CharTween.gd

+ 1 - 1
CharTween.gd

@@ -11,7 +11,7 @@ func connect_into(o):
 	pass
 
 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
 
 func rotate_char(c, t_rot):