Trait godot::engine::IEditorExportPlugin

pub trait IEditorExportPlugin: GodotClass + You_forgot_the_attribute__godot_api {
Show 28 methods // Provided methods fn init(base: Base<Self::Base>) -> Self { ... } fn to_string(&self) -> GString { ... } fn on_notification(&mut self, what: ObjectNotification) { ... } fn get_property(&self, property: StringName) -> Option<Variant> { ... } fn set_property(&mut self, property: StringName, value: Variant) -> bool { ... } fn export_file( &mut self, path: GString, type_: GString, features: PackedStringArray ) { ... } fn export_begin( &mut self, features: PackedStringArray, is_debug: bool, path: GString, flags: u32 ) { ... } fn export_end(&mut self) { ... } fn begin_customize_resources( &self, platform: Gd<EditorExportPlatform>, features: PackedStringArray ) -> bool { ... } fn customize_resource( &mut self, resource: Gd<Resource>, path: GString ) -> Option<Gd<Resource>> { ... } fn begin_customize_scenes( &self, platform: Gd<EditorExportPlatform>, features: PackedStringArray ) -> bool { ... } fn customize_scene( &mut self, scene: Gd<Node>, path: GString ) -> Option<Gd<Node>> { ... } fn get_customization_configuration_hash(&self) -> u64 { ... } fn end_customize_scenes(&mut self) { ... } fn end_customize_resources(&mut self) { ... } fn get_export_options( &self, platform: Gd<EditorExportPlatform> ) -> Array<Dictionary> { ... } fn get_export_options_overrides( &self, platform: Gd<EditorExportPlatform> ) -> Dictionary { ... } fn should_update_export_options( &self, platform: Gd<EditorExportPlatform> ) -> bool { ... } fn get_export_option_warning( &self, platform: Gd<EditorExportPlatform>, option: GString ) -> GString { ... } fn get_export_features( &self, platform: Gd<EditorExportPlatform>, debug: bool ) -> PackedStringArray { ... } fn get_name(&self) -> GString { ... } fn supports_platform(&self, platform: Gd<EditorExportPlatform>) -> bool { ... } fn get_android_dependencies( &self, platform: Gd<EditorExportPlatform>, debug: bool ) -> PackedStringArray { ... } fn get_android_dependencies_maven_repos( &self, platform: Gd<EditorExportPlatform>, debug: bool ) -> PackedStringArray { ... } fn get_android_libraries( &self, platform: Gd<EditorExportPlatform>, debug: bool ) -> PackedStringArray { ... } fn get_android_manifest_activity_element_contents( &self, platform: Gd<EditorExportPlatform>, debug: bool ) -> GString { ... } fn get_android_manifest_application_element_contents( &self, platform: Gd<EditorExportPlatform>, debug: bool ) -> GString { ... } fn get_android_manifest_element_contents( &self, platform: Gd<EditorExportPlatform>, debug: bool ) -> GString { ... }
}
Expand description

Virtual methods for class EditorExportPlugin.

These methods represent constructors (init) or callbacks invoked by the engine.

See also Godot docs for EditorExportPlugin methods.

Provided Methods§

fn init(base: Base<Self::Base>) -> Self

Godot constructor, accepting an injected base object.

base refers to the base instance of the class, which can either be stored in a Base<T> field or discarded. This method returns a fully-constructed instance, which will then be moved into a Gd<T> pointer.

If the class has a #[class(init)] attribute, this method will be auto-generated and must not be overridden.

fn to_string(&self) -> GString

String representation of the Godot instance.

Override this method to define how the instance is represented as a string. Used by impl Display for Gd<T>, as well as str() and print() in GDScript.

fn on_notification(&mut self, what: ObjectNotification)

Called when the object receives a Godot notification.

The type of notification can be identified through what. The enum is designed to hold all possible NOTIFICATION_* constants that the current class can handle. However, this is not validated in Godot, so an enum variant Unknown exists to represent integers out of known constants (mistakes or future additions).

This method is named _notification in Godot, but on_notification in Rust. To send notifications, use the Object::notify method.

See also in Godot docs:

fn get_property(&self, property: StringName) -> Option<Variant>

Called whenever get() is called or Godot gets the value of a property.

Should return the given property’s value as Some(value), or None if the property should be handled normally.

See also in Godot docs:

fn set_property(&mut self, property: StringName, value: Variant) -> bool

Called whenever Godot set() is called or Godot sets the value of a property.

Should set property to the given value and return true, or return false to indicate the property should be handled normally.

See also in Godot docs:

fn export_file( &mut self, path: GString, type_: GString, features: PackedStringArray )

fn export_begin( &mut self, features: PackedStringArray, is_debug: bool, path: GString, flags: u32 )

fn export_end(&mut self)

fn begin_customize_resources( &self, platform: Gd<EditorExportPlatform>, features: PackedStringArray ) -> bool

fn customize_resource( &mut self, resource: Gd<Resource>, path: GString ) -> Option<Gd<Resource>>

fn begin_customize_scenes( &self, platform: Gd<EditorExportPlatform>, features: PackedStringArray ) -> bool

fn customize_scene( &mut self, scene: Gd<Node>, path: GString ) -> Option<Gd<Node>>

fn get_customization_configuration_hash(&self) -> u64

fn end_customize_scenes(&mut self)

fn end_customize_resources(&mut self)

fn get_export_options( &self, platform: Gd<EditorExportPlatform> ) -> Array<Dictionary>

fn get_export_options_overrides( &self, platform: Gd<EditorExportPlatform> ) -> Dictionary

fn should_update_export_options( &self, platform: Gd<EditorExportPlatform> ) -> bool

fn get_export_option_warning( &self, platform: Gd<EditorExportPlatform>, option: GString ) -> GString

fn get_export_features( &self, platform: Gd<EditorExportPlatform>, debug: bool ) -> PackedStringArray

fn get_name(&self) -> GString

fn supports_platform(&self, platform: Gd<EditorExportPlatform>) -> bool

fn get_android_dependencies( &self, platform: Gd<EditorExportPlatform>, debug: bool ) -> PackedStringArray

fn get_android_dependencies_maven_repos( &self, platform: Gd<EditorExportPlatform>, debug: bool ) -> PackedStringArray

fn get_android_libraries( &self, platform: Gd<EditorExportPlatform>, debug: bool ) -> PackedStringArray

fn get_android_manifest_activity_element_contents( &self, platform: Gd<EditorExportPlatform>, debug: bool ) -> GString

fn get_android_manifest_application_element_contents( &self, platform: Gd<EditorExportPlatform>, debug: bool ) -> GString

fn get_android_manifest_element_contents( &self, platform: Gd<EditorExportPlatform>, debug: bool ) -> GString

Object Safety§

This trait is not object safe.

Implementors§