12345678910111213141516171819 |
- export { AssetManager } from './Engine/Controller/AssetManager';
- export { AudioAsset } from './Engine/Model/AudioAsset';
- export { Prefab } from './Engine/Model/Prefab';
- export { default as Component } from "./Engine/Model/Component";
- import type { ComponentInterface as CInterface } from "./Engine/Model/Component";
- export type ComponentInterface = CInterface;
- export { Skybox } from './Engine/Model/Skybox';
- export { Input } from './Engine/Controller/Input/Input';
- import type { TouchInteraction as TouchInteractionType } from './Engine/Controller/Input/Touch';
- export type TouchInteraction = TouchInteractionType;
- export { traverseComponents, registerComponent, components, editorComponents, serializeComponents, initComponents, initEditorComponents, clearComponents, loadComponents, addComponent, removeComponent, removeComponents, getComponent, getComponents, getComponentByName, getObjectComponents, getComponentPrototypes, copyObjectComponents, } from "./Engine/Controller/ComponentsManager";
- export { App } from './Engine/Controller/App';
- export { default as SceneController } from './Engine/Model/SceneController';
- export { Runtime, RuntimeController } from './Engine/Controller/RuntimeController';
- export { Debug, Log, Error, Warning } from './Engine/Controller/Debug';
- export { onObjectAdded, onComponentAdded, onComponentLoaded, onComponentRemoved, onObjectRemoved, onBeforeUpdate, onUpdate, onAfterUpdate, onNextFrame, } from './Engine/Controller/Events';
- export { isDev, getStaticPath, dispose, isActive, isEnabled, setEnabled } from './Engine/Controller/Functions';
- export { Prop, PropList, props } from './Engine/Controller/Decorators';
- export { Tags } from './Engine/Controller/Tags';
|