diff options
| author | Juan Linietsky | 2017-09-14 19:38:38 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2017-09-14 19:41:14 -0300 |
| commit | d3c1f2a7f69a54652a2a07eaca402db2ee489132 (patch) | |
| tree | 4e90acb26994ccf0a7b63de47e878359cbfcc9c2 /editor/editor_plugin.h | |
| parent | 9488f06e4a4bba74db29f5a1d72ff29558cf3e10 (diff) | |
| download | godot-d3c1f2a7f69a54652a2a07eaca402db2ee489132.tar.gz godot-d3c1f2a7f69a54652a2a07eaca402db2ee489132.tar.zst godot-d3c1f2a7f69a54652a2a07eaca402db2ee489132.zip | |
Re-Added export plugins with a more interesting API, as well as the ability to do path remapping.
Also added ability to tell the exporter that a shared object needs to be bundled in the build.
Diffstat (limited to '')
| -rw-r--r-- | editor/editor_plugin.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_plugin.h b/editor/editor_plugin.h index 99328f814..18530e9ce 100644 --- a/editor/editor_plugin.h +++ b/editor/editor_plugin.h @@ -191,6 +191,9 @@ public: void add_import_plugin(const Ref<EditorImportPlugin> &p_importer); void remove_import_plugin(const Ref<EditorImportPlugin> &p_importer); + void add_export_plugin(const Ref<EditorExportPlugin> &p_exporter); + void remove_export_plugin(const Ref<EditorExportPlugin> &p_exporter); + EditorPlugin(); virtual ~EditorPlugin(); }; |
