mirror of
https://github.com/JulianGro/overte.git
synced 2025-08-12 14:54:27 +02:00
Merge pull request #13346 from jherico/fix/particle_shader
Fix particle entity shader
This commit is contained in:
commit
82eec46402
1 changed files with 2 additions and 2 deletions
|
@ -37,8 +37,8 @@ layout(std140) uniform particleBuffer {
|
||||||
ParticleUniforms particle;
|
ParticleUniforms particle;
|
||||||
};
|
};
|
||||||
|
|
||||||
in vec3 inPosition;
|
layout(location=0) in vec3 inPosition;
|
||||||
in vec2 inColor; // This is actual Lifetime + Seed
|
layout(location=2) in vec2 inColor; // This is actual Lifetime + Seed
|
||||||
|
|
||||||
out vec4 varColor;
|
out vec4 varColor;
|
||||||
out vec2 varTexcoord;
|
out vec2 varTexcoord;
|
||||||
|
|
Loading…
Reference in a new issue