diff options
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% + } +} + |