diff options
| author | yum <yum.food.vr@gmail.com> | 2025-12-06 19:09:42 -0800 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2025-12-06 19:10:03 -0800 |
| commit | 036919d692fda532bfba508f77ea9dba37d5c4f9 (patch) | |
| tree | ce12c65635cda34f4a71de690fa33cbff98fbc33 /globals.cginc | |
| parent | 0663fa9713e1fc44395401a96f60aca7a947bdbb (diff) | |
begin work on "un-tube" feature
essentially the inverse of the sheet -> tube transform.
Diffstat (limited to 'globals.cginc')
| -rw-r--r-- | globals.cginc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/globals.cginc b/globals.cginc index 56d9e49..4e03e0b 100644 --- a/globals.cginc +++ b/globals.cginc @@ -78,6 +78,15 @@ texture2D _Cloth_Sheen_DFG_LUT; #if defined(_VERTEX_DEFORMATION_XY_TUBE) float _Vertex_Deformation_XY_Tube_t; #endif // _VERTEX_DEFORMATION_XY_TUBE +#if defined(_VERTEX_DEFORMATION_XY_UNTUBE) +float _Vertex_Deformation_XY_Untube_t; +#endif // _VERTEX_DEFORMATION_XY_UNTUBE +#if defined(_VERTEX_DEFORMATION_XZ_UNTUBE) +float _Vertex_Deformation_XZ_Untube_t; +#endif // _VERTEX_DEFORMATION_XZ_UNTUBE +#if defined(_VERTEX_DEFORMATION_YZ_UNTUBE) +float _Vertex_Deformation_YZ_Untube_t; +#endif // _VERTEX_DEFORMATION_YZ_UNTUBE #if defined(_VERTEX_DEFORMATION_XZ_TUBE) float _Vertex_Deformation_XZ_Tube_t; #endif // _VERTEX_DEFORMATION_XZ_TUBE |
