18 lines
360 B
C#
18 lines
360 B
C#
namespace Assets.PixelHeroes.Scripts.CharacterScripts
|
|
{
|
|
/// <summary>
|
|
/// Animation state. The same parameter controls animation transitions.
|
|
/// </summary>
|
|
public enum AnimationState
|
|
{
|
|
Idle,
|
|
Ready,
|
|
Walking,
|
|
Running,
|
|
Jumping,
|
|
Blocking,
|
|
Crawling,
|
|
Climbing,
|
|
Dead
|
|
}
|
|
} |