summaryrefslogtreecommitdiff
path: root/src/particle.cpp
diff options
context:
space:
mode:
authorPhilipp Sehmisch <mana@crushnet.org>2010-03-04 21:27:16 +0100
committerPhilipp Sehmisch <mana@crushnet.org>2010-03-04 21:38:24 +0100
commitc176df1796a7b0fd53b52b52e8bd9d4a81ff8b1a (patch)
tree1b6a239f8fcc7f7834062e76ee2cdf125e9d426d /src/particle.cpp
parent6e68568d9fb44762e4c3257b505e8b67ac1f70fe (diff)
downloadmana-c176df1796a7b0fd53b52b52e8bd9d4a81ff8b1a.tar.gz
mana-c176df1796a7b0fd53b52b52e8bd9d4a81ff8b1a.tar.bz2
mana-c176df1796a7b0fd53b52b52e8bd9d4a81ff8b1a.tar.xz
mana-c176df1796a7b0fd53b52b52e8bd9d4a81ff8b1a.zip
Implemented markers for warp portals defined in map files in form of particle effects. Reviewed-by: Jared Adams <jaxad0127@gmail.com>
Diffstat (limited to 'src/particle.cpp')
-rw-r--r--src/particle.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/particle.cpp b/src/particle.cpp
index 560886f8..d3dbfd64 100644
--- a/src/particle.cpp
+++ b/src/particle.cpp
@@ -378,6 +378,15 @@ Particle *Particle::addTextRiseFadeOutEffect(const std::string &text,
return newParticle;
}
+void Particle::adjustEmitterSize(int w, int h)
+{
+ for (EmitterIterator e = mChildEmitters.begin();
+ e != mChildEmitters.end(); e++)
+ {
+ (*e)->adjustSize(w, h);
+ }
+}
+
void Particle::setMap(Map *map)
{
mMap = map;