mirror of
https://github.com/DigvijaysinhGohil/Godot-Shader-Lib.git
synced 2025-09-19 20:05:57 +08:00
736 B
736 B
Saturation node
Adjusts the saturation of input in by the amount of input saturation. A Saturation value of 1 will return the input unaltered. A Saturation value of 0 will return the input completely desaturated.
Inputs
Name | Type | Binding | Description |
---|---|---|---|
in | vec3 | none | Input value |
saturation | float | none | Saturation value |
Outputs
Name | Type | Binding | Description |
---|---|---|---|
out | vec3 | None | Output value |
ShaderInc location
res://addons/ShaderLib/Artistic/Artistic.gdshaderinc
Method signature
vec3 saturation(input, saturation)
Parameters
Name | Type | Description |
---|---|---|
input | vec3 | Input color |
saturation | float | Saturation value |