13 lines
191 B
GDScript
13 lines
191 B
GDScript
@tool
|
|
extends ProAnimatedSprite2D
|
|
|
|
|
|
func _ready() -> void:
|
|
super._ready()
|
|
if Engine.is_editor_hint():
|
|
return
|
|
|
|
|
|
func _physics_process(delta: float) -> void:
|
|
super._physics_process(delta)
|