Firstborn/Library/PackageCache/com.unity.render-pipelines..../Shaders/UnlitMetaPass.hlsl
Schaken-Mods 9092858a58 updated to the latest editor
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!
2023-05-07 17:43:11 -05:00

14 lines
446 B
HLSL

#ifndef UNIVERSAL_UNLIT_META_PASS_INCLUDED
#define UNIVERSAL_UNLIT_META_PASS_INCLUDED
#include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/UniversalMetaPass.hlsl"
half4 UniversalFragmentMetaUnlit(Varyings input) : SV_Target
{
MetaInput metaInput = (MetaInput)0;
metaInput.Albedo = _BaseColor.rgb * SAMPLE_TEXTURE2D(_BaseMap, sampler_BaseMap, input.uv).rgb;
return UniversalFragmentMeta(input, metaInput);
}
#endif