summaryrefslogtreecommitdiff
path: root/src/Main.tscn
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2022-06-04 10:27:35 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2022-06-04 10:27:35 -0600
commit9a2bcf02c2623c8f3e8f5e74e70b3c0333790484 (patch)
tree42c7398d15c6b888b7d9d00ecb4e8fc5107501c7 /src/Main.tscn
parente6beb7d4d3450c68ca5ebfae040f42dd82db1b31 (diff)
refactor nodes to work with native scene changer, add functioning main menu
Diffstat (limited to 'src/Main.tscn')
-rw-r--r--src/Main.tscn25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/Main.tscn b/src/Main.tscn
deleted file mode 100644
index e874cc8..0000000
--- a/src/Main.tscn
+++ /dev/null
@@ -1,25 +0,0 @@
-[gd_scene load_steps=7 format=2]
-
-[ext_resource path="res://entities/actors/snake/scenes/Snake.tscn" type="PackedScene" id=1]
-[ext_resource path="res://tools/score_manager/ScoreManager.tscn" type="PackedScene" id=2]
-[ext_resource path="res://ui/UI.tscn" type="PackedScene" id=3]
-[ext_resource path="res://main.gd" type="Script" id=4]
-[ext_resource path="res://entities/food/scenes/FoodManager.tscn" type="PackedScene" id=5]
-[ext_resource path="res://tools/world_generator/scenes/WorldGenerator.tscn" type="PackedScene" id=6]
-
-[node name="Main" type="Node2D"]
-script = ExtResource( 4 )
-
-[node name="WorldGenerator" parent="." instance=ExtResource( 6 )]
-
-[node name="FoodManager" parent="." instance=ExtResource( 5 )]
-WORLD_GENERATOR_NP = NodePath("../WorldGenerator")
-
-[node name="Snake" parent="." instance=ExtResource( 1 )]
-
-[node name="ScoreManager" parent="." instance=ExtResource( 2 )]
-
-[node name="UI" parent="." instance=ExtResource( 3 )]
-__meta__ = {
-"_edit_horizontal_guides_": [ 8.0 ]
-}