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

@ -10,6 +10,7 @@ var state: StateComponent
var performance: PerformanceComponent
var animation: AnimationComponent
var physics: CharacterBody3D
var chat: ChatComponent
func _enter_tree():
movement = $Movement
@ -17,6 +18,7 @@ func _enter_tree():
performance = $Performance
animation = $Animation
physics = $Physics
chat = $Chat
## Name
signal name_changed(new_name: String)