Hello, I am wondering if it is possible to have random movement for individual particles.
I’m looking for two things:
Random movement in all directions.
If I want a particle to slowly float upwards, that’s easy to achieve with the initial velocity module. But what if I want it to also sway a bit back and forth, is that possible? Preferably GPU particles.
New to particles, thanks.
For random constant movement I usually use an Orbit property and set the min and max vectors to something like 500 and -500. This generally gives a good result for what I need.
Ah, I did try the orbit but it seemed a bit strange. Now I see that the behavior is a bit different between cpu and gpu particles. Will have to fiddle more with the gpu ones. Thanks for the answer.