diff options
| author | yum <yum.food.vr@gmail.com> | 2024-08-19 16:04:47 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2024-08-19 16:04:47 -0700 |
| commit | bf9496af5f27d548224689a123e97546fc2053b7 (patch) | |
| tree | 0110d78690ff0bafd0e1b698c5287badde74a398 /globals.cginc | |
| parent | cc4347e460a445f60e6e5b03d055c65b5cdfdbd6 (diff) | |
Add HSV, global emissions multiplier
Also bugfix overlays 1-3 ifdefs.
Diffstat (limited to 'globals.cginc')
| -rw-r--r-- | globals.cginc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/globals.cginc b/globals.cginc index e294bd6..d77b5e9 100644 --- a/globals.cginc +++ b/globals.cginc @@ -249,6 +249,7 @@ float _Decal3_UV_Select; texture2D _EmissionTex; float _EmissionStrength; #endif +float _Global_Emission_Factor; #if defined(_AMBIENT_OCCLUSION) texture2D _Ambient_Occlusion; @@ -439,6 +440,15 @@ float _OKLAB_Chroma_Shift; float _OKLAB_Hue_Shift; #endif +#if defined(_HSV) +float _HSV_Enabled; +texture2D _HSV_Mask; +float _HSV_Mask_Invert; +float _HSV_Hue_Shift; +float _HSV_Sat_Shift; +float _HSV_Val_Shift; +#endif + #if defined(_CLONES) float _Clones_Enabled; float _Clones_Count; |
