mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 20:59:04 +00:00
6 lines
149 B
GLSL
6 lines
149 B
GLSL
static float4 AmbientColor = float4(1, 0.5, 0, 1);
|
|
|
|
float4 ShaderFunction(float4 input) : COLOR0
|
|
{
|
|
return input.wwyx * float4(AmbientColor.z);
|
|
}
|