-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMessageBox.tscn
54 lines (46 loc) · 1.47 KB
/
MessageBox.tscn
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[gd_scene load_steps=3 format=2]
[ext_resource path="res://OpenSeed-Godot/MessageBox.gd" type="Script" id=1]
[ext_resource path="res://OpenSeed-Godot/Contact.tscn" type="PackedScene" id=2]
[node name="MessageBox" type="Panel"]
margin_right = 840.0
margin_bottom = 80.0
rect_min_size = Vector2( 840, 80 )
rect_clip_content = true
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Contact" parent="." instance=ExtResource( 2 )]
margin_left = 10.4455
margin_top = 8.10462
margin_right = 70.4455
margin_bottom = 68.1046
rect_min_size = Vector2( 60, 60 )
[node name="VBoxContainer" type="VBoxContainer" parent="."]
margin_left = 84.0
margin_top = 7.0
margin_right = 845.0
margin_bottom = 73.0
[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer"]
margin_right = 761.0
margin_bottom = 14.0
custom_constants/separation = 40
[node name="name" type="Label" parent="VBoxContainer/HBoxContainer"]
self_modulate = Color( 0.917647, 0.94902, 0.235294, 1 )
margin_right = 70.0
margin_bottom = 14.0
text = "User name"
[node name="date" type="Label" parent="VBoxContainer/HBoxContainer"]
self_modulate = Color( 0.662745, 0.662745, 0.662745, 1 )
margin_left = 110.0
margin_right = 138.0
margin_bottom = 14.0
text = "date"
[node name="msg" type="Label" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 95.0
margin_top = 44.0
grow_horizontal = 2
autowrap = true
[connection signal="size_flags_changed" from="msg" to="." method="_on_msg_size_flags_changed"]