Add Table

This commit is contained in:
JonShard
2026-07-25 18:18:17 +02:00
parent a1cb484ca5
commit 265dd12b37
8 changed files with 148 additions and 27 deletions
+2 -1
View File
@@ -5,6 +5,7 @@ extends Node
@onready var container: ItemContainer = $"../Container"
@export var is_dirty: bool = false
func _ready() -> void:
if not dirty_node:
@@ -12,7 +13,7 @@ func _ready() -> void:
dirty_node.visible = is_dirty
func _process(delta: float) -> void:
func _process(_delta: float) -> void:
if is_dirty:
container.enabled = false
dirty_node.visible = true