AceField/Scenes/Root.tscn
2024-08-05 23:54:22 +08:00

32 lines
1.3 KiB
Plaintext

[gd_scene load_steps=6 format=3 uid="uid://bjhmjrldq4lkt"]
[ext_resource type="PackedScene" uid="uid://b3gx0bl43lku3" path="res://Scenes/Player.tscn" id="1_vby0g"]
[ext_resource type="PackedScene" uid="uid://bvll23f5ibd4v" path="res://Scenes/UI/StartScreen.tscn" id="2_7o53i"]
[ext_resource type="Script" path="res://Scripts/Launcher.cs" id="2_u5cms"]
[ext_resource type="Script" path="res://Scripts/Logic/World.cs" id="3_xwguj"]
[ext_resource type="Script" path="res://Scripts/TilesManager.cs" id="5_5wdx5"]
[node name="Node" type="Node"]
[node name="StartScreen" parent="." node_paths=PackedStringArray("Launcher") instance=ExtResource("2_7o53i")]
Launcher = NodePath("../LauncherNode")
[node name="LauncherNode" type="Node" parent="." node_paths=PackedStringArray("World")]
script = ExtResource("2_u5cms")
World = NodePath("../World")
[node name="World" type="Node2D" parent="."]
script = ExtResource("3_xwguj")
PlayerScene = ExtResource("1_vby0g")
[node name="TilesSpawner" type="MultiplayerSpawner" parent="World"]
_spawnable_scenes = PackedStringArray("res://Scenes/Tiles/Brick.tscn")
spawn_path = NodePath("../Tiles")
[node name="Tiles" type="Node2D" parent="World"]
script = ExtResource("5_5wdx5")
[node name="PlayerSpawner" type="MultiplayerSpawner" parent="."]
_spawnable_scenes = PackedStringArray("res://Scenes/Player.tscn")
spawn_path = NodePath("../World")