You should just be able to do this:
half4 LightingUnlit(SurfaceOutput s, half3 lightDir, half atten)
{
return half4(s.Albedo, s.Alpha);
}
Then make your #pragma
#pragma surface surf Unlit
↧