Pigment/examples/hsv.gdshader

11 lines
218 B
Text
Raw Normal View History

2025-10-10 22:05:07 +02:00
shader_type canvas_item;
#include "./shaderlib/hsv.gdshaderinc"
void fragment() {
vec4 hsv = rgb2hsv(COLOR);
hsv.xyz += vec3(0.65, .42-(hsv.y*.3), -.125);
hsv.xyz *= vec3(1.0, 1.0, 1.25);
COLOR = hsv2rgb(hsv);
}