I want my particles to start at a random rotation, and then rotate them, but it doesnt seem to exist. Is that so?
If it doesn't out of interest is there an alternative particle system plugin?
The particle object doesn't support individual particle rotations. That's for having to calculate less stuff. You can create your own particle system using sprites and behaviors like the Rotate behavior and the Fade behavior. Use the event system's actions to set random rotation speeds, random starting angles, random fading times etc. It will be more taxing on the CPU but you have much more control this way.
Develop games in your browser. Powerful, performant & highly capable.
how about using repeat action to spawn each particle, and set it's properties to random?
Thanks for the replies. I did it with sprites and events in the end.