Allow adding custom export platforms using scripts / GDExtension.

This commit is contained in:
bruvzg
2024-04-17 10:44:44 +03:00
parent db24ed4ead
commit 07e986f728
36 changed files with 1668 additions and 184 deletions

View File

@@ -455,6 +455,13 @@
Adds a [Script] as debugger plugin to the Debugger. The script must extend [EditorDebuggerPlugin].
</description>
</method>
<method name="add_export_platform">
<return type="void" />
<param index="0" name="platform" type="EditorExportPlatform" />
<description>
Registers a new [EditorExportPlatform]. Export platforms provides functionality of exporting to the specific platform.
</description>
</method>
<method name="add_export_plugin">
<return type="void" />
<param index="0" name="plugin" type="EditorExportPlugin" />
@@ -653,6 +660,13 @@
Removes the debugger plugin with given script from the Debugger.
</description>
</method>
<method name="remove_export_platform">
<return type="void" />
<param index="0" name="platform" type="EditorExportPlatform" />
<description>
Removes an export platform registered by [method add_export_platform].
</description>
</method>
<method name="remove_export_plugin">
<return type="void" />
<param index="0" name="plugin" type="EditorExportPlugin" />