Mercurial > touhou
view pytouhou/game/itemtype.py @ 466:b16d34fca5b4
Revert a change in 78e1c3864e73, causing boss rush to not destroy any standard enemy.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Thu, 12 Sep 2013 11:59:24 +0200 |
parents | c9433188ffdb |
children | b32cef75df59 |
line wrap: on
line source
from pytouhou.game.sprite import Sprite class ItemType(object): def __init__(self, anm, sprite_index, indicator_sprite_index): self.anm = anm self.sprite = Sprite() self.sprite.anm = anm self.sprite.texcoords = anm.sprites[sprite_index] self.indicator_sprite = Sprite() self.indicator_sprite.anm = anm self.indicator_sprite.texcoords = anm.sprites[indicator_sprite_index]