Check in the fan curve work

This commit is contained in:
Luke D. Jones
2024-03-13 18:57:38 +13:00
parent b6e3e5e823
commit f4f7a1e648
9 changed files with 258 additions and 152 deletions

View File

@@ -4,8 +4,8 @@ export component ColourSlider inherits VerticalLayout {
spacing: 10px;
in-out property <bool> enabled;
property <string> hex: "#FF0000";
in-out property <float> c1value<=> c1.value;
in-out property <float> c2value<=> c2.value;
in-out property <float> c1value <=> c1.value;
in-out property <float> c2value <=> c2.value;
property <color> base_colour: Colors.red;
in-out property <color> final_colour: Colors.red;
in-out property <brush> colourbox: final_colour;
@@ -151,7 +151,6 @@ export component ColourSlider inherits VerticalLayout {
border-radius: 7px;
border-color: Palette.border;
background <=> root.colourbox;
}
}
}