diff options
author | Yuri Sizov <yuris@humnom.net> | 2021-10-02 19:26:20 +0300 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2021-10-02 19:26:20 +0300 |
commit | 8aa78bc0501a37d7c1e81f0954ac5bd9b49f890f (patch) | |
tree | bdc49510ba924e4f9f9932dc9a1871803523f80c /scene/resources/theme.h | |
parent | 90f8eb7aa08c650684693f2be7e119ee5e94f2b0 (diff) | |
download | redot-engine-8aa78bc0501a37d7c1e81f0954ac5bd9b49f890f.tar.gz |
Reorganize Theme resource code for better maintainability
Diffstat (limited to 'scene/resources/theme.h')
-rw-r--r-- | scene/resources/theme.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scene/resources/theme.h b/scene/resources/theme.h index 15f21b91b8..35e466f899 100644 --- a/scene/resources/theme.h +++ b/scene/resources/theme.h @@ -96,13 +96,17 @@ protected: bool _get(const StringName &p_name, Variant &r_ret) const; void _get_property_list(List<PropertyInfo> *p_list) const; - static Ref<Theme> project_default_theme; + // Universal Theme resources used when no other theme has the item. static Ref<Theme> default_theme; + static Ref<Theme> project_default_theme; + + // Universal default values, final fallback for every theme. static Ref<Texture2D> default_icon; static Ref<StyleBox> default_style; static Ref<Font> default_font; static int default_font_size; + // Default values configurable for each individual theme. Ref<Font> default_theme_font; int default_theme_font_size = -1; |