Click or drag to resize
DigitalRuneMorphWeightCollectionIAnimatableObjectGetAnimatedProperties Method
Gets either the properties which are currently animated, or all properties which can be animated. (See remarks.)

Namespace: DigitalRune.Graphics
Assembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax
IEnumerable<IAnimatableProperty> IAnimatableObject.GetAnimatedProperties()

Return Value

Type: IEnumerableIAnimatableProperty
The properties which are currently animated, or the all properties which can be animated. (See remarks.)

Implements

IAnimatableObjectGetAnimatedProperties
Remarks
This method is required by the animation system to stop all animations running on this object. The type that implements this method can either:
  • Variant #1: Return only the properties which are currently being animated.
  • Variant #2: Return all properties which can be animated - independent of whether they are currently being animated or not.
The first implementation (Variant #1) is preferred by the animation system, but in some cases it is not easily possible to determine which properties are currently being animated. In this case the IAnimatableObject may simple return all properties (Variant #2).
See Also