Replies: 1 comment 1 reply
-
Thanks for the feature request! Currently, the closest solution to your request is something like this: float value;
void Example() {
value = 0f;
Sequence.Create(10)
.ChainDelay(1f)
.ChainCallback(target: this, target => {
target.value += 1f;
print(target.value);
});
} Can you please provide a more detailed real-world example? This will help me better understand the task at hand. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For example:
Tween.Custom(startValue: 0, endValue: 10f, updateRate: 1f, duration: 10f, onValueChange: v => Debug.Log(v));
prints:
1
2
...
10
Beta Was this translation helpful? Give feedback.
All reactions