diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-10-30 14:30:22 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-12-19 13:53:21 +0200 |
commit | e9c219cff25e93d3156320ecee1263f29841f967 (patch) | |
tree | 6b4c624f8eca6f387ad489d5d6f58dbce9dd6593 /scene/gui/label.h | |
parent | bf8dd73e9d88d6ab146506699f43230b12c6a2b0 (diff) | |
download | redot-engine-e9c219cff25e93d3156320ecee1263f29841f967.tar.gz |
[Label] Add get_character_bounds method to get bounding rectangles of the characters.
Diffstat (limited to 'scene/gui/label.h')
-rw-r--r-- | scene/gui/label.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/gui/label.h b/scene/gui/label.h index 44443e3eb4..9306033dd0 100644 --- a/scene/gui/label.h +++ b/scene/gui/label.h @@ -161,6 +161,8 @@ public: int get_line_count() const; int get_visible_line_count() const; + Rect2 get_character_bounds(int p_pos) const; + Label(const String &p_text = String()); ~Label(); }; |