I’m creating an explosion effect using a burst of particles - my emitter settings are below.
The effect looks great in the preview window but when running in the game (Windows) only about 3-4 particles are emitted.
Please does anyone have an idea why this might be?
1 Like
Wow, that’s a high spawn rate! There are two settings in game.project for particle fx: max_count and max_particle_count, could you please check the max_particle_count value?
1 Like
Yeah! I want all the particles to come out in one go like an explosion.
game.project settings for particles are the default : max_count 64 and max_particle_count 1024
1 Like
Change emitter type to “Circle”. The sphere is 3D and I bet most particles leave the near-far planes of the frustum, which are 1,-1 by default. The Circle is 2D so all particles only move in the X-Y plane then.
3 Likes
Perfect, thank you!
This forum is really great 
2 Likes