21 lines
404 B
C#
21 lines
404 B
C#
namespace Assets.PixelFantasy.PixelHeroes.Common.Scripts.CharacterScripts
|
|
{
|
|
/// <summary>
|
|
/// Animation state. The same parameter controls animation transitions.
|
|
/// </summary>
|
|
public enum CharacterState
|
|
{
|
|
Idle,
|
|
Ready,
|
|
Walk,
|
|
Run,
|
|
Crouch,
|
|
Crawl,
|
|
Jump,
|
|
Fall,
|
|
Land,
|
|
Block,
|
|
Climb,
|
|
Die
|
|
}
|
|
} |