You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notice this a lot with Scaling but also in positions.
For example, LeanTween.scale(gameObject, Vector3.one, 0.75f).setEaseOutExpo();
I have to add LeanTween.scale(gameObject, Vector3.one, 0.75f).setEaseOutExpo().setOnComplete(()=> { gameObject.transform.localScale = Vector3.one; }); to guarantee it's set to scale 1.
The text was updated successfully, but these errors were encountered:
Notice this a lot with Scaling but also in positions.
For example,
LeanTween.scale(gameObject, Vector3.one, 0.75f).setEaseOutExpo();
I have to add
LeanTween.scale(gameObject, Vector3.one, 0.75f).setEaseOutExpo().setOnComplete(()=> { gameObject.transform.localScale = Vector3.one; });
to guarantee it's set to scale 1.The text was updated successfully, but these errors were encountered: