summaryrefslogtreecommitdiff
path: root/src/Main.tscn
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2022-06-04 03:17:22 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2022-06-04 03:17:22 -0600
commit36874a535a3d5f7f2955f33e34aa1a4768b6fec1 (patch)
tree8f4eaa57d5e82d962719a8a399cfc210ced672e6 /src/Main.tscn
parentf922fe4669080d1633e0a345a3f8981867c9e841 (diff)
added hud for snake size and grow progress
Diffstat (limited to 'src/Main.tscn')
-rw-r--r--src/Main.tscn8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Main.tscn b/src/Main.tscn
index d633409..83f263d 100644
--- a/src/Main.tscn
+++ b/src/Main.tscn
@@ -1,6 +1,7 @@
-[gd_scene load_steps=6 format=2]
+[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]
@@ -14,6 +15,11 @@ script = ExtResource( 4 )
[node name="FoodManager" parent="." instance=ExtResource( 5 )]
WORLD_GENERATOR_NP = NodePath("../WorldGenerator")
+[node name="ScoreManager" parent="." instance=ExtResource( 2 )]
+
[node name="Snake" parent="." instance=ExtResource( 1 )]
[node name="UI" parent="." instance=ExtResource( 3 )]
+__meta__ = {
+"_edit_horizontal_guides_": [ 8.0 ]
+}