diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2022-04-26 18:21:34 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2022-04-26 19:54:43 +0800 |
commit | d8c04cda3a77b281f3785074a76ff3d3a2cb7cde (patch) | |
tree | da00a5d3f36b5c785b5492aada175a33bfd795b0 /scene/resources/theme.h | |
parent | a8abdc9372cb748aaa3f6021cf0c3719a3a64033 (diff) | |
download | redot-engine-d8c04cda3a77b281f3785074a76ff3d3a2cb7cde.tar.gz |
Validate theme type/item names
Diffstat (limited to 'scene/resources/theme.h')
-rw-r--r-- | scene/resources/theme.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scene/resources/theme.h b/scene/resources/theme.h index 9afe05007d..f8f1e95634 100644 --- a/scene/resources/theme.h +++ b/scene/resources/theme.h @@ -137,6 +137,9 @@ public: static Ref<Font> get_fallback_font(); static int get_fallback_font_size(); + static bool is_valid_type_name(const String &p_name); + static bool is_valid_item_name(const String &p_name); + void set_default_base_scale(float p_base_scale); float get_default_base_scale() const; bool has_default_base_scale() const; |