mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-12 21:01:57 +00:00
10 lines
141 B
GLSL
10 lines
141 B
GLSL
#version 130
|
|
|
|
in vec4 _color;
|
|
out vec4 Color;
|
|
|
|
void main()
|
|
{
|
|
Color = _color;
|
|
}
|