diff options
author | Saulc <lucashelaine14@gmail.com> | 2019-03-05 22:16:39 +0000 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2019-03-05 22:16:39 +0000 |
commit | f56f7b6fa9e1b6d752c091b4bafbd8fc776e412a (patch) | |
tree | c00a0ca6a423cbc9873dec2046867c969bfb9d0a | |
parent | 02def3c7ac448b0801522d5b5257826ebc897361 (diff) | |
download | clientdata-f56f7b6fa9e1b6d752c091b4bafbd8fc776e412a.tar.gz clientdata-f56f7b6fa9e1b6d752c091b4bafbd8fc776e412a.tar.bz2 clientdata-f56f7b6fa9e1b6d752c091b4bafbd8fc776e412a.tar.xz clientdata-f56f7b6fa9e1b6d752c091b4bafbd8fc776e412a.zip |
add geyser particle effect
-rw-r--r-- | graphics/particles/geyser.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/graphics/particles/geyser.xml b/graphics/particles/geyser.xml new file mode 100644 index 00000000..feba0909 --- /dev/null +++ b/graphics/particles/geyser.xml @@ -0,0 +1,22 @@ +<?xml version="1.0"?> +<!-- +A geysir which appears at regular intervals and becomes stronger and weaker. +An example of changing emitters. from TMW Legacy rewrite by Saulc +--> + +<effect> + <particle + position-x="0" + position-y="0" + position-z="0" + > + <emitter> + <property name="output" value="2" change-func="sine" change-amplitude="3" change-period="800"/> + <property name="power" min="1.5" max="2.5" change-func="sine" change-amplitude="3" change-period="800"/> + <property name="horizontal-angle" min="0" max="360"/> + <property name="vertical-angle" min="85" max="90"/> + <property name="image" value="graphics/particles/orb-medium.png"/> + <property name="gravity" value="0.1"/> + </emitter> + </particle> +</effect>
\ No newline at end of file |