mirror of
https://github.com/overte-org/overte.git
synced 2025-04-15 12:28:51 +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;
|
||||
};
|
||||
|
||||
in vec3 inPosition;
|
||||
in vec2 inColor; // This is actual Lifetime + Seed
|
||||
layout(location=0) in vec3 inPosition;
|
||||
layout(location=2) in vec2 inColor; // This is actual Lifetime + Seed
|
||||
|
||||
out vec4 varColor;
|
||||
out vec2 varTexcoord;
|
||||
|
|
Loading…
Reference in a new issue