Mercurial > touhou
annotate pytouhou/game/particle.pxd @ 776:94033091458b
formats: Update to ${concat(…)} to build on current nightly
${concat(…)} replaces the removed concat_idents!() macro, but doesn’t support
being used in nested repetitions for now. We can remove the gen_match!() macro
once this is supported again.
| author | Link Mauve <linkmauve@linkmauve.fr> |
|---|---|
| date | Tue, 14 Oct 2025 12:41:29 +0000 |
| parents | cd8a2baf468c |
| children |
| rev | line source |
|---|---|
|
631
cd8a2baf468c
Move Particle to its own module, to not pollute pytouhou.game.effect.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
diff
changeset
|
1 from pytouhou.game.effect cimport Effect |
|
cd8a2baf468c
Move Particle to its own module, to not pollute pytouhou.game.effect.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
diff
changeset
|
2 from pytouhou.utils.interpolator cimport Interpolator |
|
cd8a2baf468c
Move Particle to its own module, to not pollute pytouhou.game.effect.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
diff
changeset
|
3 |
|
cd8a2baf468c
Move Particle to its own module, to not pollute pytouhou.game.effect.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
diff
changeset
|
4 cdef class Particle(Effect): |
|
cd8a2baf468c
Move Particle to its own module, to not pollute pytouhou.game.effect.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
diff
changeset
|
5 cdef long frame, duration |
|
cd8a2baf468c
Move Particle to its own module, to not pollute pytouhou.game.effect.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
diff
changeset
|
6 cdef Interpolator pos_interpolator |
|
cd8a2baf468c
Move Particle to its own module, to not pollute pytouhou.game.effect.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
diff
changeset
|
7 |
|
cd8a2baf468c
Move Particle to its own module, to not pollute pytouhou.game.effect.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
diff
changeset
|
8 cpdef update(self) |
