How to create a Particles2D that radiates particles in every direction?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Diet Estus

I want to create a Particles2D that radiates particles in every direction, but I can seem to find the settings which would achieve this.

enter image description here

I want there to be some variability in velocity and direction.

It seems like gravity is the only attribute which controls the direction of the particle, which suggests you can’t have particles moving in random directions within the same system.

How can it be done?

:bust_in_silhouette: Reply From: kidscancode

In the ParticlesMaterial, set the following properties:

  • Gravity: (0, 0, 0)
  • Spread: 180

You may also need to set Initial Velocity as the default value is very small.

Duh, I feel silly now! I also noticed you mention this at the end of your particles tutorial. Thanks!

Diet Estus | 2018-08-19 03:05