relics added

This commit is contained in:
2024-04-09 10:15:32 -05:00
parent 39157dded2
commit 6370bfaad7
43 changed files with 1639 additions and 10 deletions

View File

@@ -0,0 +1,17 @@
@tool
extends HBoxContainer
var colour : Color
var title : String:
set = set_title
var index : int
@onready var colour_picker := $TODOColourPickerButton
func _ready() -> void:
$TODOColourPickerButton.color = colour
$Label.text = title
func set_title(value: String) -> void:
title = value
$Label.text = value