NodeCanvas Forums › General Discussion › Concurrent node to exit when FSM stops › Reply To: Concurrent node to exit when FSM stops
Here is a temporary solution:
Please open up FSM.cs and at line #86 in method EnterState right after the (newState == null) check please add the following:
1 2 3 4 | if (currentState == newState && !isPaused) return false; |