blob: cde9dced92c82666e90f72ef2fef9d69b6f3773a (
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
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
|
[gd_scene load_steps=3 format=2]
[ext_resource path="res://scripts/gui.gd" type="Script" id=1]
[ext_resource path="res://scripts/debug.gd" type="Script" id=2]
[node name="gui" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Panel" type="Panel" parent="."]
margin_left = 10.0
margin_top = 11.0
margin_right = 133.0
margin_bottom = 124.0
script = ExtResource( 2 )
[node name="Button" type="Button" parent="Panel"]
margin_left = 8.0
margin_top = 4.0
margin_right = 98.0
margin_bottom = 37.0
text = "spawn"
[node name="Button2" type="Button" parent="Panel"]
margin_left = 5.0
margin_top = 57.0
margin_right = 80.0
margin_bottom = 93.0
text = "compute path"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Panel2" type="Panel" parent="."]
margin_left = 21.0
margin_top = 544.0
margin_right = 101.0
margin_bottom = 573.0
script = ExtResource( 1 )
[node name="Label" type="Label" parent="Panel2"]
margin_left = 6.0
margin_top = 6.0
margin_right = 55.0
margin_bottom = 20.0
text = "aawfawf"
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="button_down" from="Panel/Button" to="Panel" method="_on_Button_button_down"]
[connection signal="button_down" from="Panel/Button2" to="Panel" method="_on_Button2_button_down"]
|