summaryrefslogtreecommitdiffstats
path: root/globals.cginc
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2025-10-12 15:00:47 -0700
committeryum <yum.food.vr@gmail.com>2025-10-12 15:00:47 -0700
commit6ac3da1b0bd363d70c2f6e4b7b921f2f929dedac (patch)
treecc09ebbdd7bd101bccd2f9d594279f5f66370c63 /globals.cginc
parentd2090f73f3e4f08cdbd3c3b82eb7f3ba9f459dd0 (diff)
add uv scroll, aniso16, and finish tubes
Diffstat (limited to 'globals.cginc')
-rw-r--r--globals.cginc17
1 files changed, 14 insertions, 3 deletions
diff --git a/globals.cginc b/globals.cginc
index 38a1019..1bd9498 100644
--- a/globals.cginc
+++ b/globals.cginc
@@ -5,6 +5,7 @@
SamplerState point_repeat_s;
SamplerState linear_repeat_s;
+SamplerState aniso16_trilinear_repeat_s;
SamplerState bilinear_repeat_s;
SamplerState linear_clamp_s;
SamplerState bilinear_clamp_s;
@@ -57,8 +58,18 @@ float3 _Cloth_Sheen_Color;
texture2D _Cloth_Sheen_DFG_LUT;
#endif // _CLOTH_SHEEN
-#if defined(_CUSTOM31_TUBES)
-float _Custom31_Tubes_t;
-#endif // _CUSTOM31_TUBES
+#if defined(_CUSTOM31_XY_TUBE)
+float _Custom31_XY_Tube_t;
+#endif // _CUSTOM31_XY_TUBE
+#if defined(_CUSTOM31_XZ_TUBE)
+float _Custom31_XZ_Tube_t;
+#endif // _CUSTOM31_XZ_TUBE
+#if defined(_CUSTOM31_YZ_TUBE)
+float _Custom31_YZ_Tube_t;
+#endif // _CUSTOM31_YZ_TUBE
+
+#if defined(_UV_SCROLL)
+float2 _UV_Scroll_Speed;
+#endif // _UV_SCROLL
#endif // __GLOBALS_INC