blob: c72deb7b2773b39887e9bfc95ab8d5ab26c28845 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
[gd_scene load_steps=4 format=3 uid="uid://bpc2qgsvcafhe"]
[ext_resource type="Script" path="res://menu/chat/chat_message.gd" id="1_ey0qp"]
[ext_resource type="Theme" uid="uid://b0qmvo504e457" path="res://menu/theme/theme.tres" id="1_rx6vg"]
[sub_resource type="FontVariation" id="FontVariation_jfhbh"]
variation_embolden = 1.3
[node name="ChatMessage" type="HBoxContainer"]
offset_right = 72.0
offset_bottom = 165.0
theme = ExtResource("1_rx6vg")
script = ExtResource("1_ey0qp")
[node name="Sender" type="Label" parent="."]
layout_mode = 2
theme_override_fonts/font = SubResource("FontVariation_jfhbh")
text = "<Name>"
[node name="Message" type="Label" parent="."]
layout_mode = 2
size_flags_horizontal = 3
text = "Message"
vertical_alignment = 1
autowrap_mode = 3
[node name="FadeAway" type="Timer" parent="."]
one_shot = true
[connection signal="timeout" from="FadeAway" to="." method="_on_fade_away_timeout"]
|