This is where it gets gloriously complicated. There are various types of animations:
- ParallelAnimation
- SmoothedAnimation
- PauseAnimation
- SequentialAnimation
Additionally, PropertyAction and ScriptAction can be used. A PropertyAction is a change to any property that happens without an animation. We learned about ScriptAction in the last section on States.
There are also animation types that operate on various values:
- AnchorAnimationÂ
- ColorAnimation
- NumberAnimation
- OpacityAnimator
- PathAnimation
- ParentAnimation
- PropertyAnimation
- RotationAnimation
- SpringAnimation
- Vector3DAnimation
A Behavior can be used to specify an animation for a property change.
Let's look at how some of these can be used.