add animations

This commit is contained in:
2026-05-12 23:48:04 +02:00
parent 3d7c8e5f43
commit 788397e544
20 changed files with 288 additions and 60 deletions

View File

@@ -0,0 +1,13 @@
@tool
extends Control
@export var image: Texture:
set(value):
image = value
if is_inside_tree() and has_node("%Texture"):
$%Texture.texture = image
func _ready():
if image != null and has_node("%Texture"):
$%Texture.texture = image