diff options
author | Alige <aligetmw@hotmail.fr> | 2012-12-23 03:00:30 +0400 |
---|---|---|
committer | Alige <aligetmw@hotmail.fr> | 2012-12-23 03:01:36 +0400 |
commit | e8b4421cb01b545fa7d20340d5c79c4ce3d149e7 (patch) | |
tree | d7851a0bf3a9bbec4ac285039745400a1c5bb8da | |
parent | bbc2d57053cca0281ac940a58511316a42825791 (diff) | |
download | clientdata-e8b4421cb01b545fa7d20340d5c79c4ce3d149e7.tar.gz clientdata-e8b4421cb01b545fa7d20340d5c79c4ce3d149e7.tar.bz2 clientdata-e8b4421cb01b545fa7d20340d5c79c4ce3d149e7.tar.xz clientdata-e8b4421cb01b545fa7d20340d5c79c4ce3d149e7.zip |
Fixed nasty bug with the warp particle effect.
It went way too high in the sky, creating an inconsistency with other neighbor tiles.
-rw-r--r-- | graphics/particles/warparea.particle.xml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/graphics/particles/warparea.particle.xml b/graphics/particles/warparea.particle.xml index 196c77a0..b62147e7 100644 --- a/graphics/particles/warparea.particle.xml +++ b/graphics/particles/warparea.particle.xml @@ -7,11 +7,13 @@ Copyright (C) 2010-2012 Evol Online --> <property name="position-x" min="5" max="27"/> <property name="position-y" min="0" max="48"/> <property name="image" value="graphics/particles/gloworbhalf-small.png|W:#e1e1e1"/> - <property name="gravity" value="-0.002"/> - <property name="lifetime" value="180"/> - <property name="output" min="-2" max="1"/> + <property name="gravity" value="-0.0015"/> + <property name="lifetime" value="160"/> + <property name="output" min="-4" max="1"/> <property name="output-pause" min="0" max="10"/> - <property name="randomnes" value="5"/> + <property name="randomnes" value="4"/> + <property name="fade-in" value="10"/> + <property name="fade-out" value="20"/> </emitter> </particle> </effect> |