diff options
| author | yum <yum.food.vr@gmail.com> | 2024-05-27 21:42:06 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2024-05-27 21:42:06 -0700 |
| commit | 47eb460bf49d4512f52eecffa5696eb761a08f83 (patch) | |
| tree | ec79ae609eb51f579fb0e09e57b6304274f9dbe4 /globals.cginc | |
| parent | c9af3d5c85836588f7e82bcbb172bb21251427bf (diff) | |
Use _MainTex and _Color
Also remove multipliers from gradient-based mipmap sampling.
Diffstat (limited to 'globals.cginc')
| -rw-r--r-- | globals.cginc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/globals.cginc b/globals.cginc index 6e56eac..5156284 100644 --- a/globals.cginc +++ b/globals.cginc @@ -5,7 +5,7 @@ SamplerState linear_repeat_s; -float4 _BaseColor; +float4 _Color; float _Metallic; float _Roughness; float _Tex_NormalStr; @@ -20,8 +20,8 @@ float _Confabulate_Normals; #if defined(_BASECOLOR_MAP) -texture2D _BaseColorTex; -float4 _BaseColorTex_ST; +texture2D _MainTex; +float4 _MainTex_ST; #endif texture2D _NormalTex; float4 _NormalTex_ST; |
