| ColorAnimation Constructor (IAnimationSingle, IAnimationSingle, IAnimationSingle, IAnimationSingle) |
Initializes a new instance of the
ColorAnimation class with the specified
animations.
Namespace: DigitalRune.AnimationAssembly: DigitalRune.Animation (in DigitalRune.Animation.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax public ColorAnimation(
IAnimation<float> r,
IAnimation<float> g,
IAnimation<float> b,
IAnimation<float> a
)
Public Sub New (
r As IAnimation(Of Single),
g As IAnimation(Of Single),
b As IAnimation(Of Single),
a As IAnimation(Of Single)
)
public:
ColorAnimation(
IAnimation<float>^ r,
IAnimation<float>^ g,
IAnimation<float>^ b,
IAnimation<float>^ a
)
new :
r : IAnimation<float32> *
g : IAnimation<float32> *
b : IAnimation<float32> *
a : IAnimation<float32> -> ColorAnimation
Parameters
- r
- Type: DigitalRune.AnimationIAnimationSingle
The animation of the red component. - g
- Type: DigitalRune.AnimationIAnimationSingle
The animation of the green component. - b
- Type: DigitalRune.AnimationIAnimationSingle
The animation of the blue component. - a
- Type: DigitalRune.AnimationIAnimationSingle
The animation of the alpha component.
See Also