-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.tscn
More file actions
52 lines (44 loc) · 1.38 KB
/
Main.tscn
File metadata and controls
52 lines (44 loc) · 1.38 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
[gd_scene load_steps=4 format=2]
[ext_resource path="res://ui/FileLoadPopup.tscn" type="PackedScene" id=1]
[ext_resource path="res://Main.gd" type="Script" id=2]
[ext_resource path="res://ui/NewFile.tscn" type="PackedScene" id=3]
[node name="Main" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_top = -1.0
margin_bottom = -1.0
script = ExtResource( 2 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="NewFile" parent="." instance=ExtResource( 3 )]
visible = true
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 379.0
margin_top = 326.0
margin_right = 579.0
margin_bottom = 426.0
[node name="FileLoadPopup" parent="." instance=ExtResource( 1 )]
current_dir = "/Users/DoS/Documents/GitHub/Foxy-Adventure-Level-Editor"
current_path = "/Users/DoS/Documents/GitHub/Foxy-Adventure-Level-Editor/"
[node name="Menu" type="VBoxContainer" parent="."]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -21.0
margin_top = -22.0
margin_right = 21.0
margin_bottom = 22.0
[node name="New" type="Button" parent="Menu"]
margin_right = 42.0
margin_bottom = 20.0
text = "New"
[node name="Load" type="Button" parent="Menu"]
margin_top = 24.0
margin_right = 42.0
margin_bottom = 44.0
text = "Load"
[connection signal="pressed" from="Menu/New" to="." method="_on_New_pressed"]
[connection signal="pressed" from="Menu/Load" to="." method="_on_Load_pressed"]