@wonderlandengine/editor-api
Version:
Wonderland Engine's Editor API for plugins - very experimental.
19 lines (18 loc) • 459 B
JavaScript
export * from './data.js';
import * as ui_1 from './ui.js';
export { ui_1 as ui };
import * as tools_1 from './tools.js';
export { tools_1 as tools };
export * from './project.js';
export * from './workspace.js';
/** Editor plugin */
export class EditorPlugin {
/** Name of the plugin */
name = 'Editor Plugin';
/**
* Called after a project is loaded
*
* @returns `false` to indicate failure to load.
*/
postProjectLoad;
}