本文整理汇总了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)