noshg3/main_menu.tscn

50 lines
1.4 KiB
Plaintext

[gd_scene load_steps=5 format=2]
[ext_resource path="res://main_menu.gd" type="Script" id=1]
[ext_resource path="res://icon.png" type="Texture" id=2]
[ext_resource path="res://Fonts/Arimo-Bold.ttf" type="DynamicFontData" id=3]
[sub_resource type="DynamicFont" id=1]
size = 78
font_data = ExtResource( 3 )
[node name="Node2D" type="Node2D"]
script = ExtResource( 1 )
[node name="VBoxContainer" type="VBoxContainer" parent="."]
margin_left = 73.0
margin_top = 437.0
margin_right = 161.0
margin_bottom = 502.0
rect_scale = Vector2( 2, 2 )
[node name="Start" type="Button" parent="VBoxContainer"]
margin_right = 88.0
margin_bottom = 20.0
custom_colors/font_color = Color( 0, 0, 0, 1 )
text = "Play"
[node name="Exit" type="Button" parent="VBoxContainer"]
margin_top = 24.0
margin_right = 88.0
margin_bottom = 44.0
custom_colors/font_color = Color( 0, 0, 0, 1 )
text = "Exit"
[node name="RichTextLabel" type="RichTextLabel" parent="."]
margin_left = 393.0
margin_top = 196.0
margin_right = 676.0
margin_bottom = 296.0
custom_fonts/normal_font = SubResource( 1 )
text = "noshg3"
scroll_active = false
[node name="Icon" type="Sprite" parent="."]
position = Vector2( 796, 245 )
scale = Vector2( 2.5625, 2.5625 )
texture = ExtResource( 2 )
[connection signal="pressed" from="VBoxContainer/Start" to="." method="_on_Start_pressed"]
[connection signal="pressed" from="VBoxContainer/Exit" to="." method="_on_Exit_pressed"]