diff options
author | jsjtxietian <jsjtxietian@outlook.com> | 2024-05-03 21:45:53 +0800 |
---|---|---|
committer | jsjtxietian <jsjtxietian@outlook.com> | 2024-05-03 21:45:53 +0800 |
commit | b851514b107f14d6b164e92ed3c1c4fc5f6613b5 (patch) | |
tree | 62a7291b198d10715603bffad0800c6a65b3a08b /scene/resources/syntax_highlighter.h | |
parent | 03e6fbb010c3546593bd91a0dabc045a9882705a (diff) | |
download | redot-engine-b851514b107f14d6b164e92ed3c1c4fc5f6613b5.tar.gz |
Fix uint's suffix is not highlighted in text shader editor
Diffstat (limited to 'scene/resources/syntax_highlighter.h')
-rw-r--r-- | scene/resources/syntax_highlighter.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scene/resources/syntax_highlighter.h b/scene/resources/syntax_highlighter.h index cac2807ee2..bc66f434d4 100644 --- a/scene/resources/syntax_highlighter.h +++ b/scene/resources/syntax_highlighter.h @@ -93,6 +93,8 @@ private: Color symbol_color; Color number_color; + bool uint_suffix_enabled = false; + protected: static void _bind_methods(); @@ -139,6 +141,8 @@ public: void set_member_variable_color(Color p_color); Color get_member_variable_color() const; + + void set_uint_suffix_enabled(bool p_enabled = true); }; #endif // SYNTAX_HIGHLIGHTER_H |