com.gskinner.motion.plugins
.. | |
---|---|
AutoHidePlugin | Plugin for GTween. Sets the visible of the target to false if its alpha is 0 or less. |
BlurPlugin | Plugin for GTween. Applies a blur filter to the target based on the "blur", "blurX", and/or "blurY" tween values. |
ColorAdjustPlugin | Plugin for GTween. Applies a color matrix filter to the target based on the "brightness", "contrast", "hue", and/or "saturation" tween values. |
ColorTransformPlugin | Plugin for GTween. Applies a color transform or tint to the target based on the "redMultiplier", "greenMultiplier", "blueMultiplier", "alphaMultiplier", "redOffset", "greenOffset", "blueOffset", "alphaOffset", and/or "tint" tween values. The tint value is a 32 bit color, where the alpha channel represents the strength of the tint. For example 0x8000FF00 would apply a green tint at 50% (0x80) strength. |
CurrentFramePlugin | Plugin for GTween. Allows you to tween the currentFrame property of the target. This lets you keep a timeline animation in synch with a tween, even when the duration changes. |
IGTweenPlugin | Defines the interface for GTween plugins. GTween does not use this interface internally (for better portability of the class), but it is recommended that plugin developers implement this interface in their plugins so that if changes are made to the interface, compile time errors will be generated for plugins that have not been updated. |
MatrixPlugin | Plugin for GTween. Tweens the a, b, c, d, tx, and ty properties of
the target's |
MotionBlurPlugin | Plugin for GTween. Automatically applies a motion blur effect when x and y are tweened. This plugin will create a new blur filter on the target, and remove it based on a saved index when the tween ends. This can potentially cause problems with other filters that create or remove filters. |
SmartRotationPlugin | Plugin for GTween. Makes rotation tweens rotate in the shortest direction. For example, rotating from 5 to 330 degrees would rotate -35 degrees with smart rotation, instead of +325 degrees. |
SnappingPlugin | Plugin for GTween. Snaps (rounds) values to whole numbers during a tween. |
SoundTransformPlugin | Plugin for GTween. Tweens the volume, pan, leftToLeft, leftToRight, rightToLeft, and rightToRight properties of the target's soundTransform object. |