Custom control for editing properties that can be added to the [EditorInspector]. A custom control for editing properties that can be added to the [EditorInspector]. It is added via [EditorInspectorPlugin]. Called when the read-only status of the property is changed. It may be used to change custom controls into a read-only or modifiable state. When this virtual function is called, you must update your editor. If any of the controls added can gain keyboard focus, add it here. This ensures that focus will be restored if the inspector is refreshed. If one or several properties have changed, this must be called. [param field] is used in case your editor can modify fields separately (as an example, Vector3.x). The [param changing] argument avoids the editor requesting this property to be refreshed (leave as [code]false[/code] if unsure). Gets the edited object. Gets the edited property. If your editor is for a single property (added via [method EditorInspectorPlugin._parse_property]), then this will return the property. Puts the [param editor] control below the property label. The control must be previously added using [method Node.add_child]. Forces refresh of the property display. Used by the inspector, set to [code]true[/code] when the property is checkable. Used by the inspector, set to [code]true[/code] when the property is checked. Used by the inspector, set to [code]true[/code] when the property can be deleted by the user. Used by the inspector, set to [code]true[/code] when the property is drawn with the editor theme's warning color. This is used for editable children's properties. Used by the inspector, set to [code]true[/code] when the property can add keys for animation. Set this property to change the label (if you want to show one). Used by the inspector, set to [code]true[/code] when the property is read-only. Emit it if you want multiple properties modified at the same time. Do not use if added via [method EditorInspectorPlugin._parse_property]. Used by sub-inspectors. Emit it if what was selected was an Object ID. Emitted when the revertability (i.e., whether it has a non-default value and thus is displayed with a revert icon) of a property has changed. Do not emit this manually, use the [method emit_changed] method instead. Emitted when a property was checked. Used internally. Emitted when a property was deleted. Used internally. Emit it if you want to add this value as an animation key (check for keying being enabled first). Emit it if you want to key a property with a single value. Emit it if you want to mark (or unmark) the value of a property for being saved regardless of being equal to the default value. The default value is the one the property will get when the node is just instantiated and can come from an ancestor scene in the inheritance/instantiation chain, a script or a builtin class. If you want a sub-resource to be edited, emit this signal with the resource. Emitted when selected. Used internally.