Plugin to control and modifying the process of importing a scene.
</brief_description>
<description>
This plugin type exists to modify the process of importing scenes, allowing to change the content as well as add importer options at every stage of the process.
Override to add general import options. These will appear in the main import dock on the editor. Add options via [method add_import_option] and [method add_import_option_advanced].
Override to add internal import options. These will appear in the 3D scene import dialog. Add options via [method add_import_option] and [method add_import_option_advanced].
Process a specific node or resource for a given category.
</description>
</method>
<methodname="_post_process"qualifiers="virtual">
<returntype="void"/>
<argumentindex="0"name="scene"type="Node"/>
<description>
Post process the scene. This function is called after the final scene has been configured.
</description>
</method>
<methodname="_pre_process"qualifiers="virtual">
<returntype="void"/>
<argumentindex="0"name="scene"type="Node"/>
<description>
Pre Process the scene. This function is called right after the scene format loader loaded the scene and no changes have been made.
</description>
</method>
<methodname="add_import_option">
<returntype="void"/>
<argumentindex="0"name="name"type="String"/>
<argumentindex="1"name="value"type="Variant"/>
<description>
Add a specific import option (name and default value only). This function can only be called from [method _get_import_options] and [method _get_internal_import_options].