StateMachine.CharacterStateMachine.IsStateActive C# (CSharp) Method

IsStateActive() public method

public IsStateActive ( States state ) : bool
state States
return bool
        public bool IsStateActive( States state )
        {
            return activeStates.Contains(state);
        }