當前位置: 首頁>>代碼示例>>Python>>正文


Python QuestIndicatorGridNode.QuestIndicatorGridNode類代碼示例

本文整理匯總了Python中pirates.quest.QuestIndicatorGridNode.QuestIndicatorGridNode的典型用法代碼示例。如果您正苦於以下問題:Python QuestIndicatorGridNode類的具體用法?Python QuestIndicatorGridNode怎麽用?Python QuestIndicatorGridNode使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了QuestIndicatorGridNode類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: delete

    def delete(self):
        QuestIndicatorGridNode.delete(self)
        if self.nearEffect:
            self.nearEffect.cleanUpEffect()

        self.nearEffect = None
        self.stopTargetRefresh()
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:7,代碼來源:QuestIndicatorNodeShip.py

示例2: enterAt

 def enterAt(self):
     QuestIndicatorGridNode.enterAt(self)
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:2,代碼來源:QuestIndicatorNodeShip.py

示例3: exitNear

 def exitNear(self):
     self.stopNearEffect()
     QuestIndicatorGridNode.exitNear(self)
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:3,代碼來源:QuestIndicatorNodeShip.py

示例4: enterNear

 def enterNear(self):
     QuestIndicatorGridNode.enterNear(self)
     self.startNearEffect()
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:3,代碼來源:QuestIndicatorNodeShip.py

示例5: exitFar

 def exitFar(self):
     QuestIndicatorGridNode.exitFar(self)
     self.stopTargetRefresh()
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:3,代碼來源:QuestIndicatorNodeShip.py

示例6: __init__

 def __init__(self, questStep):
     self.nearEffect = None
     QuestIndicatorGridNode.__init__(self, 'ExtDoorIndicator', [
         10,
         150], questStep)
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:5,代碼來源:QuestIndicatorNodeExtDoor.py

示例7: showEffect

 def showEffect(self):
     QuestIndicatorGridNode.showEffect(self)
     self.startNearEffect()
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:3,代碼來源:QuestIndicatorNodeShip.py

示例8: stepObjLeft

 def stepObjLeft(self):
     self.stopNearEffect()
     QuestIndicatorGridNode.stepObjLeft(self)
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:3,代碼來源:QuestIndicatorNodeShip.py

示例9: __init__

 def __init__(self, questStep):
     self.nearEffect = None
     QuestIndicatorGridNode.__init__(self, 'QuestPropIndicator', [
         30,
         150], questStep)
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:5,代碼來源:QuestIndicatorNodeQuestProp.py

示例10: delete

 def delete(self):
     QuestIndicatorGridNode.delete(self)
     if self.nearEffect:
         self.nearEffect.destroy()
     
     self.nearEffect = None
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:6,代碼來源:QuestIndicatorNodeQuestProp.py

示例11: __init__

 def __init__(self, questStep):
     self.pendingStepObj = None
     QuestIndicatorGridNode.__init__(self, 'NPCAreaIndicator', [
         350,
         400], questStep)
     self.wantBottomEffect = False
開發者ID:XamarinDeveloper,項目名稱:Pirates-Online-Source,代碼行數:6,代碼來源:QuestIndicatorNodeNPCArea.py

示例12: enterNear

 def enterNear(self):
     QuestIndicatorGridNode.enterNear(self)
     self.updateGuiHints(localAvatar.activeQuestId)
開發者ID:XamarinDeveloper,項目名稱:Pirates-Online-Source,代碼行數:3,代碼來源:QuestIndicatorNodeNPCArea.py

示例13: unloadZoneLevel

 def unloadZoneLevel(self, level):
     QuestIndicatorGridNode.unloadZoneLevel(self, level)
開發者ID:XamarinDeveloper,項目名稱:Pirates-Online-Source,代碼行數:2,代碼來源:QuestIndicatorNodeNPCArea.py

示例14: delete

 def delete(self):
     if self.pendingStepObj:
         base.cr.relatedObjectMgr.abortRequest(self.pendingStepObj)
         self.pendingStepObj = None
     
     QuestIndicatorGridNode.delete(self)
開發者ID:XamarinDeveloper,項目名稱:Pirates-Online-Source,代碼行數:6,代碼來源:QuestIndicatorNodeNPCArea.py

示例15: exitAt

 def exitAt(self):
     QuestIndicatorGridNode.exitAt(self)
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:2,代碼來源:QuestIndicatorNodeShip.py


注:本文中的pirates.quest.QuestIndicatorGridNode.QuestIndicatorGridNode類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。