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