Raise-Your-Wand/Scripts/castIndicator.gd
2024-05-02 15:39:04 -04:00

14 lines
363 B
GDScript

extends Control
@onready var data = get_node("/root/Arena/Data")
@onready var primary = $TextureRect
@onready var secondary = $TextureRect2
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass