Enum CompletionType
An enumeration that represents the various states that an Action can be in.
public enum CompletionType
- Extension Methods
Fields
Active = 0A completion type that represents an active action.
Completed = 1A completion type that represents a completed action.
Failed = 2A completion type that represents an action that has failed to complete. Actions that fail additionally cause an Emote from the Unable category to be displayed on a PersonLike.
Canceled = 3A completion type that represents an action that has been canceled either internally or by an outside source. If an action should cancel due to a missing object or any other kind of unexpected state, Failed should be used.