Added chat bubbles

This commit is contained in:
2024-02-28 21:44:24 +01:00
parent db3ee3a685
commit 69a918d4ec
12 changed files with 167 additions and 9 deletions

View File

@ -3,5 +3,5 @@ extends VBoxContainer
signal message_submitted(message: String)
func add_message(message: String):
%Messages.append_text("%s\n" % message)
func add_message(player: Player, message: String):
%Messages.append_text("[color=#e0e0e0]%s:[/color] %s\n" % [player.name, message])

View File

@ -12,4 +12,4 @@ texture_margin_left = 24.0
texture_margin_top = 24.0
texture_margin_right = 24.0
texture_margin_bottom = 24.0
modulate_color = Color(1, 1, 1, 0.752941)
modulate_color = Color(1, 1, 1, 0.878431)