-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tscn
151 lines (135 loc) · 3.95 KB
/
main.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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
[gd_scene load_steps=5 format=2]
[ext_resource path="res://Roboto-Regular.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://main.gd" type="Script" id=2]
[sub_resource type="DynamicFont" id=1]
size = 25
use_filter = true
font_data = ExtResource( 1 )
[sub_resource type="DynamicFont" id=2]
size = 25
use_mipmaps = true
use_filter = true
font_data = ExtResource( 1 )
[node name="Node" type="Node"]
script = ExtResource( 2 )
[node name="Control" type="Control" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="list" type="VBoxContainer" parent="Control"]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -142.0
margin_top = -192.624
margin_right = 143.0
margin_bottom = 268.375
custom_constants/separation = 16
__meta__ = {
"_edit_group_": true,
"_edit_use_anchors_": false
}
[node name="Fisika" type="Button" parent="Control/list"]
margin_right = 285.0
margin_bottom = 37.0
custom_fonts/font = SubResource( 1 )
text = "Praktikum fisika"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Aljabar" type="Button" parent="Control/list"]
margin_top = 53.0
margin_right = 285.0
margin_bottom = 90.0
custom_fonts/font = SubResource( 1 )
text = "Aljabar linier"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Binggris" type="Button" parent="Control/list"]
margin_top = 106.0
margin_right = 285.0
margin_bottom = 143.0
custom_fonts/font = SubResource( 1 )
text = "Bahasa inggris 3"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Graph" type="Button" parent="Control/list"]
margin_top = 159.0
margin_right = 285.0
margin_bottom = 196.0
custom_fonts/font = SubResource( 1 )
text = "Graph terapan"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Matematika" type="Button" parent="Control/list"]
margin_top = 212.0
margin_right = 285.0
margin_bottom = 249.0
custom_fonts/font = SubResource( 1 )
text = "Matematika diskrit"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="SistemBerkas" type="Button" parent="Control/list"]
margin_top = 265.0
margin_right = 285.0
margin_bottom = 302.0
custom_fonts/font = SubResource( 1 )
text = "Sistem berkas"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Statistik" type="Button" parent="Control/list"]
margin_top = 318.0
margin_right = 285.0
margin_bottom = 355.0
custom_fonts/font = SubResource( 1 )
text = "Statistika dasar"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Jarkom" type="Button" parent="Control/list"]
margin_top = 371.0
margin_right = 285.0
margin_bottom = 408.0
custom_fonts/font = SubResource( 1 )
text = "Jaringan komputer"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Struktur" type="Button" parent="Control/list"]
margin_top = 424.0
margin_right = 285.0
margin_bottom = 461.0
custom_fonts/font = SubResource( 1 )
text = "Struktur data"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label" type="Label" parent="Control"]
anchor_left = 0.5
anchor_right = 0.5
margin_left = -72.0
margin_top = 41.4283
margin_right = 72.0
margin_bottom = 72.4283
custom_fonts/font = SubResource( 2 )
text = "SEMESTER 3"
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="Control/list/Fisika" to="." method="_on_Fisika_pressed"]
[connection signal="pressed" from="Control/list/Aljabar" to="." method="_on_Aljabar_pressed"]
[connection signal="pressed" from="Control/list/Binggris" to="." method="_on_Binggris_pressed"]
[connection signal="pressed" from="Control/list/Graph" to="." method="_on_Graph_pressed"]
[connection signal="pressed" from="Control/list/Matematika" to="." method="_on_Matematika_pressed"]
[connection signal="pressed" from="Control/list/SistemBerkas" to="." method="_on_SistemBerkas_pressed"]
[connection signal="pressed" from="Control/list/Statistik" to="." method="_on_Statistik_pressed"]
[connection signal="pressed" from="Control/list/Jarkom" to="." method="_on_Jarkom_pressed"]
[connection signal="pressed" from="Control/list/Struktur" to="." method="_on_Struktur_pressed"]