瀏覽代碼

*** empty log message ***

Jesse Schell 24 年之前
父節點
當前提交
cc92f692b8
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      direct/src/fsm/FSM.py

+ 2 - 2
direct/src/fsm/FSM.py

@@ -57,8 +57,8 @@ class FSM(DirectObject):
             str = ("FSM " + self.getName() + ' not in any state')
             str = ("FSM " + self.getName() + ' not in any state')
         return str
         return str
 
 
-    def enterInitialState(self):
-        self.__enter(self.__initialState)
+    def enterInitialState(self, argList=[]):
+        self.__enter(self.__initialState, argList)
         return None
         return None
         
         
     # Jesse decided that simpler was better with the __str__ function
     # Jesse decided that simpler was better with the __str__ function