mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 20:59:04 +00:00
8 lines
115 B
GLSL
8 lines
115 B
GLSL
#version 100
|
|
|
|
varying mediump vec4 varyingColor;
|
|
|
|
mediump vec4 calculateColor()
|
|
{
|
|
return varyingColor * 0.5;
|
|
}
|