def doSelectAction(self, action): if action.actionName == PREBATTLE_ACTION_NAME.BATTLE_TUTORIAL: g_eventDispatcher.startOffbattleTutorial() result = SelectResult(True, None) else: result = SelectResult(False, None) return result
def init(self, ctx = None): g_eventDispatcher.startOffbattleTutorial() return super(TutorialQueueFunctional, self).init(ctx)
def init(self, ctx=None): g_eventDispatcher.startOffbattleTutorial() return super(TutorialQueueFunctional, self).init(ctx)
def init(self, ctx = None): result = super(TutorialEntity, self).init(ctx) g_eventDispatcher.loadHangar() g_eventDispatcher.startOffbattleTutorial() return result
def doSelectAction(self, action): if action.actionName == PREBATTLE_ACTION_NAME.BATTLE_TUTORIAL: g_eventDispatcher.startOffbattleTutorial() return SelectResult(True) return super(TutorialEntity, self).doSelectAction(action)