Tagged Questions

9
votes
3answers
2k views

Particle System Design?

I'm designing my own particle System engine, this is for learning purposes, I don't really want to use an existing engine. Right now I generated beautiful particles, but I want to layout the engine ...
5
votes
1answer
711 views

XNA - Creating a lot of particles at the same time

time for another XNA question. This time it is purely from a technical design standpoint though. My situation is this: I've created a particle-engine based on GPU-calculations, far from complete but ...
3
votes
2answers
616 views

particle system: particle generation

I have a system that generates particles from sources and updates their positions. Currently, I have written a program in OpenGL which calls my GenerateParticles(...) and UpdateParticles(...) and ...