Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Feb 16, 2025
1 parent d738655 commit a95ca6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/JCSUnity/Scripts/Effects/Tweener/JCS_ValueTweener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit a95ca6b

Please sign in to comment.