12345678910111213141516171819202122232425262728293031 |
- <?xml version="1.0"?>
- <particles emitter="sphere" radius="0.5">
- <spreading angle="180" />
-
- <velocity x="0.03"
- y="0.003"
- z="0.03" />
-
- <material file="gfx_sparkGreen_a.png" />
-
- <!-- Amount of particles emitted per second -->
- <rate min="65"
- max="100" />
-
- <!-- Minimal and maximal lifetime of a particle, in milliseconds. -->
- <lifetime min="2700"
- max="2700" />
-
- <!-- Size of the particles -->
- <size min="0.5"
- max="0.8"
- x-increase-factor="1.1"
- y-increase-factor="1.3"
- />
-
- <color min="255 255 255"
- max="255 0 0" />
- </particles>
|