Files
Seele/res/shaders/lib/ParticlesCommon.slang
T

12 lines
148 B
Plaintext
Raw Normal View History

2020-06-02 11:46:18 +02:00
struct Particle
{
float3 position;
float mass;
float3 velocity;
float age;
float3 forceAccumulator;
float life;
float color;
float3 pad;
};