You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
884 B
C#

using System;
namespace Unity.BossRoom.Gameplay.GameplayObjects
{
/// <summary>
/// Describes how the character's movement should be animated: as standing idle, running normally,
/// magically slowed, sped up, etc. (Not all statuses are currently used by game content,
/// but they are set up to be displayed correctly for future use.)
/// </summary>
[Serializable]
public enum MovementStatus
{
Idle, // not trying to move
Normal, // character is moving (normally)
Uncontrolled, // character is being moved by e.g. a knockback -- they are not in control!
Slowed, // character's movement is magically hindered
Hasted, // character's movement is magically enhanced
Walking, // character should appear to be "walking" rather than normal running (e.g. for cut-scenes)
}
}