diff options
author | Relintai <relintai@gmail.com> | 2019-09-25 22:05:42 +0200 |
---|---|---|
committer | Relintai <relintai@gmail.com> | 2019-09-26 01:26:02 +0200 |
commit | 25704e81fa53d154b37d32a1dd3a86692d87c93d (patch) | |
tree | dd3d40058b47d21ba308822be2df883469750a26 /scene/gui/rich_text_effect.h | |
parent | edf9055b7f3fb16f9b927d09bc84be31c1076ce7 (diff) | |
download | redot-engine-25704e81fa53d154b37d32a1dd3a86692d87c93d.tar.gz |
Implement #32347 - RichTextLabel's Item and Item* structs should not inherit Object, it's too expensive
Diffstat (limited to 'scene/gui/rich_text_effect.h')
-rw-r--r-- | scene/gui/rich_text_effect.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/gui/rich_text_effect.h b/scene/gui/rich_text_effect.h index f9c3e15399..4330cebfe6 100644 --- a/scene/gui/rich_text_effect.h +++ b/scene/gui/rich_text_effect.h @@ -64,6 +64,8 @@ public: Dictionary environment; CharFXTransform(); + ~CharFXTransform(); + uint64_t get_relative_index() { return relative_index; } void set_relative_index(uint64_t p_index) { relative_index = p_index; } uint64_t get_absolute_index() { return absolute_index; } |