-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathTestGutGui.tscn
63 lines (54 loc) · 1.71 KB
/
TestGutGui.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
[gd_scene load_steps=2 format=3 uid="uid://1gpt1yhn1rlg"]
[ext_resource type="Script" path="res://scenes/TestGutGui.gd" id="1"]
[node name="TestGutGui" type="Node2D"]
script = ExtResource("1")
[node name="Controls" type="Panel" parent="."]
offset_left = 790.0
offset_top = 10.0
offset_right = 1010.0
offset_bottom = 400.0
[node name="StartRun" type="Button" parent="Controls"]
layout_mode = 0
offset_left = 30.0
offset_top = 10.0
offset_right = 190.0
offset_bottom = 60.0
text = "Start Run"
clip_text = true
[node name="PauseBeforeTeardown" type="Button" parent="Controls"]
visible = false
layout_mode = 0
offset_left = 30.0
offset_top = 70.0
offset_right = 191.0
offset_bottom = 120.0
text = "Pause Before Teardown"
[node name="Clear Summary" type="Button" parent="Controls"]
visible = false
layout_mode = 0
offset_left = 30.0
offset_top = 190.0
offset_right = 191.0
offset_bottom = 240.0
text = "Clear Summary"
[node name="Pass" type="Button" parent="Controls"]
visible = false
layout_mode = 0
offset_left = 110.0
offset_top = 130.0
offset_right = 191.0
offset_bottom = 180.0
text = "Pass"
[node name="Fail" type="Button" parent="Controls"]
visible = false
layout_mode = 0
offset_left = 30.0
offset_top = 130.0
offset_right = 99.0
offset_bottom = 163.0
text = "Fail"
[connection signal="pressed" from="Controls/StartRun" to="." method="_on_start_run_pressed"]
[connection signal="pressed" from="Controls/PauseBeforeTeardown" to="." method="_on_PauseBeforeTeardown_pressed"]
[connection signal="pressed" from="Controls/Clear Summary" to="." method="_on_Clear_Summary_pressed"]
[connection signal="pressed" from="Controls/Pass" to="." method="_on_Pass_pressed"]
[connection signal="pressed" from="Controls/Fail" to="." method="_on_Fail_pressed"]