diff options
Diffstat (limited to 'client/player/character')
| -rw-r--r-- | client/player/character/character.gd | 1 | ||||
| -rw-r--r-- | client/player/character/character.tscn | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/client/player/character/character.gd b/client/player/character/character.gd index 11db638f..76d1785e 100644 --- a/client/player/character/character.gd +++ b/client/player/character/character.gd @@ -32,6 +32,7 @@ var current_animation := "idle" @onready var main_height_target = default_height @onready var walking_particles = $Walking @onready var boosting_particles = $Boosting +@onready var username_tag = $Username @onready var hairstyles = { "Brown": $Main/Head/Hair, diff --git a/client/player/character/character.tscn b/client/player/character/character.tscn index 19eb3ce2..4d7749e2 100644 --- a/client/player/character/character.tscn +++ b/client/player/character/character.tscn @@ -684,4 +684,10 @@ stream = ExtResource("14_ikcec") [node name="Woosh2" type="AudioStreamPlayer3D" parent="Boosts"] stream = ExtResource("15_iv4wu") +[node name="Username" type="Label3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.2, 0) +billboard = 1 +no_depth_test = true +text = "Username" + [connection signal="animation_finished" from="HandAnimations" to="." method="_on_hand_animations_animation_finished"] |