2025-08-01 16:36:17 +08:00

12 lines
173 B
HLSL

#ifndef UNITY_TEST_INCLUDED
#define UNITY_TEST_INCLUDED
half4 GetCol()
{
#if _Red_ON
return half4(1,0,0,1);
#else
return half4(0,0,0,1);
#endif
}
#endif