1
Fork 0
mirror of https://github.com/Steffo99/looping-for-loops.git synced 2024-11-22 16:14:22 +00:00
looping-for-loops/Objects/Menu.tscn

83 lines
1.9 KiB
Text
Raw Normal View History

2020-10-04 18:26:45 +00:00
[gd_scene load_steps=7 format=2]
[ext_resource path="res://Fonts/LiberationMono-Bold.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://Objects/Menu.gd" type="Script" id=2]
[ext_resource path="res://Resources/ryg_logo.png" type="Texture" id=3]
[sub_resource type="DynamicFont" id=1]
size = 32
font_data = ExtResource( 1 )
[sub_resource type="DynamicFont" id=2]
size = 256
font_data = ExtResource( 1 )
[sub_resource type="DynamicFont" id=3]
size = 64
font_data = ExtResource( 1 )
[node name="Menu" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 2 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="CenterContainer" type="CenterContainer" parent="."]
margin_right = 1280.0
2020-10-05 20:20:12 +00:00
margin_bottom = 120.0
2020-10-04 18:26:45 +00:00
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label" type="Label" parent="CenterContainer"]
2020-10-05 20:20:12 +00:00
margin_left = 535.0
2020-10-04 18:26:45 +00:00
margin_top = 41.0
2020-10-05 20:20:12 +00:00
margin_right = 744.0
margin_bottom = 78.0
2020-10-04 18:26:45 +00:00
custom_fonts/font = SubResource( 1 )
2020-10-05 20:20:12 +00:00
text = "Looping for"
2020-10-04 18:26:45 +00:00
align = 1
valign = 1
[node name="CenterContainer2" type="CenterContainer" parent="."]
2020-10-05 20:20:12 +00:00
margin_top = 120.0
2020-10-04 18:26:45 +00:00
margin_right = 1280.0
2020-10-05 20:20:12 +00:00
margin_bottom = 440.0
2020-10-04 18:26:45 +00:00
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label2" type="Label" parent="CenterContainer2"]
2020-10-05 20:20:12 +00:00
margin_left = 255.0
2020-10-04 18:26:45 +00:00
margin_top = 14.0
2020-10-05 20:20:12 +00:00
margin_right = 1025.0
2020-10-04 18:26:45 +00:00
margin_bottom = 305.0
custom_fonts/font = SubResource( 2 )
2020-10-05 20:20:12 +00:00
text = "LÖÖPS"
2020-10-04 18:26:45 +00:00
align = 1
valign = 1
[node name="Button" type="Button" parent="."]
margin_left = 480.0
margin_top = 520.0
margin_right = 800.0
margin_bottom = 680.0
custom_fonts/font = SubResource( 3 )
text = "Play"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="TextureRect" type="TextureRect" parent="."]
2020-10-05 20:20:12 +00:00
margin_left = 1080.0
2020-10-04 18:26:45 +00:00
margin_top = 520.0
2020-10-05 20:20:12 +00:00
margin_right = 1240.0
2020-10-04 18:26:45 +00:00
margin_bottom = 680.0
texture = ExtResource( 3 )
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="Button" to="." method="_on_Button_pressed"]