godotstarter/project/scn/TitleScn.tscn
Anthony Wilcox dbe6453ac0 Reorganized project structure
- Updated gitiginore to include backup and audio files
2019-11-15 13:20:19 -05:00

36 lines
1.1 KiB
Text

[gd_scene load_steps=3 format=2]
[ext_resource path="res://src/TitleScn.gd" type="Script" id=1]
[ext_resource path="res://scn/PauseScn.tscn" type="PackedScene" id=2]
[node name="TitleScn" type="Node"]
script = ExtResource( 1 )
[node name="TitleVBox" type="VBoxContainer" parent="."]
editor/display_folded = true
margin_left = 428.0
margin_top = 244.0
margin_right = 575.0
margin_bottom = 380.0
[node name="PlayBtn" type="Button" parent="TitleVBox"]
margin_right = 147.0
margin_bottom = 20.0
text = "KPLY"
[node name="CreditsBtn" type="Button" parent="TitleVBox"]
margin_top = 24.0
margin_right = 147.0
margin_bottom = 44.0
text = "KCRE"
[node name="LicenseBtn" type="Button" parent="TitleVBox"]
margin_top = 48.0
margin_right = 147.0
margin_bottom = 68.0
text = "KLIC"
[node name="PauseScn" parent="." instance=ExtResource( 2 )]
[connection signal="pressed" from="TitleVBox/PlayBtn" to="." method="_on_PlayBtn_pressed"]
[connection signal="pressed" from="TitleVBox/CreditsBtn" to="." method="_on_CreditsBtn_pressed"]
[connection signal="pressed" from="TitleVBox/LicenseBtn" to="." method="_on_LicenseBtn_pressed"]