diff options
author | Philipp Sehmisch <tmw@crushnet.org> | 2007-06-11 14:27:48 +0000 |
---|---|---|
committer | Philipp Sehmisch <tmw@crushnet.org> | 2007-06-11 14:27:48 +0000 |
commit | 65539d91787bf2b122f833781fed8b6aa9bc13cd (patch) | |
tree | 5be373399b9168d1898a887166cccaa32743af53 /src/particle.h | |
parent | 93a3d067c7f9ffaed785baaa021c572eed0ef57c (diff) | |
download | mana-65539d91787bf2b122f833781fed8b6aa9bc13cd.tar.gz mana-65539d91787bf2b122f833781fed8b6aa9bc13cd.tar.bz2 mana-65539d91787bf2b122f833781fed8b6aa9bc13cd.tar.xz mana-65539d91787bf2b122f833781fed8b6aa9bc13cd.zip |
Fixed a bug that prevented being-controlled particles from being deleted (thanks to tuchs for reporting).
Diffstat (limited to 'src/particle.h')
-rw-r--r-- | src/particle.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/particle.h b/src/particle.h index 7a747a5f..9e9223c7 100644 --- a/src/particle.h +++ b/src/particle.h @@ -243,6 +243,9 @@ class Particle : public Sprite void setDieDistance(float dist) { mInvDieDistance = 1.0f / dist; } + bool isAlive() + { return mAlive; } + /** * Manually marks the particle for deletion */ |