You've already forked OpenRCT2-Unity
mirror of
https://github.com/izzy2lost/OpenRCT2-Unity.git
synced 2026-03-10 12:38:22 -07:00
11 lines
95 B
GLSL
11 lines
95 B
GLSL
#version 150
|
|
|
|
flat in uint fColour;
|
|
|
|
out uint oColour;
|
|
|
|
void main()
|
|
{
|
|
oColour = fColour;
|
|
}
|