godotstarter/project/scn/TitleScn.tscn

37 lines
1.1 KiB
Text
Raw Permalink Normal View History

2019-01-10 15:19:39 -05:00
[gd_scene load_steps=3 format=2]
[ext_resource path="res://src/TitleScn.gd" type="Script" id=1]
2019-06-12 21:55:41 -04:00
[ext_resource path="res://scn/PauseScn.tscn" type="PackedScene" id=2]
2019-01-10 15:19:39 -05:00
[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"
2019-06-12 21:55:41 -04:00
[node name="PauseScn" parent="." instance=ExtResource( 2 )]
2019-01-10 15:19:39 -05:00
[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"]