Esempio n. 1
0
 def __init__(self,
              type,
              serialNum,
              modelToInstance,
              triggerRadius,
              animate=True):
     CogdoGameGatherable.__init__(self,
                                  serialNum,
                                  modelToInstance,
                                  triggerRadius,
                                  animate=animate)
     CogdoFlyingGatherableBase.__init__(self, type)
Esempio n. 2
0
 def _handleEnterCollision(self, collEntry):
     CogdoGameGatherable._handleEnterCollision(self, collEntry)
Esempio n. 3
0
 def destroy(self):
     CogdoGameGatherable.destroy(self)
     CogdoFlyingGatherableBase.destroy(self)
Esempio n. 4
0
 def hide(self):
     CogdoGameGatherable.hide(self)
     CogdoFlyingGatherableBase.hide(self)
Esempio n. 5
0
 def show(self):
     CogdoGameGatherable.show(self)
     CogdoFlyingGatherableBase.show(self)
Esempio n. 6
0
 def disable(self):
     CogdoGameGatherable.disable(self)
     CogdoFlyingGatherableBase.disable(self)
Esempio n. 7
0
 def enable(self):
     CogdoGameGatherable.enable(self)
     CogdoFlyingGatherableBase.enable(self)
 def destroy(self):
     CogdoGameGatherable.destroy(self)
     CogdoFlyingGatherableBase.destroy(self)
 def _handleEnterCollision(self, collEntry):
     CogdoGameGatherable._handleEnterCollision(self, collEntry)
Esempio n. 10
0
 def hide(self):
     CogdoGameGatherable.hide(self)
     CogdoFlyingGatherableBase.hide(self)
Esempio n. 11
0
 def show(self):
     CogdoGameGatherable.show(self)
     CogdoFlyingGatherableBase.show(self)
Esempio n. 12
0
 def disable(self):
     CogdoGameGatherable.disable(self)
     CogdoFlyingGatherableBase.disable(self)
Esempio n. 13
0
 def enable(self):
     CogdoGameGatherable.enable(self)
     CogdoFlyingGatherableBase.enable(self)
Esempio n. 14
0
 def __init__(self, type, serialNum, modelToInstance, triggerRadius, animate = True):
     CogdoGameGatherable.__init__(self, serialNum, modelToInstance, triggerRadius, animate=animate)
     CogdoFlyingGatherableBase.__init__(self, type)