What is the proper way of disposing objects that are in a pool?
I have a pool with ParticleEffects and I guess they need to be disposed.
So when should I do that?
I don't think it is a good idea to dispose that ParticleEffects when I put them back in the pool.
Should I keep all the references to objects I obtained from the pool in an Array and then dispose them when the programm is finished? Or is there a better way to to that?