I want to handle OnStart like DoTween. But I don't find any solution. Is there any way to do this?
DoTween:
transform.DOMoveX(4, 1).OnStart(MyCallback);
Maybe for LitMotion:
LMotion.Create(from, to, duration).WithOnStart(() => { // Do Something On Start }).Bind(x => { // Do Something });