You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actuate uses Reflect.setField / setProperty to set tweened values in.
This is very expensive on some targets (as Error objects are constantly allocated) and hides any errors produced within the setter.
Ideally, the GenericActuator would work out whether a property should go through a setter once at the beginning of a tween, and then either use this setter or directly set the field in an untyped manner (without a try/catch).
The text was updated successfully, but these errors were encountered:
Actuate uses Reflect.setField / setProperty to set tweened values in.
This is very expensive on some targets (as Error objects are constantly allocated) and hides any errors produced within the setter.
Ideally, the GenericActuator would work out whether a property should go through a setter once at the beginning of a tween, and then either use this setter or directly set the field in an untyped manner (without a try/catch).
The text was updated successfully, but these errors were encountered: