Mercurial > touhou
view pytouhou/game/itemtype.py @ 230:1c24a6d93c1b
Improve find_character_defs, clean up a bit, and disable attack types 2 and 3 for now
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Fri, 30 Dec 2011 19:10:49 +0100 |
parents | 5afc75f71fed |
children | c9433188ffdb |
line wrap: on
line source
from pytouhou.game.sprite import Sprite class ItemType(object): def __init__(self, anm_wrapper, sprite_index, indicator_sprite_index): self.anm_wrapper = anm_wrapper self.sprite = Sprite() self.sprite.anm, self.sprite.texcoords = anm_wrapper.get_sprite(sprite_index) self.indicator_sprite = Sprite() self.indicator_sprite.anm, self.indicator_sprite.texcoords = anm_wrapper.get_sprite(indicator_sprite_index)