add base system
This commit is contained in:
16
core/photo_mode/collectible_ui.gd
Normal file
16
core/photo_mode/collectible_ui.gd
Normal file
@@ -0,0 +1,16 @@
|
||||
extends Control
|
||||
|
||||
class_name CollectibleUI
|
||||
|
||||
@onready var label: Label = $Panel/MarginContainer/VBoxContainer/Label
|
||||
@onready var texture_rect: TextureRect = $Panel/MarginContainer/VBoxContainer/TextureRect
|
||||
var collectible_resource: CollectibleResource
|
||||
|
||||
func setup(collectible: CollectibleResource) -> void:
|
||||
collectible_resource = collectible
|
||||
$Panel/MarginContainer/VBoxContainer/Label.text = collectible_resource.title
|
||||
if collectible.image:
|
||||
$Panel/MarginContainer/VBoxContainer/TextureRect.texture = collectible_resource.image
|
||||
|
||||
func unlock() -> void:
|
||||
$Panel/MarginContainer/VBoxContainer/TextureRect.set_modulate(Color(1,1,1,1))
|
||||
Reference in New Issue
Block a user