From f4e87d8d03e890024e34ea5380ea71cad699012a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=A8=E8=90=BD=E5=9F=BA=E5=9B=B4=E8=99=BE?= <3161880837@qq.com> Date: Sun, 14 Sep 2025 13:35:27 +0800 Subject: [PATCH] =?UTF-8?q?docs(Statemachine):=20=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E6=8A=BD=E8=B1=A1=E6=96=B9=E6=B3=95=E7=9A=84=E6=B3=A8=E9=87=8A?= =?UTF-8?q?=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/Statemachine/EntityBase.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Statemachine/EntityBase.gd b/scripts/Statemachine/EntityBase.gd index 817f0be..8b0edfc 100644 --- a/scripts/Statemachine/EntityBase.gd +++ b/scripts/Statemachine/EntityBase.gd @@ -341,7 +341,7 @@ func getTrackingAnchor() -> Vector2: func isPlayer(): return is_in_group("players") -# 抽象方法 +# 抽象方法,实际上是一些钩子,不需要全部实现 func ai(): pass func attack(_type: int):