project-dung/scenes/main_menu.tscn

82 lines
2.0 KiB
Plaintext

[gd_scene load_steps=6 format=2]
[ext_resource path="res://assets/icons/icon.png" type="Texture" id=1]
[ext_resource path="res://assets/Fonts/AlphaProta-Wy7VE.ttf" type="DynamicFontData" id=2]
[ext_resource path="res://scripts/main_menu.gd" type="Script" id=3]
[sub_resource type="DynamicFont" id=1]
size = 150
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=2]
size = 50
font_data = ExtResource( 2 )
[node name="MainMenu" type="CanvasLayer"]
pause_mode = 2
script = ExtResource( 3 )
[node name="Panel" type="Panel" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
[node name="DungeeImage" type="TextureRect" parent="Panel"]
anchor_left = 0.370833
anchor_top = 0.0555556
anchor_right = 0.63125
anchor_bottom = 0.518519
texture = ExtResource( 1 )
expand = true
__meta__ = {
"_edit_use_anchors_": true
}
[node name="DungeeText" type="RichTextLabel" parent="Panel"]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -312.0
margin_top = 70.0
margin_right = 366.0
margin_bottom = 224.0
rect_pivot_offset = Vector2( 342, 83 )
custom_fonts/normal_font = SubResource( 1 )
text = "DUNGEE"
scroll_active = false
[node name="BeginButton" type="Button" parent="Panel"]
anchor_left = 0.5
anchor_top = 1.0
anchor_right = 0.5
anchor_bottom = 1.0
margin_left = -122.0
margin_top = -284.0
margin_right = 148.0
margin_bottom = -206.0
custom_fonts/font = SubResource( 2 )
text = "BEGIN"
expand_icon = true
__meta__ = {
"_edit_use_anchors_": true
}
[node name="ExitButton" type="Button" parent="Panel"]
anchor_left = 0.5
anchor_top = 1.0
anchor_right = 0.5
anchor_bottom = 1.0
margin_left = -122.0
margin_top = -169.0
margin_right = 148.0
margin_bottom = -91.0
custom_fonts/font = SubResource( 2 )
text = "EXIT"
expand_icon = true
__meta__ = {
"_edit_use_anchors_": true
}
[connection signal="pressed" from="Panel/BeginButton" to="." method="_on_BeginButton_pressed"]
[connection signal="pressed" from="Panel/ExitButton" to="." method="_on_ExitButton_pressed"]