diff options
author | reduz <reduzio@gmail.com> | 2022-03-31 22:00:17 +0200 |
---|---|---|
committer | reduz <reduzio@gmail.com> | 2022-04-01 11:01:12 +0200 |
commit | e32215fbadc0ff108d5b7d79558e42ad7954cb4e (patch) | |
tree | e904c062146ac8961349740b570e1ec0f28ba3d8 /doc/classes/EditorFileSystemImportFormatSupportQuery.xml | |
parent | 155a94fabee3ca7305677474d41d497d419b258f (diff) | |
download | redot-engine-e32215fbadc0ff108d5b7d79558e42ad7954cb4e.tar.gz |
Add Blender install autodetection and configuration.
This PR is a continuation to #54886
* Changed Blender path editor setting from binary to installation.
* Add a class to query whether the format is supported.
* This class allows to create proper editors to configure support.
**NOTE**: This PR only provides autodetection on Linux. Code needs to be added for Windows and MacOS to autodetect the Blender installation.
Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>
Co-authored-by: Pedro J. Estébanez <pedrojrulez@gmail.com>
Diffstat (limited to 'doc/classes/EditorFileSystemImportFormatSupportQuery.xml')
-rw-r--r-- | doc/classes/EditorFileSystemImportFormatSupportQuery.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/classes/EditorFileSystemImportFormatSupportQuery.xml b/doc/classes/EditorFileSystemImportFormatSupportQuery.xml new file mode 100644 index 0000000000..8431a3a7ef --- /dev/null +++ b/doc/classes/EditorFileSystemImportFormatSupportQuery.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class name="EditorFileSystemImportFormatSupportQuery" inherits="RefCounted" version="4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd"> + <brief_description> + Used to query and configure import format support. + </brief_description> + <description> + This class is used to query and configure a certain import format. It is used in conjuntion with asset format import plugins. + </description> + <tutorials> + </tutorials> + <methods> + <method name="_get_file_extensions" qualifiers="virtual const"> + <return type="PackedStringArray" /> + <description> + Return the file extensions supported. + </description> + </method> + <method name="_is_active" qualifiers="virtual const"> + <return type="bool" /> + <description> + Return whether this importer is active. + </description> + </method> + <method name="_query" qualifiers="virtual const"> + <return type="bool" /> + <description> + Query support. Return false if import must not continue. + </description> + </method> + </methods> +</class> |