修复mover.motion修正错误问题

This commit is contained in:
YHH
2022-03-06 13:56:34 +08:00
parent 85f7bbbf1a
commit 1a41533d15
6 changed files with 23 additions and 7 deletions

View File

@@ -1661,6 +1661,7 @@ declare module es {
* 当你需要处理与Matcher相匹配的实体并且你更喜欢使用Entity的时候可以使用这个功能。
*/
abstract class EntityProcessingSystem extends EntitySystem {
enabled: boolean;
constructor(matcher: Matcher);
/**
* 处理特定的实体
@@ -1674,6 +1675,7 @@ declare module es {
*/
protected process(entities: Entity[]): void;
protected lateProcess(entities: Entity[]): void;
protected checkProcessing(): boolean;
}
}
declare module es {