9092858a58
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
20 lines
716 B
HLSL
20 lines
716 B
HLSL
#ifndef UNIVERSAL_LIT_META_PASS_INCLUDED
|
|
#define UNIVERSAL_LIT_META_PASS_INCLUDED
|
|
|
|
#include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/UniversalMetaPass.hlsl"
|
|
|
|
half4 UniversalFragmentMetaLit(Varyings input) : SV_Target
|
|
{
|
|
SurfaceData surfaceData;
|
|
InitializeStandardLitSurfaceData(input.uv, surfaceData);
|
|
|
|
BRDFData brdfData;
|
|
InitializeBRDFData(surfaceData.albedo, surfaceData.metallic, surfaceData.specular, surfaceData.smoothness, surfaceData.alpha, brdfData);
|
|
|
|
MetaInput metaInput;
|
|
metaInput.Albedo = brdfData.diffuse + brdfData.specular * brdfData.roughness * 0.5;
|
|
metaInput.Emission = surfaceData.emission;
|
|
return UniversalFragmentMeta(input, metaInput);
|
|
}
|
|
#endif
|