diff options
author | Hal9000 <miglietta.francesco@gmail.com> | 2013-02-11 15:26:19 +0100 |
---|---|---|
committer | Hal9000 <miglietta.francesco@gmail.com> | 2013-02-11 15:26:19 +0100 |
commit | 4fac6c0d8dafaa4f1a87a50eb381963485559ef7 (patch) | |
tree | ff3565eb11178d6b89253175b833b871be076a7e /graphics/particles | |
parent | 349e11ab4eccd8f815707535a43ef208780f5c11 (diff) | |
download | clientdata-4fac6c0d8dafaa4f1a87a50eb381963485559ef7.tar.gz clientdata-4fac6c0d8dafaa4f1a87a50eb381963485559ef7.tar.bz2 clientdata-4fac6c0d8dafaa4f1a87a50eb381963485559ef7.tar.xz clientdata-4fac6c0d8dafaa4f1a87a50eb381963485559ef7.zip |
Revert "Improvements on the AFK particle effect made by Hal9000:"
Not-tuned parameters caused long pause in animation after some minutes.
Wrongly-tuned parameters caused fade-out effect not occuring at all.
Missing clues of the more natural effect.
This reverts commit 449e46c3c4fd8ea5331d607e0a36a48dc27a595f.
Diffstat (limited to 'graphics/particles')
-rw-r--r-- | graphics/particles/afk.xml | 71 |
1 files changed, 46 insertions, 25 deletions
diff --git a/graphics/particles/afk.xml b/graphics/particles/afk.xml index 0b5e9cac..afb69aa6 100644 --- a/graphics/particles/afk.xml +++ b/graphics/particles/afk.xml @@ -1,50 +1,71 @@ <?xml version="1.0" encoding="utf-8"?> -<!-- Authors: Alige, Hal9000 -Copyright (C) 2013 Evol Online --> +<!-- Author: Hal9000 +Copyright (C) 2010-2013 Evol Online --> <effect> - <particle position-x="0" position-y="0" position-z="32"> + <particle position-x="0" position-y="15" position-z="0"> <emitter> - <property name="position-y" value="-45"/> + <property name="position-x" value="0"/> + <property name="position-y" value="0"/> + <property name="position-z" value="90"/> + <property name="vertical-angle" value="90"/> + <property name="power" min="4" max="15"/> <property name="lifetime" value="1"/> <property name="output" value="1"/> - <property name="output-pause" min="100" max="350"/> + <property name="output-pause" value ="150"/> <emitter> - <property name="gravity" min="-0.006" max="-0.008"/> + <property name="gravity" value="-0.01"/> <property name="momentum" value="0.9"/> - <property name="lifetime" value="150"/> - <property name="fade-out" value="40"/> - <property name="output" value="1"/> <animation imageset="graphics/particles/zzz.png" width="8" height="10"> - <sequence start="1" end="4" delay="140"/> + <sequence start="1" end="5" delay="140"/> <frame index="5" delay="1000"/> </animation> + <property name="lifetime" value="150"/> + <property name="fade-out" value="40"/> + <property name="output" value="1"/> </emitter> + </emitter> + <emitter> + <property name="position-x" value="-7"/> + <property name="position-y" value="8"/> + <property name="position-z" value="90"/> + <property name="vertical-angle" value="90"/> + <property name="power" min="4" max="15"/> + <property name="lifetime" value="1"/> + <property name="output" value="1"/> + <property name="output-pause" value ="150"/> <emitter> - <property name="position-x" value="-8"/> - <property name="position-y" value="-5"/> - <property name="gravity" min="-0.006" max="-0.008"/> + <property name="gravity" value="-0.01"/> <property name="momentum" value="0.9"/> - <property name="lifetime" value="250"/> - <property name="fade-out" value="100"/> - <property name="output" value="1"/> <animation imageset="graphics/particles/zzz.png" width="8" height="10"> - <frame index="0" delay="1000"/> - <sequence start="1" end="4" delay="140"/> + <frame index="0" delay="800"/> + <sequence start="0" end="5" delay="140"/> <frame index="5" delay="1000"/> </animation> + <property name="lifetime" value="300"/> + <property name="fade-out" value="100"/> + <property name="output" value="1"/> </emitter> + </emitter> + <emitter> + <property name="position-x" value="7"/> + <property name="position-y" value="16"/> + <property name="position-z" value="90"/> + <property name="vertical-angle" value="90"/> + <property name="power" min="4" max="15"/> + <property name="lifetime" value="1"/> + <property name="output" value="1"/> + <property name="output-pause" value ="150"/> <emitter> - <property name="position-x" value="6"/> - <property name="gravity" min="-0.006" max="-0.008"/> + <property name="gravity" value="-0.01"/> <property name="momentum" value="0.9"/> - <property name="lifetime" value="350"/> - <property name="fade-out" value="160"/> - <property name="output" value="1"/> <animation imageset="graphics/particles/zzz.png" width="8" height="10"> - <frame index="0" delay="2000"/> - <sequence start="1" end="4" delay="140"/> + <frame index="0" delay="1600"/> + <sequence start="0" end="5" delay="140"/> <frame index="5" delay="1000"/> </animation> + <property name="lifetime" value="450"/> + <property name="fade-out" value="220"/> + <property name="output" value="1"/> </emitter> </emitter> </particle> |