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
The SimpleActuator does this check in initialize:
Reflect.hasField (target, propertyName) #if flash && !untyped (target).hasOwnProperty ("set_" + propertyName) #elseif html5 && !(untyped (target).properties && untyped (target).properties["set_" + propertyName]) #end
to determine wether it has to use a setter or not
the MotionPathActuator just checks for:
#if flash false && #end Reflect.hasField (target, propertyName)
The text was updated successfully, but these errors were encountered:
The SimpleActuator does this check in initialize:
Reflect.hasField (target, propertyName) #if flash && !untyped (target).hasOwnProperty ("set_" + propertyName) #elseif html5 && !(untyped (target).properties && untyped (target).properties["set_" + propertyName]) #end
to determine wether it has to use a setter or not
the MotionPathActuator just checks for:
#if flash false && #end Reflect.hasField (target, propertyName)
The text was updated successfully, but these errors were encountered: