From cc266a7ba98e10da1d64833fd249f4bf1dd0fb28 Mon Sep 17 00:00:00 2001 From: "SNDA\\niujiaqun.nathan" Date: Wed, 24 Sep 2025 18:18:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=94=99=E8=AF=AF=E6=96=B9?= =?UTF-8?q?=E6=B3=95=E8=B0=83=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/core/src/ECS/Utils/EntityProcessorList.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/ECS/Utils/EntityProcessorList.ts b/packages/core/src/ECS/Utils/EntityProcessorList.ts index f747cfa5..da5d4c9b 100644 --- a/packages/core/src/ECS/Utils/EntityProcessorList.ts +++ b/packages/core/src/ECS/Utils/EntityProcessorList.ts @@ -67,7 +67,7 @@ export class EntityProcessorList { // 清理处理器 for (const processor of this._processors) { try { - processor.update(); + processor.reset(); } catch (error) { EntityProcessorList._logger.error(`Error in processor ${getSystemInstanceTypeName(processor)}:`, error); }