create game_menu, page generic, page_1, page_2 and relatives widgets

This commit is contained in:
2026-05-07 23:35:14 +02:00
parent 70d3dfe15c
commit 2ef9e66917
99 changed files with 1900 additions and 188 deletions

View File

@@ -0,0 +1,19 @@
extends Control
class_name CollectibleUI
var collectible_resource: CollectibleResource
@onready var texture_rect: TextureRect = $%CollectibleTexture
func setup(collectible: CollectibleResource) -> void:
collectible_resource = collectible
if collectible.image:
if !texture_rect:
texture_rect = $%CollectibleTexture
texture_rect.texture = collectible_resource.image
func unlock() -> void:
if !texture_rect:
texture_rect = $%CollectibleTexture
texture_rect.set_modulate(Color(1,1,1,1))