This repository has been archived by the owner on Jun 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Party.tscn
74 lines (63 loc) · 2.38 KB
/
Party.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[gd_scene load_steps=3 format=2]
[ext_resource path="res://Member_Button.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/Party.gd" type="Script" id=2]
[node name="Party 1" type="GridContainer" groups=["Parties"]]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 4.0
margin_top = 32.0
margin_right = -4.0
margin_bottom = -4.0
columns = 2
script = ExtResource( 2 )
[node name="VBoxContainer" type="VBoxContainer" parent="."]
margin_right = 506.0
margin_bottom = 564.0
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="Member1" parent="VBoxContainer" instance=ExtResource( 1 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_right = 506.0
margin_bottom = 185.0
[node name="Member3" parent="VBoxContainer" instance=ExtResource( 1 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_top = 189.0
margin_right = 506.0
margin_bottom = 374.0
[node name="Member5" parent="VBoxContainer" instance=ExtResource( 1 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_top = 378.0
margin_right = 506.0
margin_bottom = 564.0
[node name="VBoxContainer2" type="VBoxContainer" parent="."]
margin_left = 510.0
margin_right = 1016.0
margin_bottom = 564.0
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="Member2" parent="VBoxContainer2" instance=ExtResource( 1 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_right = 506.0
margin_bottom = 185.0
[node name="Member4" parent="VBoxContainer2" instance=ExtResource( 1 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_top = 189.0
margin_right = 506.0
margin_bottom = 374.0
[node name="Member6" parent="VBoxContainer2" instance=ExtResource( 1 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_top = 378.0
margin_right = 506.0
margin_bottom = 564.0
[connection signal="dragged_and_dropped" from="VBoxContainer/Member1" to="." method="_on_Member1_dragged_and_dropped"]
[connection signal="dragged_and_dropped" from="VBoxContainer/Member3" to="." method="_on_Member3_dragged_and_dropped"]
[connection signal="dragged_and_dropped" from="VBoxContainer/Member5" to="." method="_on_Member5_dragged_and_dropped"]
[connection signal="dragged_and_dropped" from="VBoxContainer2/Member2" to="." method="_on_Member2_dragged_and_dropped"]
[connection signal="dragged_and_dropped" from="VBoxContainer2/Member4" to="." method="_on_Member4_dragged_and_dropped"]
[connection signal="dragged_and_dropped" from="VBoxContainer2/Member6" to="." method="_on_Member6_dragged_and_dropped"]