mirror of
https://github.com/bevyengine/bevy
synced 2025-01-26 03:45:16 +00:00
8 lines
100 B
GLSL
8 lines
100 B
GLSL
#version 450
|
|
|
|
uniform sampler2D s2D;
|
|
|
|
vec4 getColor()
|
|
{
|
|
return texture(s2D, vec2(0.5));
|
|
}
|