A wrapper around Actuate that is used to create special actuators for custom Feathers UI effects.
In the following example, a custom effect is created with
ActuateForEffects
and ActuateEffectContext
:
var customFadeOutEffect = function(target:Dynamic):IEffectContext
{
var actuator = ActuateForEffects.tween(target, 1.0, {alpha: 0.0});
return new ActuateEffectContext(target, actuator);
};
@jgranick/actuate on Github](https://github.com/jgranick/actuate)
Available since
1.0.0
.See also:
[
Static methods
statictween(target:Dynamic, duration:Float, properties:Dynamic, overwrite:Bool = true):IReadableGenericActuator
Similar to Actuate.tween()
, but it creates a special type of actuator
that may be used with ActuateEffectContext
to create custom Feathers
effects.
Available since
1.0.0
.staticupdate(target:Dynamic, duration:Float, start:Dynamic, end:Dynamic, overwrite:Bool = true):IReadableGenericActuator
Similar to Actuate.update()
, but it creates a special type of actuator
that may be used with ActuateEffectContext
to create custom Feathers
effects.
Available since
1.0.0
.