1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-18 17:19:50 +00:00

Allow negative values in shading as requested in #1015

This commit is contained in:
Emmanouil Papadeas 2024-05-04 15:08:21 +03:00
parent 11b7c1f96b
commit d734ae24a5

View file

@ -44,6 +44,7 @@ popup/item_1/id = 1
[node name="AmountSlider" parent="." index="7" instance=ExtResource("3")] [node name="AmountSlider" parent="." index="7" instance=ExtResource("3")]
layout_mode = 2 layout_mode = 2
tooltip_text = "Lighten/Darken amount" tooltip_text = "Lighten/Darken amount"
min_value = -100.0
value = 10.0 value = 10.0
prefix = "Amount:" prefix = "Amount:"
@ -53,17 +54,20 @@ layout_mode = 2
[node name="HueSlider" parent="HueShiftingOptions" index="0" instance=ExtResource("3")] [node name="HueSlider" parent="HueShiftingOptions" index="0" instance=ExtResource("3")]
layout_mode = 2 layout_mode = 2
min_value = -180.0
max_value = 180.0 max_value = 180.0
value = 10.0 value = 10.0
prefix = "Hue:" prefix = "Hue:"
[node name="SatSlider" parent="HueShiftingOptions" index="1" instance=ExtResource("3")] [node name="SatSlider" parent="HueShiftingOptions" index="1" instance=ExtResource("3")]
layout_mode = 2 layout_mode = 2
min_value = -100.0
value = 10.0 value = 10.0
prefix = "Saturation:" prefix = "Saturation:"
[node name="ValueSlider" parent="HueShiftingOptions" index="2" instance=ExtResource("3")] [node name="ValueSlider" parent="HueShiftingOptions" index="2" instance=ExtResource("3")]
layout_mode = 2 layout_mode = 2
min_value = -100.0
value = 10.0 value = 10.0
prefix = "Value:" prefix = "Value:"