Prechádzať zdrojové kódy

*** empty log message ***

Mike Goslin 25 rokov pred
rodič
commit
aae1dbd84d
1 zmenil súbory, kde vykonal 3 pridanie a 0 odobranie
  1. 3 0
      direct/src/fsm/FSM.py

+ 3 - 0
direct/src/fsm/FSM.py

@@ -35,6 +35,9 @@ class FSM(DirectObject):
         # Enter the initial state.
         # Enter the initial state.
         # It is assumed that the initial state takes no arguments.
         # It is assumed that the initial state takes no arguments.
         self.__currentState = self.__initialState
         self.__currentState = self.__initialState
+        #self.__enter(self.__initialState)
+
+    def enterInitialState(self):
         self.__enter(self.__initialState)
         self.__enter(self.__initialState)
         
         
     def __str__(self):
     def __str__(self):