blob: ae49f97d5eca98ca4ef229ea49cdcaaceffa08ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[gd_scene load_steps=4 format=2]
[ext_resource path="res://Scenes/Game.tscn" type="PackedScene" id=1]
[ext_resource path="res://Scenes/StartMenu.tscn" type="PackedScene" id=2]
[ext_resource path="res://Scripts/Texty.cs" type="Script" id=3]
[node name="Texty" type="Node"]
script = ExtResource( 3 )
[node name="Game" parent="." instance=ExtResource( 1 )]
visible = false
[node name="StartMenu" parent="." instance=ExtResource( 2 )]
[connection signal="QuitGame" from="StartMenu" to="." method="OnQuitGame"]
|