public GameOverStateMachine(StateMachineEnumTypes _type)
 {
     currentStateMachine = _type;
 }
Exemple #2
0
 public StartStateMachine(StateMachineEnumTypes _type)
 {
     currentStateMachine = _type;
 }
Exemple #3
0
 public ReplayStateParent(StateMachineEnumTypes _type)
 {
     currentStateMachine = _type;
 }
Exemple #4
0
        public void SetCurrentStateMachineType(StateMachineEnumTypes _currentStateMachine)
        {
            currentStateMachineType = _currentStateMachine;

            CreateStateMachine();
        }
Exemple #5
0
 public void SetPreviousStateMachineType(StateMachineEnumTypes _currentStateMachine)
 {
     previousStateMachineType = _currentStateMachine;
 }
Exemple #6
0
 public LoadingStateMachine(StateMachineEnumTypes _type)
 {
     currentStateMachine = _type;
 }