Search
AnimationType Enumeration
See Also
 





Specifies the animation function used by an Animation object.

Namespace: MindFusion.Animations
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

public enum AnimationType

Visual Basic  Copy Code

Public Enum AnimationType

 Members

  Member name Description

Linear

Represents an animation that accelerates / decelerates using a linear function.

Power

Represents an animation that accelerates / decelerates through exponentiation formula - x^n where n can be set through the Animation's param property. The default exponent equals 2.

Exponential

Represents an animation that accelerates / decelerates using an exponential function. The exponent can be set through the Animation's Param property. The default exponent equals 10.

Circular

Represents an animation that accelerates / decelerates using a circular function.

BackBow

Represents an effect that simulates a retraction in the motion of the animation. The amplitude of the retraction can be controlled through the AnimationOption's Param property. The default param value is 1.5;

Bounce

Represents a bouncing effect animation.

Elastic

Represents an oscillating effect animation. The oscillation frequency can be controlled through the AnimationOption's Param property. The default param value is 0.5;

Custom

Specifies a user-set function. When this value is used the actual animation function must be set through the Animation's custom function callback.

 See Also