(
scene: IScene,
querySystem: QuerySystem,
eventSystem: TypeSafeEventSystem
)
| 183 | * @returns ECS流式API实例 |
| 184 | */ |
| 185 | export function createECSAPI( |
| 186 | scene: IScene, |
| 187 | querySystem: QuerySystem, |
| 188 | eventSystem: TypeSafeEventSystem |
| 189 | ): ECSFluentAPI { |
| 190 | return new ECSFluentAPI(scene, querySystem, eventSystem); |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * 全局ECS流式API实例(需要在使用前初始化) |
no outgoing calls
no test coverage detected