diff options
author | Alige <aligetmw@hotmail.fr> | 2013-02-10 17:29:57 +0400 |
---|---|---|
committer | Alige <aligetmw@hotmail.fr> | 2013-02-10 17:29:57 +0400 |
commit | 449e46c3c4fd8ea5331d607e0a36a48dc27a595f (patch) | |
tree | 29dc485a73dd9d69efa636b216fb9ebecb659c25 /graphics | |
parent | bb99d185aad0c847d61ae49777cc97c4f48fa680 (diff) | |
download | clientdata-449e46c3c4fd8ea5331d607e0a36a48dc27a595f.tar.gz clientdata-449e46c3c4fd8ea5331d607e0a36a48dc27a595f.tar.bz2 clientdata-449e46c3c4fd8ea5331d607e0a36a48dc27a595f.tar.xz clientdata-449e46c3c4fd8ea5331d607e0a36a48dc27a595f.zip |
Improvements on the AFK particle effect made by Hal9000:
- Added some randomness to the animation for a more natural look.
- Cleaned the XML file by removing useless emitters and properties.
- Simplified the particle effect.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/particles/afk.xml | 71 |
1 files changed, 25 insertions, 46 deletions
diff --git a/graphics/particles/afk.xml b/graphics/particles/afk.xml index afb69aa6..0b5e9cac 100644 --- a/graphics/particles/afk.xml +++ b/graphics/particles/afk.xml @@ -1,71 +1,50 @@ <?xml version="1.0" encoding="utf-8"?> -<!-- Author: Hal9000 -Copyright (C) 2010-2013 Evol Online --> +<!-- Authors: Alige, Hal9000 +Copyright (C) 2013 Evol Online --> <effect> - <particle position-x="0" position-y="15" position-z="0"> + <particle position-x="0" position-y="0" position-z="32"> <emitter> - <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="position-y" value="-45"/> <property name="lifetime" value="1"/> <property name="output" value="1"/> - <property name="output-pause" value ="150"/> + <property name="output-pause" min="100" max="350"/> <emitter> - <property name="gravity" value="-0.01"/> + <property name="gravity" min="-0.006" max="-0.008"/> <property name="momentum" value="0.9"/> - <animation imageset="graphics/particles/zzz.png" width="8" height="10"> - <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"/> + <animation imageset="graphics/particles/zzz.png" width="8" height="10"> + <sequence start="1" end="4" delay="140"/> + <frame index="5" delay="1000"/> + </animation> </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="gravity" value="-0.01"/> + <property name="position-x" value="-8"/> + <property name="position-y" value="-5"/> + <property name="gravity" min="-0.006" max="-0.008"/> <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="800"/> - <sequence start="0" end="5" delay="140"/> + <frame index="0" delay="1000"/> + <sequence start="1" end="4" 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="gravity" value="-0.01"/> + <property name="position-x" value="6"/> + <property name="gravity" min="-0.006" max="-0.008"/> <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="1600"/> - <sequence start="0" end="5" delay="140"/> + <frame index="0" delay="2000"/> + <sequence start="1" end="4" 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> |