-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path123.tscn
More file actions
124 lines (111 loc) · 2.91 KB
/
123.tscn
File metadata and controls
124 lines (111 loc) · 2.91 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[gd_scene load_steps=7 format=2]
[ext_resource path="res://sprites/paper.png" type="Texture" id=1]
[ext_resource path="res://sprites/rock.png" type="Texture" id=2]
[ext_resource path="res://sprites/scissors.png" type="Texture" id=3]
[ext_resource path="res://BPaper.gd" type="Script" id=4]
[ext_resource path="res://BRock.gd" type="Script" id=5]
[ext_resource path="res://BScissors.gd" type="Script" id=6]
[node name="Main" type="Node2D"]
[node name="BRock" type="Button" parent="."]
margin_left = 278.43
margin_top = 203.165
margin_right = 330.43
margin_bottom = 249.165
rect_scale = Vector2( 2, 2 )
icon = ExtResource( 2 )
script = ExtResource( 5 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="BScissors" type="Button" parent="."]
margin_left = 69.137
margin_top = 124.751
margin_right = 121.137
margin_bottom = 170.751
rect_scale = Vector2( 2, 2 )
shortcut_in_tooltip = false
icon = ExtResource( 3 )
script = ExtResource( 6 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="BPaper" type="Button" parent="."]
margin_left = 464.634
margin_top = 128.192
margin_right = 516.634
margin_bottom = 174.192
rect_scale = Vector2( 2, 2 )
icon = ExtResource( 1 )
script = ExtResource( 4 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label" type="Label" parent="."]
margin_left = 6.34039
margin_top = 33.6385
margin_right = 650.34
margin_bottom = 86.6385
text = "The game is started!
Select an action"
align = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Panel" type="Panel" parent="."]
margin_left = 27.9481
margin_top = 322.104
margin_right = 624.948
margin_bottom = 467.104
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label" type="Label" parent="Panel"]
margin_left = 36.7921
margin_top = 17.7277
margin_right = 177.792
margin_bottom = 41.7277
text = "bot action"
align = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="icon_game_action0" type="Button" parent="Panel"]
visible = false
margin_left = 83.8073
margin_top = 39.1311
margin_right = 131.807
margin_bottom = 96.1311
icon = ExtResource( 2 )
[node name="icon_game_action1" type="Button" parent="Panel"]
visible = false
margin_left = 84.0
margin_top = 41.0
margin_right = 131.0
margin_bottom = 94.0
icon = ExtResource( 3 )
[node name="icon_game_action2" type="Button" parent="Panel"]
visible = false
margin_left = 85.5811
margin_top = 40.1311
margin_right = 129.581
margin_bottom = 99.1311
icon = ExtResource( 1 )
[node name="result" type="Label" parent="Panel"]
margin_left = 198.0
margin_top = -192.0
margin_right = 391.0
margin_bottom = -142.0
align = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="statistic" type="Label" parent="Panel"]
margin_left = 189.0
margin_top = 16.0
margin_right = 585.0
margin_bottom = 131.0
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="BScissors" to="BScissors" method="_on_BScissors_pressed"]
[connection signal="pressed" from="BScissors" to="BRock" method="_on_BScissors_pressed"]