diff options
author | Mikko Tiusanen <ams@daug.net> | 2014-05-04 01:18:52 +0300 |
---|---|---|
committer | Mikko Tiusanen <ams@daug.net> | 2014-05-04 01:18:52 +0300 |
commit | 01beb9919b95479d8be040bec74abc5cc67a5e43 (patch) | |
tree | 65f0b79e793848491832756a4c3a32b23668fab3 /assets/scripts/hu_jetpack.particle | |
parent | 191d731da136b7ee959a17e63111c9146219a768 (diff) |
Initial import.
Diffstat (limited to 'assets/scripts/hu_jetpack.particle')
-rw-r--r-- | assets/scripts/hu_jetpack.particle | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/assets/scripts/hu_jetpack.particle b/assets/scripts/hu_jetpack.particle new file mode 100644 index 0000000..52126ba --- /dev/null +++ b/assets/scripts/hu_jetpack.particle @@ -0,0 +1,99 @@ +jetPackDescendPS +{ + ejector + { + particle + { + shader sync gfx/sprites/smoke + + parentVelocityFraction 1.0 + velocityType tag + velocityDir linear + velocityMagnitude 100 + velocity 0 0 0 ~2.0 + + accelerationType static + accelerationDir linear + accelerationMagnitude 10 + acceleration 0 0 -1 0 + + radius 0 4.0 20.0 + alpha 0 0.5 0.0 + rotation 0 ~360 - + bounce 0.5 + + lifeTime 1500 + } + + count infinite + delay 0 + period 90 - ~0% + } +} + +jetPackAscendPS +{ + ejector + { + particle + { + shader sync gfx/sprites/smoke + + parentVelocityFraction 1.0 + velocityType tag + velocityDir linear + velocityMagnitude 60 + velocity 0 0 0 ~15.0 + + accelerationType static + accelerationDir linear + accelerationMagnitude 10 + acceleration 0 0 -1 0 + + radius 0 4.0 20.0 + alpha 0 0.5 0.0 + rotation 0 ~360 - + bounce 0.5 + + lifeTime 1500 + } + + count infinite + delay 0 + period 70 - ~0% + } +} + +jetPackHoverPS +{ + ejector + { + particle + { + shader sync gfx/sprites/smoke + + parentVelocityFraction 1.0 + velocityType tag + velocityDir linear + velocityMagnitude 80 + velocity 0 0 0 ~7.0 + + accelerationType static + accelerationDir linear + accelerationMagnitude 10 + acceleration 0 0 -1 0 + + radius 0 4.0 20.0 + alpha 0 0.5 0.0 + rotation 0 ~360 - + bounce 0.5 + + lifeTime 1500 + } + + count infinite + delay 0 + period 80 - ~0% + } +} + |