aboutsummaryrefslogtreecommitdiff
path: root/client/player/chat_bubble.gd
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2025-09-27 17:31:36 +0200
committertpart <tpart120@proton.me>2025-09-27 17:31:36 +0200
commitd832426d26a0368e7d7e0e03fadaf72828348fe7 (patch)
tree3a2d6471ce6c4aceb01587a3c7a07ddd7c4151c4 /client/player/chat_bubble.gd
parent9a5eb8ddf73fecc0ef5907983e136a1018937621 (diff)
downloadhurrycurry-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.gd5
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 = ""