17 lines
214 B
GDScript3
17 lines
214 B
GDScript3
|
@tool
|
||
|
extends AnimationRoot
|
||
|
|
||
|
|
||
|
# 覆盖该方法
|
||
|
func _default_data() -> Dictionary:
|
||
|
return {}
|
||
|
|
||
|
|
||
|
func _ready() -> void:
|
||
|
super._ready()
|
||
|
if Engine.is_editor_hint():
|
||
|
return
|
||
|
|
||
|
|
||
|
func _on_ground_ready() -> void:
|
||
|
pass
|