本文整理匯總了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()
示例2: enterAt
def enterAt(self):
QuestIndicatorGridNode.enterAt(self)
示例3: exitNear
def exitNear(self):
self.stopNearEffect()
QuestIndicatorGridNode.exitNear(self)
示例4: enterNear
def enterNear(self):
QuestIndicatorGridNode.enterNear(self)
self.startNearEffect()
示例5: exitFar
def exitFar(self):
QuestIndicatorGridNode.exitFar(self)
self.stopTargetRefresh()
示例6: __init__
def __init__(self, questStep):
self.nearEffect = None
QuestIndicatorGridNode.__init__(self, 'ExtDoorIndicator', [
10,
150], questStep)
示例7: showEffect
def showEffect(self):
QuestIndicatorGridNode.showEffect(self)
self.startNearEffect()
示例8: stepObjLeft
def stepObjLeft(self):
self.stopNearEffect()
QuestIndicatorGridNode.stepObjLeft(self)
示例9: __init__
def __init__(self, questStep):
self.nearEffect = None
QuestIndicatorGridNode.__init__(self, 'QuestPropIndicator', [
30,
150], questStep)
示例10: delete
def delete(self):
QuestIndicatorGridNode.delete(self)
if self.nearEffect:
self.nearEffect.destroy()
self.nearEffect = None
示例11: __init__
def __init__(self, questStep):
self.pendingStepObj = None
QuestIndicatorGridNode.__init__(self, 'NPCAreaIndicator', [
350,
400], questStep)
self.wantBottomEffect = False
示例12: enterNear
def enterNear(self):
QuestIndicatorGridNode.enterNear(self)
self.updateGuiHints(localAvatar.activeQuestId)
示例13: unloadZoneLevel
def unloadZoneLevel(self, level):
QuestIndicatorGridNode.unloadZoneLevel(self, level)
示例14: delete
def delete(self):
if self.pendingStepObj:
base.cr.relatedObjectMgr.abortRequest(self.pendingStepObj)
self.pendingStepObj = None
QuestIndicatorGridNode.delete(self)
示例15: exitAt
def exitAt(self):
QuestIndicatorGridNode.exitAt(self)