summaryrefslogtreecommitdiff
path: root/src/particlecontainer.h
diff options
context:
space:
mode:
authorPhilipp Sehmisch <crush@themanaworld.org>2008-12-14 03:43:37 +0100
committerPhilipp Sehmisch <crush@themanaworld.org>2008-12-14 03:43:37 +0100
commit864e33db117a28256a89d03e750b38df044bee6e (patch)
tree709e71008e734ce18400721e9779da3f71f70cce /src/particlecontainer.h
parent59f441730d8dbd7574b2fe4c9a430be256449cab (diff)
downloadMana-864e33db117a28256a89d03e750b38df044bee6e.tar.gz
Mana-864e33db117a28256a89d03e750b38df044bee6e.tar.bz2
Mana-864e33db117a28256a89d03e750b38df044bee6e.tar.xz
Mana-864e33db117a28256a89d03e750b38df044bee6e.zip
Fixed follow-parent of nested and being-following particle emitters
Diffstat (limited to 'src/particlecontainer.h')
-rw-r--r--src/particlecontainer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/particlecontainer.h b/src/particlecontainer.h
index b2bb4399..9d90562b 100644
--- a/src/particlecontainer.h
+++ b/src/particlecontainer.h
@@ -58,7 +58,7 @@ public:
/**
* Sets the positions of all elements
*/
- virtual void setPositions(float x, float y);
+ virtual void moveTo(float x, float y);
protected:
bool mDelParent; /**< Delete mNext in destructor */
@@ -88,7 +88,7 @@ public:
virtual void clearLocally();
- virtual void setPositions(float x, float y);
+ virtual void moveTo(float x, float y);
protected:
std::list<Particle *> mElements; /**< Contained particle effects */
@@ -116,7 +116,7 @@ public:
virtual void delLocally(int index);
virtual void clearLocally();
- virtual void setPositions(float x, float y);
+ virtual void moveTo(float x, float y);
protected:
std::vector<Particle *> mIndexedElements;