diff options
author | tpart <tpart120@proton.me> | 2024-09-19 13:33:12 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-19 13:33:12 +0200 |
commit | e3b813f6948af1bc3bbc640c3aa04c783aeed02e (patch) | |
tree | 04952d506af43b3adf2155366e0cf9809ff1d159 /client/player | |
parent | 9e99dd43870217e4586d7fc14d8817a8ea3176e9 (diff) | |
download | hurrycurry-e3b813f6948af1bc3bbc640c3aa04c783aeed02e.tar hurrycurry-e3b813f6948af1bc3bbc640c3aa04c783aeed02e.tar.bz2 hurrycurry-e3b813f6948af1bc3bbc640c3aa04c783aeed02e.tar.zst |
Remove legacy chat bubble code
Diffstat (limited to 'client/player')
-rw-r--r-- | client/player/chat_bubble.gd | 1 | ||||
-rw-r--r-- | client/player/chat_bubble.tscn | 12 |
2 files changed, 1 insertions, 12 deletions
diff --git a/client/player/chat_bubble.gd b/client/player/chat_bubble.gd index d71ce5b7..dd0682f7 100644 --- a/client/player/chat_bubble.gd +++ b/client/player/chat_bubble.gd @@ -18,7 +18,6 @@ class_name ChatBubble extends MeshInstance3D @onready var label: Label = $SubViewport/ChatMessage/Label -@onready var input: LineEdit = $LineEdit var editing := false diff --git a/client/player/chat_bubble.tscn b/client/player/chat_bubble.tscn index 6124d8b2..fbe4f372 100644 --- a/client/player/chat_bubble.tscn +++ b/client/player/chat_bubble.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=7 format=3 uid="uid://cgi6vcfrnqp0i"] +[gd_scene load_steps=6 format=3 uid="uid://cgi6vcfrnqp0i"] [ext_resource type="Script" path="res://player/chat_bubble.gd" id="1_4v1cx"] [ext_resource type="PackedScene" uid="uid://5rcfoyuiwuya" path="res://player/chat_message.tscn" id="2_lyyq0"] @@ -17,8 +17,6 @@ shading_mode = 0 albedo_texture = SubResource("ViewportTexture_mko8a") billboard_mode = 1 -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_byl28"] - [node name="ChatBubble" type="MeshInstance3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.5, 0) visible = false @@ -32,11 +30,3 @@ transparent_bg = true size = Vector2i(512, 128) [node name="ChatMessage" parent="SubViewport" instance=ExtResource("2_lyyq0")] - -[node name="LineEdit" type="LineEdit" parent="."] -modulate = Color(1, 1, 1, 0) -offset_right = 67.0625 -offset_bottom = 31.0 -theme_override_styles/focus = SubResource("StyleBoxEmpty_byl28") -theme_override_styles/read_only = SubResource("StyleBoxEmpty_byl28") -theme_override_styles/normal = SubResource("StyleBoxEmpty_byl28") |