The manual says:
// Value tween from 100 to 200 linearly over 3 seconds
const t = Tween.startTween("value", 200, 3, "linear", {
startValue: 100
});
// (then read t.value over time)
Please could anybody provide an example of how exactly I could access this t.value over time in JS. Thank you!
Ashley, it would be much appreciated if there were an example in the docs (for inexperienced users like me). Thank you!