2 Questions

  1. I’m using the pre-configured effect ‘snow’ for my project but the snowflakes are way too big. What is the parameter that I need to change to make the snowflakes smaller?

  2. I know that with other particle system you can do clouds. Is there a change that you can tell me how to do this with CBEffects 2? I want to create the clouds outside the screen and slowly make them scroll on the sky (that part I know) but to actually create random clouds I don’t. 

Thank you very much!

Nailed the rain effect like I wanted with your library! I love it!

Claude

  1. You can either dink about with the “scale” parameter (or scaleX/scaleY) or you can make an onCreation function that changes the particle size.

  2. If I get you right, you’re confused about the actual creation of the clouds, not the moving of them… Right? If that’s so, particle creation is specified by the “build” parameter (a function). So you can use a build function that picks an image from a table of images (maybe “cloud1.png”, “cloud2.png”, and “cloud3.png”) and creates an image with that path.

  • Caleb
  1. You can either dink about with the “scale” parameter (or scaleX/scaleY) or you can make an onCreation function that changes the particle size.

  2. If I get you right, you’re confused about the actual creation of the clouds, not the moving of them… Right? If that’s so, particle creation is specified by the “build” parameter (a function). So you can use a build function that picks an image from a table of images (maybe “cloud1.png”, “cloud2.png”, and “cloud3.png”) and creates an image with that path.

  • Caleb