From 36abc689d783774ce4f2d7b5a1bb621d8684be45 Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado Date: Sat, 4 Jun 2022 23:00:58 -0600 Subject: added more ui for after gameplay, generalized basic food --- src/project.godot | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) (limited to 'src/project.godot') diff --git a/src/project.godot b/src/project.godot index 5ea911a..eb70498 100644 --- a/src/project.godot +++ b/src/project.godot @@ -44,10 +44,25 @@ _global_script_classes=[ { "language": "GDScript", "path": "res://ui/main_menu/scripts/menu_option.gd" }, { +"base": "MarginContainer", +"class": "ProgressionLabel", +"language": "GDScript", +"path": "res://ui/stats_display/scripts/progression_label.gd" +}, { +"base": "MarginContainer", +"class": "ScoreLabel", +"language": "GDScript", +"path": "res://tools/score_manager/scripts/score_label.gd" +}, { "base": "Node2D", "class": "Snake", "language": "GDScript", "path": "res://entities/actors/snake/scripts/snake.gd" +}, { +"base": "Node", +"class": "Stats", +"language": "GDScript", +"path": "res://stats.gd" } ] _global_script_class_icons={ "Food": "", @@ -57,7 +72,10 @@ _global_script_class_icons={ "GifRecorder": "res://addons/GifMaker/gif.svg", "GifRectangle": "res://addons/GifMaker/GifRectangle.svg", "MenuOption": "", -"Snake": "" +"ProgressionLabel": "", +"ScoreLabel": "", +"Snake": "", +"Stats": "" } [application] @@ -70,6 +88,7 @@ config/icon="res://icons/game.png" Event="*res://event.gd" Global="*res://global.gd" +SaveData="*res://save_data.gd" [debug] -- cgit v1.2.3