修复type大小写问题
This commit is contained in:
Submodule extensions/cocos/cocos-ecs/extensions/cocos-ecs-extension updated: 282c635093...7ed028a535
@@ -7,7 +7,7 @@ import { PoolManager } from './Utils/Pool';
|
||||
import { ECSFluentAPI, createECSAPI } from './ECS/Core/FluentAPI';
|
||||
import { Scene } from './ECS/Scene';
|
||||
import { DebugManager } from './Utils/Debug';
|
||||
import { ICoreConfig, IECSDebugConfig } from './types';
|
||||
import { ICoreConfig, IECSDebugConfig } from './Types';
|
||||
|
||||
/**
|
||||
* 游戏引擎核心类
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { IComponent } from '../types';
|
||||
import type { IComponent } from '../Types';
|
||||
|
||||
/**
|
||||
* 游戏组件基类
|
||||
|
||||
@@ -8,7 +8,7 @@ import {
|
||||
ISystemEventData,
|
||||
ISceneEventData,
|
||||
IPerformanceEventData
|
||||
} from '../../types';
|
||||
} from '../../Types';
|
||||
import {
|
||||
TypeSafeEventSystem,
|
||||
EventListenerConfig,
|
||||
|
||||
@@ -3,7 +3,7 @@ import { Core } from '../../Core';
|
||||
import { Matcher } from '../Utils/Matcher';
|
||||
import { PerformanceMonitor } from '../../Utils/PerformanceMonitor';
|
||||
import type { Scene } from '../Scene';
|
||||
import type { ISystemBase } from '../../types';
|
||||
import type { ISystemBase } from '../../Types';
|
||||
|
||||
/**
|
||||
* 实体系统的基类
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { IComponentDebugData } from '../../types';
|
||||
import { IComponentDebugData } from '../../Types';
|
||||
import { Core } from '../../Core';
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { IECSDebugConfig, IECSDebugData } from '../../types';
|
||||
import { IECSDebugConfig, IECSDebugData } from '../../Types';
|
||||
import { EntityDataCollector } from './EntityDataCollector';
|
||||
import { SystemDataCollector } from './SystemDataCollector';
|
||||
import { PerformanceDataCollector } from './PerformanceDataCollector';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { IEntityDebugData } from '../../types';
|
||||
import { IEntityDebugData } from '../../Types';
|
||||
import { Core } from '../../Core';
|
||||
import { Entity } from '../../ECS/Entity';
|
||||
import { Component } from '../../ECS/Component';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { IPerformanceDebugData } from '../../types';
|
||||
import { IPerformanceDebugData } from '../../Types';
|
||||
import { Time } from '../Time';
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { ISceneDebugData } from '../../types';
|
||||
import { ISceneDebugData } from '../../Types';
|
||||
import { Core } from '../../Core';
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { ISystemDebugData } from '../../types';
|
||||
import { ISystemDebugData } from '../../Types';
|
||||
import { Core } from '../../Core';
|
||||
|
||||
/**
|
||||
|
||||
@@ -18,4 +18,4 @@ export * from './ECS';
|
||||
|
||||
// 工具类和类型定义
|
||||
export * from './Utils';
|
||||
export * from './types';
|
||||
export * from './Types';
|
||||
2
thirdparty/BehaviourTree-ai
vendored
2
thirdparty/BehaviourTree-ai
vendored
Submodule thirdparty/BehaviourTree-ai updated: f3e91b9f34...7df0745b80
Reference in New Issue
Block a user