• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

GameMaker (solved)Both particle systems destroyed when only destroying one.

M

Mitchell Koester

Guest
So I have 2 particle systems in my game right now. I have FireParticles and DustParticles. To destroy the DustParticles particle system, type, and emitter, I use this command:

part_emitter_destroy(dustParticle,dustType);
part_type_destroy(dustType);
part_system_destroy(dustEmitter)


For some reason it also deletes the other particle system, type, emitter as well. Anyone who knows how to resolve this would be helping me immensly
 

obscene

Member
You stated you have 2 particle systems named FireParticles and DustParticles yet you deleted dustEmitter...
 
M

Mitchell Koester

Guest
You stated you have 2 particle systems named FireParticles and DustParticles yet you deleted dustEmitter...
I fail to see your point. I'm pretty new to making particles
 
Top