EditorSceneImporter¶
Inherited By: EditorSceneImporterFBX, EditorSceneImporterGLTF
Imports scenes from third-parties' 3D files.
Description¶
EditorSceneImporter allows to define an importer script for a third-party 3D format.
To use EditorSceneImporter, register it using the EditorPlugin.add_scene_import_plugin method first.
Methods¶
_get_extensions ( ) virtual |
|
_get_import_flags ( ) virtual |
|
_import_animation ( String path, int flags, int bake_fps ) virtual |
|
_import_scene ( String path, int flags, int bake_fps ) virtual |
|
import_animation_from_other_importer ( String path, int flags, int bake_fps ) |
|
import_scene_from_other_importer ( String path, int flags, int bake_fps, int compress_flags ) |
Constants¶
IMPORT_SCENE = 1
IMPORT_ANIMATION = 2
IMPORT_ANIMATION_DETECT_LOOP = 4
IMPORT_ANIMATION_OPTIMIZE = 8
IMPORT_ANIMATION_FORCE_ALL_TRACKS_IN_ALL_CLIPS = 16
IMPORT_ANIMATION_KEEP_VALUE_TRACKS = 32
IMPORT_GENERATE_TANGENT_ARRAYS = 256
IMPORT_FAIL_ON_MISSING_DEPENDENCIES = 512
IMPORT_MATERIALS_IN_INSTANCES = 1024
Method Descriptions¶
Array _get_extensions ( ) virtual
There is currently no description for this method. Please help us by contributing one!
int _get_import_flags ( ) virtual
There is currently no description for this method. Please help us by contributing one!
Animation _import_animation ( String path, int flags, int bake_fps ) virtual
There is currently no description for this method. Please help us by contributing one!
Node _import_scene ( String path, int flags, int bake_fps ) virtual
There is currently no description for this method. Please help us by contributing one!
Animation import_animation_from_other_importer ( String path, int flags, int bake_fps )
There is currently no description for this method. Please help us by contributing one!
Node import_scene_from_other_importer ( String path, int flags, int bake_fps, int compress_flags )
There is currently no description for this method. Please help us by contributing one!