浏览代码

Make turn animation fast at start

Ease in for tween rotation.
DricomDragon 5 年之前
父节点
当前提交
675820162b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      CharTween.gd

+ 1 - 1
CharTween.gd

@@ -15,5 +15,5 @@ func move_char(c, t_pos):
 	pass
 
 func rotate_char(c, t_rot):
-	interpolate_property(c, "rotation_degrees", c.rotation_degrees, t_rot, duration, Tween.TRANS_LINEAR, Tween.EASE_IN)
+	interpolate_property(c, "rotation_degrees", c.rotation_degrees, t_rot, duration, Tween.TRANS_LINEAR, Tween.EASE_OUT)
 	pass