@wonderlandengine/editor-api
Version:
Wonderland Engine's Editor API for plugins - very experimental.
17 lines (16 loc) • 408 B
JavaScript
export * from './data.js';
export * from './editor-state.js';
export * as ui from './ui.js';
export * as tools from './tools.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;
}