Advertisement
isnorden

Flame emitter, extra small

Feb 7th, 2020
1,429
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ////////////////////////////////
  2. /////ANIMATION STATION 2011/////
  3. ////////DRAKE FAUDEBURGH////////
  4. ////////////////////////////////
  5. //
  6. //This a only a simple particle script.
  7. //It has no other function except to make the prim burst particles when the script is running.
  8. //You may drop this FULL PERM script into a prim and the effect will start automatically.
  9. //If you wish to have more options like Touch, Chat, or Collision, you can grab the 'Free Particle Script Pack'
  10. //at Animation Station, Particle Station, and on the Marketplace at the Animation Station Store.
  11. //You may not sell the particle configuration by itself or in a particle pack.
  12. //We do not support the transfer of this product to another grid.
  13. //This Particle Effect was created by Drake Faudeburgh using the Easy FX Particle Generator!
  14. //
  15. ////////////////////////////////
  16. particle()
  17. {
  18. //////////////////////////////////////////////////////////////////////////////////////////////////////////////
  19. ///You can copy this particle code below and paste it into a particle script template by Drake Faudeburgh/////
  20. llParticleSystem([
  21. PSYS_PART_FLAGS,(0
  22. | PSYS_PART_EMISSIVE_MASK
  23. | PSYS_PART_BOUNCE_MASK
  24. | PSYS_PART_INTERP_COLOR_MASK
  25. | PSYS_PART_INTERP_SCALE_MASK
  26. | PSYS_PART_FOLLOW_SRC_MASK
  27. | PSYS_PART_TARGET_POS_MASK
  28. ),PSYS_SRC_TARGET_KEY,llGetKey(),
  29. PSYS_PART_START_COLOR,<1.00000, 0.60000, 0.20000>,
  30. PSYS_PART_END_COLOR,<1.00000, 1.00000, 0.00000>,
  31. PSYS_PART_START_ALPHA,0.100000,
  32. PSYS_PART_END_ALPHA,0.050000,
  33. PSYS_PART_START_GLOW,0.005,
  34. PSYS_PART_END_GLOW,0.0,
  35. PSYS_PART_START_SCALE,<0.10000, 0.20000, 0.00000>,
  36. PSYS_PART_END_SCALE,<0.01000, 0.35000, 0.00000>,
  37. PSYS_PART_MAX_AGE,1.500000,
  38. PSYS_SRC_ACCEL,<0.00000, 0.00000, 0.40000>,
  39. PSYS_SRC_PATTERN,1,
  40. PSYS_SRC_BURST_RATE,0.150000,
  41. PSYS_SRC_BURST_PART_COUNT,10,
  42. PSYS_SRC_BURST_RADIUS,0.110000,
  43. PSYS_SRC_BURST_SPEED_MIN,0.075000,
  44. PSYS_SRC_BURST_SPEED_MAX,0.140000,
  45. PSYS_SRC_MAX_AGE,0.000000,
  46. PSYS_SRC_OMEGA,<0.65000, 0.90000, 0.13000>,
  47. PSYS_SRC_ANGLE_BEGIN,0.100000*PI,
  48. PSYS_SRC_ANGLE_END,0.400000*PI]);
  49. //////////////////////////////////////////////////////////////////////////////////////////////////////////////
  50. //////////////////////////////////////////////////////////////////////////////////////////////////////////////
  51. }
  52. default
  53. {
  54.     state_entry()
  55.     {
  56.         particle();
  57.     }
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement