dungeon_crawler

view prototype/data/fire.psys @ 53:1ea56011c1ff

stuff + streaming start
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 19 Sep 2012 01:08:41 +0300
parents bcdea26c8f27
children 2560a7ab0243
line source
1 # fire particle system definition
2 #
3 # lines of key = value pairs.
4 # animated attributes can be defined as key(time) = value.
5 # time defaults to 0 if missing. time values can have an optional s suffix,
6 # signifying seconds, otherwise they are assumed to be in milliseconds.
7 #
8 # string values enclosed in double quotes
9 # vector values enclosed in square brackets [x y z]
10 # randomized values have a pair of values/vectors separated by a tilde:
11 # center ~ range. If the range is missing, it's assumed to be 0.
13 texture = "fire_particle.png"
14 rate = 50
15 life = 0.9 ~ 0.1
16 grav = [0 0.3 0]
17 spawn_range = 0.025
19 size(0) = 0.2
20 size(1s) = 0.075
22 pcolor(0) = [1.0 0.7 0.1]
23 pcolor(1s) = [1.0 0.27 0.15]
25 palpha(0) = 1
26 palpha(1s) = 0.1