summaryrefslogtreecommitdiffstats
path: root/scene/resources/syntax_highlighter.h
diff options
context:
space:
mode:
authorjsjtxietian <jsjtxietian@outlook.com>2024-05-03 21:45:53 +0800
committerjsjtxietian <jsjtxietian@outlook.com>2024-05-03 21:45:53 +0800
commitb851514b107f14d6b164e92ed3c1c4fc5f6613b5 (patch)
tree62a7291b198d10715603bffad0800c6a65b3a08b /scene/resources/syntax_highlighter.h
parent03e6fbb010c3546593bd91a0dabc045a9882705a (diff)
downloadredot-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.h4
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