Animator::GetWeightInterpolator
Defined in:
Returns the interpolator used to modify an animator's weight.
C4Animation.h
Prototype
Interpolator *GetWeightInterpolator(void);
const Interpolator *GetWeightInterpolator(void) const;
Description
The GetWeightInterpolator
function returns a pointer to the Interpolator
object representing the weight of an animator. The animator weights are used by the BlendAnimator
class to combine the outputs of its subanimators. Custom animator classes may also use the weights of their subanimators in any way they want.
See Also