MCPcopy Create free account
hub / github.com/esengine/esengine / BlueprintRuntimeModule

Class BlueprintRuntimeModule

packages/blueprint/src/BlueprintPlugin.ts:19–28  ·  view source on GitHub ↗

* Blueprint Runtime Module. * 蓝图运行时模块。 * * Note: Blueprint uses a custom system (IBlueprintSystem) instead of EntitySystem, * so createSystems is not implemented here. Blueprint systems should be created * manually using createBlueprintSystem(scene).

Source from the content-addressed store, hash-verified

17 * manually using createBlueprintSystem(scene).
18 */
19class BlueprintRuntimeModule implements IRuntimeModule {
20 async onInitialize(): Promise<void> {
21 // Blueprint system initialization
22 // Blueprint uses IBlueprintSystem which is different from EntitySystem
23 }
24
25 onDestroy(): void {
26 // Cleanup
27 }
28}
29
30/**
31 * Plugin manifest for Blueprint.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected