diff --git a/Assets/JCSUnity/Scripts/Effects/Tweener/JCS_ValueTweener.cs b/Assets/JCSUnity/Scripts/Effects/Tweener/JCS_ValueTweener.cs index 31c35405..f2268556 100644 --- a/Assets/JCSUnity/Scripts/Effects/Tweener/JCS_ValueTweener.cs +++ b/Assets/JCSUnity/Scripts/Effects/Tweener/JCS_ValueTweener.cs @@ -158,11 +158,11 @@ public void DoTween(float to) { DoTween(this.onValueReturn.Invoke(), to, this.mDuration, this.mEasing); } - public void DoTwenn(float from, float to) + public void DoTween(float from, float to) { DoTween(from, to, this.mDuration, this.mEasing); } - public void DoTwenn(float from, float to, float duration) + public void DoTween(float from, float to, float duration) { DoTween(from, to, duration, this.mEasing); }