diff options
author | tpart <tpart120@proton.me> | 2025-09-27 17:31:36 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2025-09-27 17:31:36 +0200 |
commit | d832426d26a0368e7d7e0e03fadaf72828348fe7 (patch) | |
tree | 3a2d6471ce6c4aceb01587a3c7a07ddd7c4151c4 /client/player/chat_bubble.gd | |
parent | 9a5eb8ddf73fecc0ef5907983e136a1018937621 (diff) | |
download | hurrycurry-d832426d26a0368e7d7e0e03fadaf72828348fe7.tar hurrycurry-d832426d26a0368e7d7e0e03fadaf72828348fe7.tar.bz2 hurrycurry-d832426d26a0368e7d7e0e03fadaf72828348fe7.tar.zst |
Refactor chat bubble / item bubble / effect system to avoid instantiating nodes when not needed
Diffstat (limited to 'client/player/chat_bubble.gd')
-rw-r--r-- | client/player/chat_bubble.gd | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/client/player/chat_bubble.gd b/client/player/chat_bubble.gd index cb4fac61..abeacc66 100644 --- a/client/player/chat_bubble.gd +++ b/client/player/chat_bubble.gd @@ -21,9 +21,4 @@ extends MeshInstance3D var editing := false func set_text(t: String): - visible = true label.text = t - -func remove_text(): - visible = false - label.text = "" |