Up to date

This page is up to date for Godot 4.3. If you still find outdated information, please open an issue.

EditorSceneFormatImporterΒΆ

Inherits: RefCounted < Object

Inherited By: EditorSceneFormatImporterBlend, EditorSceneFormatImporterFBX2GLTF, EditorSceneFormatImporterGLTF, EditorSceneFormatImporterUFBX

Imports scenes from third-parties' 3D files.

DescriptionΒΆ

EditorSceneFormatImporter allows to define an importer script for a third-party 3D format.

To use EditorSceneFormatImporter, register it using the EditorPlugin.add_scene_format_importer_plugin method first.

MethodsΒΆ

PackedStringArray

_get_extensions() virtual const

int

_get_import_flags() virtual const

void

_get_import_options(path: String) virtual

Variant

_get_option_visibility(path: String, for_animation: bool, option: String) virtual const

Object

_import_scene(path: String, flags: int, options: Dictionary) virtual


ConstantsΒΆ

IMPORT_SCENE = 1 πŸ”—

There is currently no description for this constant. Please help us by contributing one!

IMPORT_ANIMATION = 2 πŸ”—

There is currently no description for this constant. Please help us by contributing one!

IMPORT_FAIL_ON_MISSING_DEPENDENCIES = 4 πŸ”—

There is currently no description for this constant. Please help us by contributing one!

IMPORT_GENERATE_TANGENT_ARRAYS = 8 πŸ”—

There is currently no description for this constant. Please help us by contributing one!

IMPORT_USE_NAMED_SKIN_BINDS = 16 πŸ”—

There is currently no description for this constant. Please help us by contributing one!

IMPORT_DISCARD_MESHES_AND_MATERIALS = 32 πŸ”—

There is currently no description for this constant. Please help us by contributing one!

IMPORT_FORCE_DISABLE_MESH_COMPRESSION = 64 πŸ”—

There is currently no description for this constant. Please help us by contributing one!


Method DescriptionsΒΆ

PackedStringArray _get_extensions() virtual const πŸ”—

There is currently no description for this method. Please help us by contributing one!


int _get_import_flags() virtual const πŸ”—

There is currently no description for this method. Please help us by contributing one!


void _get_import_options(path: String) virtual πŸ”—

There is currently no description for this method. Please help us by contributing one!


Variant _get_option_visibility(path: String, for_animation: bool, option: String) virtual const πŸ”—

There is currently no description for this method. Please help us by contributing one!


Object _import_scene(path: String, flags: int, options: Dictionary) virtual πŸ”—

There is currently no description for this method. Please help us by contributing one!