Mercurial > touhou
comparison pytouhou/game/sprite.pxd @ 467:5bb7d2c0ff46
Fix lasers sprite handling
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Thu, 12 Sep 2013 14:43:38 +0200 |
parents | 723a3e67a223 |
children | 43ecf0f98f4d |
comparison
equal
deleted
inserted
replaced
466:b16d34fca5b4 | 467:5bb7d2c0ff46 |
---|---|
1 from pytouhou.utils.interpolator cimport Interpolator | 1 from pytouhou.utils.interpolator cimport Interpolator |
2 | 2 |
3 cdef class Sprite: | 3 cdef class Sprite: |
4 cdef public long width_override, height_override, blendfunc, frame | 4 cdef public long blendfunc, frame |
5 cdef public double angle | 5 cdef public double width_override, height_override, angle |
6 cdef public bint removed, changed, visible, force_rotation | 6 cdef public bint removed, changed, visible, force_rotation |
7 cdef public bint automatic_orientation, allow_dest_offset, mirrored | 7 cdef public bint automatic_orientation, allow_dest_offset, mirrored |
8 cdef public bint corner_relative_placement | 8 cdef public bint corner_relative_placement |
9 cdef public Interpolator scale_interpolator, fade_interpolator | 9 cdef public Interpolator scale_interpolator, fade_interpolator |
10 cdef public Interpolator offset_interpolator, rotation_interpolator | 10 cdef public Interpolator offset_interpolator, rotation_interpolator |