Added chat bubbles
This commit is contained in:
10
client/player/chat/ChatBubble.gd
Normal file
10
client/player/chat/ChatBubble.gd
Normal file
@ -0,0 +1,10 @@
|
||||
class_name ChatBubble
|
||||
extends Control
|
||||
|
||||
var label: Label
|
||||
|
||||
func _ready():
|
||||
label = %Label
|
||||
|
||||
func show_message(message: String):
|
||||
label.text = message
|
Reference in New Issue
Block a user