mirror of
https://github.com/Minestom/Minestom.git
synced 2025-02-07 16:01:55 +01:00
Post-processing should vertically flip the output
This commit is contained in:
parent
c0aec9b8b2
commit
b08c1d6898
@ -8,6 +8,8 @@ uniform sampler2D palette;
|
||||
uniform float paletteSize;
|
||||
|
||||
void main() {
|
||||
vec2 uv = fragCoords;
|
||||
uv.y = -uv.y;
|
||||
vec3 fragmentColor = texture(frame, fragCoords).rgb;
|
||||
|
||||
// render in map colors
|
||||
|
Loading…
Reference in New Issue
Block a user