Skip to content

Latest commit

 

History

History
22 lines (9 loc) · 1.17 KB

extending-editor.md

File metadata and controls

22 lines (9 loc) · 1.17 KB

Extending Flax Editor

Flax Editor runs on top of the Flax Engine and is hosted here. Any contributions are welcome. However, there are other ways to extend the Editor for your needs. It's very common technique to customize the script editors and provide custom tool windows directly from your game source.

Custom Editors

Flax Editor features the Custom Editors pipeline which helps building interactive GUI and script editors. Read the Custom Editors documentation to learn more.

Custom editor windows

You can also create custom tool windows. Those can be used for example to spawn procedural geometry or to show your plugin options. To learn more about it see tutorial HOWTO: Create a custom editor window.

Editor plugins

Flax Editor supports external plugins to be loaded and used. Plugins can extend the default editor functionalities and provide additional services, like custom gizmo tool or meshes merging plugin. To learn more about it see tutorial HOWTO: Create a custom editor plugin.