-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to Tween from the middle? #9
Comments
There is currently no way to move halfway through Tween. float x = 0;
await Tween.FromTo(
currentValue1 => x = currentValue1,
0.5f // start value
1f, // end value
0.5f // duration
); |
すみません、説明が不足していました。 |
現バージョンではGotoに相当する機能は存在しません。 |
いくつかの実装を検討した結果、この機能の追加はMagic Tweenの設計上難しいことが判明しました。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is there a way to start from a time in the middle of defining Tween?
For example, I want to start from the 0.5 second point in the code below (currentValue==0.5f) and transition to 1 in the remaining 0.5 seconds.
The text was updated successfully, but these errors were encountered: