Merge pull request #95736 from nongvantinh/checkbox-states-colors

Allow changing the color for the Checkbox's checked and unchecked icons
This commit is contained in:
Thaddeus Crews
2025-03-10 10:01:18 -05:00
7 changed files with 34 additions and 4 deletions

View File

@ -48,6 +48,9 @@ class CheckButton : public Button {
Ref<Texture2D> unchecked_mirrored;
Ref<Texture2D> checked_disabled_mirrored;
Ref<Texture2D> unchecked_disabled_mirrored;
Color button_checked_color;
Color button_unchecked_color;
} theme_cache;
protected: