EditorExportPlugin

Inherits: RefCounted < Object

A script that is executed when exporting the project.

Description

EditorExportPlugins are automatically invoked whenever the user exports the project. Their most common use is to determine what files are being included in the exported project. For each plugin, _export_begin is called at the beginning of the export process and then _export_file is called for each exported file.

To use EditorExportPlugin, register it using the EditorPlugin.add_export_plugin method first.

Tutorials

Methods

bool

_begin_customize_resources ( EditorExportPlatform platform, PackedStringArray features ) virtual const

bool

_begin_customize_scenes ( EditorExportPlatform platform, PackedStringArray features ) virtual const

Resource

_customize_resource ( Resource resource, String path ) virtual

Node

_customize_scene ( Node scene, String path ) virtual

void

_end_customize_resources ( ) virtual

void

_end_customize_scenes ( ) virtual

void

_export_begin ( PackedStringArray features, bool is_debug, String path, int flags ) virtual

void

_export_end ( ) virtual

void

_export_file ( String path, String type, PackedStringArray features ) virtual

PackedStringArray

_get_android_dependencies ( EditorExportPlatform platform, bool debug ) virtual const

PackedStringArray

_get_android_dependencies_maven_repos ( EditorExportPlatform platform, bool debug ) virtual const

PackedStringArray

_get_android_libraries ( EditorExportPlatform platform, bool debug ) virtual const

String

_get_android_manifest_activity_element_contents ( EditorExportPlatform platform, bool debug ) virtual const

String

_get_android_manifest_application_element_contents ( EditorExportPlatform platform, bool debug ) virtual const

String

_get_android_manifest_element_contents ( EditorExportPlatform platform, bool debug ) virtual const

int

_get_customization_configuration_hash ( ) virtual const

PackedStringArray

_get_export_features ( EditorExportPlatform platform, bool debug ) virtual const

String

_get_export_option_warning ( EditorExportPlatform platform, String option ) virtual const

Dictionary[]

_get_export_options ( EditorExportPlatform platform ) virtual const

String

_get_name ( ) virtua