mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-09-27 14:40:52 +00:00
10 lines
165 B
GLSL
10 lines
165 B
GLSL
#version 330
|
|
|
|
in vec3 ViewPos;
|
|
|
|
out vec3 PosOut;
|
|
|
|
void main()
|
|
{
|
|
PosOut = ViewPos;
|
|
} |