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.
18 lines
350 B
18 lines
350 B
#ifndef URP_LIT_INPUT_INCLUDED
|
|
#define URP_LIT_INPUT_INCLUDED
|
|
|
|
#include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Common.hlsl"
|
|
|
|
////////////////////////////////////////
|
|
// Defines
|
|
//
|
|
#undef LIGHTMAP_ON
|
|
|
|
CBUFFER_START(UnityPerMaterial)
|
|
float4 _MainTex_ST;
|
|
half _Cutoff;
|
|
CBUFFER_END
|
|
|
|
sampler2D _MainTex;
|
|
|
|
#endif // URP_LIT_INPUT_INCLUDED
|