Added the taskbar

- Changed icons to use a flow container
This commit is contained in:
2025-11-08 18:48:43 +01:00
parent f73e2cd386
commit b3f73354e0
33 changed files with 443 additions and 37 deletions

22
Scripts/desktop_icon.gd Normal file
View File

@@ -0,0 +1,22 @@
@tool
class_name DesktopIcon
extends VBoxContainer
@export var icon_texture: Texture
@export var icon_text: String
@export var min_size: Vector2 = Vector2(32,32)
var texture_rect: TextureRect
var label: Label
func _ready() -> void:
texture_rect = get_node("IcoTexture")
label = get_node("IcoLabel")
func _process(_delta: float) -> void:
update_icon()
func update_icon():
texture_rect.texture = icon_texture
texture_rect.custom_minimum_size = min_size
label.text = icon_text

View File

@@ -0,0 +1 @@
uid://dhbusj7k1vdji