add theming support, fix ui issues, add ui scaling option

This commit is contained in:
Persephone Bubblegum-Holiday 2025-08-13 00:21:27 -07:00
parent 61806723ba
commit 1ced41d096
18 changed files with 259 additions and 49 deletions

View file

@ -1,6 +1,8 @@
extends Control
@export var x_offset : int = 0
@export var color : String
func _ready() -> void:
self.size.x += x_offset
$ColorRect.color = get_window().theme.get_color("color", color)