Inital commit

- Desktop wallpaper
- Desktop Icons
    - Added a simple script to set the icons texture and label
This commit is contained in:
2025-10-26 19:03:33 +01:00
commit 18ef15fb7a
21 changed files with 393 additions and 0 deletions

22
scenes/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