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
Must be able to get the current position to add to it, even if just adding the current delta. This means that this is not achievable without #23, which I would prefer not to do.
Perhaps there is some hacky way to do it:
staticTweenTweenPositionAdditive(thisTransformtransform, ...){varprev=transform.position;Peachy.Tween(position,to,
v =>{vardelta=v-prev;transform.position+=delta;prev=v;});}
The text was updated successfully, but these errors were encountered:
Must be able to get the current position to add to it, even if just adding the current delta. This means that this is not achievable without #23, which I would prefer not to do.
Perhaps there is some hacky way to do it:
The text was updated successfully, but these errors were encountered: