Guest User

Untitled

a guest
Jun 22nd, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. material bubble
  2. {
  3. texture
  4. {
  5. filename ./particles/bubble.png
  6. texcoord uv
  7. blendfunc srcalpha invsrcalpha
  8. }
  9. }
  10.  
  11. particleSystem "bubbles"
  12. {
  13. position 0 -40 -10
  14. quota 10000
  15. material "bubble"
  16.  
  17. planeEmitter "planeBubbles"
  18. {
  19. minVelocity 20 0 0
  20. maxVelocity 20 0 0
  21. radius 1.5
  22. spawnQuantity 30
  23. spawnTime 100
  24. lifeTime 2000
  25. bounds 20 20 -20 20 -20 20
  26. }
  27.  
  28. linearAffector "gravity"
  29. {
  30. param velocity
  31. op sub
  32. factorVector 0 0.1 0
  33. }
  34.  
  35. planeEmitter "windBubbles"
  36. {
  37. minVelocity -20 30 -20
  38. maxVelocity 20 50 20
  39. radius 8
  40. spawnQuantity 6
  41. spawnTime 100
  42. lifeTime 1000
  43. position 20 -50 -10
  44. bounds -10 0 -10 10 0 10
  45. }
  46. }
Add Comment
Please, Sign In to add comment