Files
Seele/res/shaders/lib/ParticlesCommon.slang
T
2020-06-02 11:46:18 +02:00

12 lines
148 B
Plaintext

struct Particle
{
float3 position;
float mass;
float3 velocity;
float age;
float3 forceAccumulator;
float life;
float color;
float3 pad;
};