Advertisement
Guest User

Untitled

a guest
Feb 15th, 2021
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. particles
  2. fire
  3. width = 500
  4. height = 500
  5. count = 3000
  6. spawning = 3
  7. lifespan = 10
  8. fade = 10
  9. velocity = list(0, 0)
  10. position = generator("circle", 0, 8, NORMAL_RAND)
  11. drift = generator("vector", list(0, -0.2), list(0, 0.2))
  12. gravity = list(0, 0.65)
  13.  
  14. color = "white"
  15.  
  16. smoke
  17. width = 500
  18. height = 1000
  19. count = 3000
  20. spawning = 3
  21. lifespan = 40
  22. fade = 40
  23. velocity = list(0, 2)
  24. position = list(0, 8)
  25. gravity = list(0, 1)
  26.  
  27. friction = 0.1
  28. drift = generator("vector", list(-0.16, -0.2), list(0.16, 0.2))
  29. color = "white"
  30.  
  31. fire_sparks
  32. width = 500
  33. height = 500
  34. count = 3000
  35. spawning = 1
  36. lifespan = 40
  37. fade = 20
  38. position = 0
  39. gravity = list(0, 1)
  40.  
  41. friction = 0.25
  42. drift = generator("sphere", 0, 2)
  43. gradient = list(0, "yellow", 1, "red")
  44. color = "yellow"
  45.  
  46. particles
  47. fire
  48. width = 500
  49. height = 500
  50. count = 3000
  51. spawning = 3
  52. lifespan = 10
  53. fade = 10
  54. velocity = list(0, 0)
  55. position = generator("circle", 0, 8, NORMAL_RAND)
  56. drift = generator("vector", list(0, -0.2), list(0, 0.2))
  57. gravity = list(0, 0.65)
  58.  
  59. color = "white"
  60.  
  61. smoke
  62. width = 500
  63. height = 1000
  64. count = 3000
  65. spawning = 3
  66. lifespan = 40
  67. fade = 40
  68. velocity = list(0, 2)
  69. position = list(0, 8)
  70. gravity = list(0, 1)
  71.  
  72. friction = 0.1
  73. drift = generator("vector", list(-0.16, -0.2), list(0.16, 0.2))
  74. color = "white"
  75.  
  76. fire_sparks
  77. width = 500
  78. height = 500
  79. count = 3000
  80. spawning = 1
  81. lifespan = 40
  82. fade = 20
  83. position = 0
  84. gravity = list(0, 1)
  85.  
  86. friction = 0.25
  87. drift = generator("sphere", 0, 2)
  88. gradient = list(0, "yellow", 1, "red")
  89. color = "yellow"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement