@staticmethod
def _get_theme_images(name) :
basePath = os.path.abspath(__file__).split(os.path.sep)[:-1]
- basePath.append('data')
+ basePath.extend(['data', 'cursor'])
basePath.append(name)
basePath = os.path.sep.join(basePath)
images = [f for f in os.listdir(basePath) if os.path.splitext(f)[1] == '.png']
def move(self, event) :
self.dirty = 1
self.rect.move_ip(event.rel)
+
+ def setPosition(self, pos) :
+ self.dirty = 1
+ x, y = pos
+ rx, ry = self.rect.centerx, self.rect.centery
+ self.rect.move_ip(x-rx, y-ry)