20 lines
289 B
GDScript
20 lines
289 B
GDScript
@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
|
|
|
|
func mouse_animation() -> void:
|
|
$"../DeployLayer/老鼠衔大洋".play() |