summaryrefslogtreecommitdiffstats
path: root/scene/resources/text_paragraph.h
diff options
context:
space:
mode:
authorMaidOpi <maidopi@qq.com>2024-11-07 03:28:08 +0800
committerMaidOpi <maidopi@qq.com>2024-11-07 03:28:08 +0800
commit07b7af0c8119ca80b5396f1be8ce2c81024af551 (patch)
tree79c1e08a4fbff7b5074a54dd0c4851d79bfb4a93 /scene/resources/text_paragraph.h
parent87318a2fb7fffeb72adca934e31915be077c3d1f (diff)
downloadredot-engine-07b7af0c8119ca80b5396f1be8ce2c81024af551.tar.gz
replace computed height with cached item minimum size
Diffstat (limited to 'scene/resources/text_paragraph.h')
-rw-r--r--scene/resources/text_paragraph.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/resources/text_paragraph.h b/scene/resources/text_paragraph.h
index 8b7f21fa9a..b083c8fe68 100644
--- a/scene/resources/text_paragraph.h
+++ b/scene/resources/text_paragraph.h
@@ -152,6 +152,8 @@ public:
int hit_test(const Point2 &p_coords) const;
+ bool is_dirty();
+
Mutex &get_mutex() const { return _thread_safe_; }
TextParagraph(const String &p_text, const Ref<Font> &p_font, int p_font_size, const String &p_language = "", float p_width = -1.f, TextServer::Direction p_direction = TextServer::DIRECTION_AUTO, TextServer::Orientation p_orientation = TextServer::ORIENTATION_HORIZONTAL);