2018-05-28 14:53:15 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2021-06-04 18:03:15 +02:00
<class name= "EditorInspectorPlugin" inherits= "RefCounted" version= "4.0" >
2018-05-28 14:53:15 +02:00
<brief_description >
2019-04-23 21:39:09 +02:00
Plugin for adding custom property editors on inspector.
2018-05-28 14:53:15 +02:00
</brief_description>
<description >
2021-03-18 12:04:28 +01:00
These plugins allow adding custom property editors to [EditorInspector].
2019-04-24 07:49:38 +02:00
Plugins are registered via [method EditorPlugin.add_inspector_plugin].
2021-05-15 23:48:59 +02:00
When an object is edited, the [method _can_handle] function is called and must return [code]true[/code] if the object type is supported.
If supported, the function [method _parse_begin] will be called, allowing to place custom controls at the beginning of the class.
Subsequently, the [method _parse_category] and [method _parse_property] are called for every category and property. They offer the ability to add custom controls to the inspector too.
Finally, [method _parse_end] will be called.
2019-04-24 07:49:38 +02:00
On each of these calls, the "add" functions can be called.
2018-05-28 14:53:15 +02:00
</description>
<tutorials >
</tutorials>
<methods >
2021-05-15 23:48:59 +02:00
<method name= "_can_handle" qualifiers= "virtual" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "object" type= "Object" />
2018-05-28 14:53:15 +02:00
<description >
2021-05-15 23:48:59 +02:00
Returns [code]true[/code] if this object can be handled by this plugin.
2018-05-28 14:53:15 +02:00
</description>
</method>
2021-05-15 23:48:59 +02:00
<method name= "_parse_begin" qualifiers= "virtual" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2018-05-28 14:53:15 +02:00
<description >
2021-05-15 23:48:59 +02:00
Called to allow adding controls at the beginning of the list.
2018-05-28 14:53:15 +02:00
</description>
</method>
2021-05-15 23:48:59 +02:00
<method name= "_parse_category" qualifiers= "virtual" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "category" type= "String" />
2018-05-28 14:53:15 +02:00
<description >
2021-05-15 23:48:59 +02:00
Called to allow adding controls at the beginning of the category.
2018-05-28 14:53:15 +02:00
</description>
</method>
2021-05-15 23:48:59 +02:00
<method name= "_parse_end" qualifiers= "virtual" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2018-05-28 14:53:15 +02:00
<description >
2021-05-15 23:48:59 +02:00
Called to allow adding controls at the end of the list.
2018-05-28 14:53:15 +02:00
</description>
</method>
2021-05-15 23:48:59 +02:00
<method name= "_parse_property" qualifiers= "virtual" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "type" type= "int" />
<argument index= "1" name= "path" type= "String" />
<argument index= "2" name= "hint" type= "int" />
<argument index= "3" name= "hint_text" type= "String" />
<argument index= "4" name= "usage" type= "int" />
2018-05-28 14:53:15 +02:00
<description >
2021-05-15 23:48:59 +02:00
Called to allow adding property specific editors to the inspector. Usually these inherit [EditorProperty]. Returning [code]true[/code] removes the built-in editor for this property, otherwise allows to insert a custom editor before the built-in one.
2018-05-28 14:53:15 +02:00
</description>
</method>
2021-05-15 23:48:59 +02:00
<method name= "add_custom_control" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "control" type= "Control" />
2018-05-28 14:53:15 +02:00
<description >
2021-05-15 23:48:59 +02:00
Adds a custom control, not necessarily a property editor.
2018-05-28 14:53:15 +02:00
</description>
</method>
2021-05-15 23:48:59 +02:00
<method name= "add_property_editor" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "property" type= "String" />
<argument index= "1" name= "editor" type= "Control" />
2018-05-28 14:53:15 +02:00
<description >
2021-05-15 23:48:59 +02:00
Adds a property editor, this must inherit [EditorProperty].
2018-05-28 14:53:15 +02:00
</description>
</method>
2021-05-15 23:48:59 +02:00
<method name= "add_property_editor_for_multiple_properties" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "label" type= "String" />
<argument index= "1" name= "properties" type= "PackedStringArray" />
<argument index= "2" name= "editor" type= "Control" />
2018-05-28 14:53:15 +02:00
<description >
2021-05-15 23:48:59 +02:00
Adds an editor that allows modifying multiple properties, this must inherit [EditorProperty].
2018-05-28 14:53:15 +02:00
</description>
</method>
</methods>
<constants >
</constants>
</class>