diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2008-12-14 03:43:37 +0100 |
---|---|---|
committer | Philipp Sehmisch <crush@themanaworld.org> | 2008-12-14 03:43:37 +0100 |
commit | 864e33db117a28256a89d03e750b38df044bee6e (patch) | |
tree | 709e71008e734ce18400721e9779da3f71f70cce /src/being.cpp | |
parent | 59f441730d8dbd7574b2fe4c9a430be256449cab (diff) | |
download | mana-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/being.cpp')
-rw-r--r-- | src/being.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being.cpp b/src/being.cpp index 7641de35..88063ac1 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -403,8 +403,8 @@ void Being::logic() } // Update particle effects - mChildParticleEffects.setPositions((float) mPx + 16.0f, - (float) mPy + 32.0f); + mChildParticleEffects.moveTo((float) mPx + 16.0f, + (float) mPy + 32.0f); } |