Plugin for adding custom property editors on inspector.
</brief_description>
<description>
[EditorInspectorPlugin] allows adding custom property editors to [EditorInspector].
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.
On each of these calls, the "add" functions can be called.
To use [EditorInspectorPlugin], register it using the [method EditorPlugin.add_inspector_plugin] method first.
Adds an editor that allows modifying multiple properties. The [code]editor[/code] control must extend [EditorProperty].
</description>
</method>
<methodname="can_handle"qualifiers="virtual">
<returntype="bool"/>
<argumentindex="0"name="object"type="Object"/>
<description>
Returns [code]true[/code] if this object can be handled by this plugin.
</description>
</method>
<methodname="parse_begin"qualifiers="virtual">
<returntype="void"/>
<argumentindex="0"name="object"type="Object"/>
<description>
Called to allow adding controls at the beginning of the list.
</description>
</method>
<methodname="parse_category"qualifiers="virtual">
<returntype="void"/>
<argumentindex="0"name="object"type="Object"/>
<argumentindex="1"name="category"type="String"/>
<description>
Called to allow adding controls at the beginning of the category.
</description>
</method>
<methodname="parse_end"qualifiers="virtual">
<returntype="void"/>
<description>
Called to allow adding controls at the end of the list.
</description>
</method>
<methodname="parse_property"qualifiers="virtual">
<returntype="bool"/>
<argumentindex="0"name="object"type="Object"/>
<argumentindex="1"name="type"type="int"/>
<argumentindex="2"name="path"type="String"/>
<argumentindex="3"name="hint"type="int"/>
<argumentindex="4"name="hint_text"type="String"/>
<argumentindex="5"name="usage"type="int"/>
<description>
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.