2017-09-23 10:59:35 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-02-14 14:18:53 +01:00
<class name= "EditorResourceConversionPlugin" inherits= "RefCounted" version= "4.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-23 10:59:35 +02:00
<brief_description >
2023-01-14 21:02:34 +01:00
Plugin for adding custom converters from one resource format to another in the editor resource picker context menu; for example, converting a [StandardMaterial3D] to a [ShaderMaterial].
2017-09-23 10:59:35 +02:00
</brief_description>
<description >
2023-01-14 21:02:34 +01:00
[EditorResourceConversionPlugin] is invoked when the context menu is brought up for a resource in the editor inspector. Relevant conversion plugins will appear as menu options to convert the given resource to a target type.
Below shows an example of a basic plugin that will convert an [ImageTexture] to a [PortableCompressedTexture2D].
[codeblocks]
[gdscript]
extends EditorResourceConversionPlugin
func _handles(resource : Resource):
return resource is ImageTexture
func _converts_to():
return "PortableCompressedTexture2D"
func _convert(itex : Resource):
var ptex = PortableCompressedTexture2D.new()
ptex.create_from_image(itex.get_image(), PortableCompressedTexture2D.COMPRESSION_MODE_LOSSLESS)
return ptex
[/gdscript]
[/codeblocks]
To use an [EditorResourceConversionPlugin], register it using the [method EditorPlugin.add_resource_conversion_plugin] method first.
2017-09-23 10:59:35 +02:00
</description>
<tutorials >
</tutorials>
<methods >
2021-08-22 03:52:44 +02:00
<method name= "_convert" qualifiers= "virtual const" >
2021-07-30 15:28:05 +02:00
<return type= "Resource" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "resource" type= "Resource" />
2017-09-23 10:59:35 +02:00
<description >
2023-01-14 21:02:34 +01:00
Takes an input [Resource] and converts it to the type given in [method _converts_to]. The returned [Resource] is the result of the conversion, and the input [Resource] remains unchanged.
2017-09-23 10:59:35 +02:00
</description>
</method>
2021-08-22 03:52:44 +02:00
<method name= "_converts_to" qualifiers= "virtual const" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
2017-09-23 10:59:35 +02:00
<description >
2023-01-14 21:02:34 +01:00
Returns the class name of the target type of [Resource] that this plugin converts source resources to.
2017-09-23 10:59:35 +02:00
</description>
</method>
2021-08-22 03:52:44 +02:00
<method name= "_handles" qualifiers= "virtual const" >
<return type= "bool" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "resource" type= "Resource" />
2021-08-22 03:52:44 +02:00
<description >
2023-01-14 21:02:34 +01:00
Called to determine whether a particular [Resource] can be converted to the target resource type by this plugin.
2021-08-22 03:52:44 +02:00
</description>
</method>
2017-09-23 10:59:35 +02:00
</methods>
</class>