You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
446 B
13 lines
446 B
#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
|
|
|