add game_menu and scene_manager

This commit is contained in:
2026-05-15 23:36:10 +02:00
parent 0e56a84a95
commit f6266cb69e
19 changed files with 253 additions and 26 deletions

View File

@@ -3,7 +3,7 @@ extends Node
signal on_collectible_unlocked(collectible_id: StringName)
signal on_photo_saved(filePath: String)
var collectibles_library: CollectibleLibrary = preload("res://core/photo_mode/data/collectible_library.tres")
@export var collectibles_library: CollectibleLibrary
var unlocked_collectibles_ids: Array[StringName] = []
var saved_photos: Array[String] = []

View File

@@ -0,0 +1,8 @@
[gd_scene format=3 uid="uid://22orqdm34hfm"]
[ext_resource type="Script" uid="uid://c3kq1qddpm8tf" path="res://core/photo_mode/managers/collection_manager.gd" id="1_qf21s"]
[ext_resource type="Resource" uid="uid://c6pkpvsvimafb" path="res://core/photo_mode/data/collectible_library.tres" id="2_pxvtd"]
[node name="CollectionManager" type="Node" unique_id=1532057831]
script = ExtResource("1_qf21s")
collectibles_library = ExtResource("2_pxvtd")