tween.TweenMethod(Callable.From((float percent,Vector2 startPosition) => TweenMethod(percent, GlobalPosition)), 0f, 1.0f, 1);
public void TweenMethod(float percent, Vector2 startPosition){};
For animation, if I want to add extra parameters, I cannot obtain percentages of 0.0-1.0f, and he prompts me that the parameters do not match。What I want is to be able to pass in the extra parameter startPosition, but also accept the percentage percentage. The problem now is that I cannot receive the percentage after passing in the extra parameter. What should I do