summaryrefslogtreecommitdiffstats
path: root/globals.cginc
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2024-05-25 12:51:26 -0700
committeryum <yum.food.vr@gmail.com>2024-05-25 12:51:26 -0700
commit8dd60d9c674ea5859f13471525419aaa41534dce (patch)
tree22ec2478dea1005437088df835599598af5f0e44 /globals.cginc
parent72a4f411ff04375caffebc557592b98bcf700ae1 (diff)
Add scale & offset to some texture fields
Diffstat (limited to 'globals.cginc')
-rw-r--r--globals.cginc10
1 files changed, 10 insertions, 0 deletions
diff --git a/globals.cginc b/globals.cginc
index 275326c..4d80955 100644
--- a/globals.cginc
+++ b/globals.cginc
@@ -8,18 +8,27 @@ float _Metallic;
float _Roughness;
texture2D _BaseColorTex;
+float4 _BaseColorTex_ST;
texture2D _NormalTex;
+float4 _NormalTex_ST;
texture2D _MetallicTex;
+float4 _MetallicTex_ST;
texture2D _RoughnessTex;
+float4 _RoughnessTex_ST;
float4 _PBR_Overlay_BaseColor;
float _PBR_Overlay_Metallic;
float _PBR_Overlay_Roughness;
texture2D _PBR_Overlay_BaseColorTex;
+float4 _PBR_Overlay_BaseColorTex_ST;
texture2D _PBR_Overlay_NormalTex;
+float4 _PBR_Overlay_NormalTex_ST;
texture2D _PBR_Overlay_MetallicTex;
+float4 _PBR_Overlay_MetallicTex_ST;
texture2D _PBR_Overlay_RoughnessTex;
+float4 _PBR_Overlay_RoughnessTex_ST;
float _PBR_Overlay_Tex_NormalStr;
+texture2D _PBR_Overlay_Mask;
texture2D _EmissionTex;
float _EmissionStrength;
@@ -51,6 +60,7 @@ float _Glitter_Speed;
float _Glitter_Seed;
float _Glitter_Brightness;
float _Glitter_Angle;
+float _Glitter_Power;
float _Explode_Phase;