study/first_study/Library/PackageCache/com.unity.render-pipelines.universal@d10049dfa479/Shaders/UnlitMetaPass.hlsl
jh04010421 739d49f1a0 Unity | 2026.01.20
수업 실습 파일
2026-01-20 11:01:57 +09: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