(
scene: IScene,
querySystem: QuerySystem,
eventSystem: TypeSafeEventSystem
)
| 202 | * @param eventSystem 事件系统 |
| 203 | */ |
| 204 | export function initializeECS( |
| 205 | scene: IScene, |
| 206 | querySystem: QuerySystem, |
| 207 | eventSystem: TypeSafeEventSystem |
| 208 | ): void { |
| 209 | ECS = createECSAPI(scene, querySystem, eventSystem); |
| 210 | } |
nothing calls this directly
no test coverage detected