mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Allow adding custom export platforms using scripts / GDExtension.
This commit is contained in:
@@ -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" />
|
||||
|
||||
Reference in New Issue
Block a user