コード例 #1
0
 def update(self, interval, world):
     self.dirty = 1
     return Entity.update(self, interval, world)
コード例 #2
0
 def update(self, interval, world):
     self.dirty = 1
     return Entity.update(self, interval, world)
コード例 #3
0
 def __init__(self, stateManager, category, drawCallback=None):
     Entity.__init__(self, category, drawCallback)
     self.stateManager = stateManager
コード例 #4
0
 def update(self, interval, world):
     self.stateManager.updateStates()
     return Entity.update(self, interval, world)
コード例 #5
0
 def __init__(self, stateManager, category, drawCallback = None):
     Entity.__init__(self, category, drawCallback)
     self.stateManager = stateManager
コード例 #6
0
 def update(self, interval, world):
     self.stateManager.updateStates()
     return Entity.update(self, interval, world)