From b46672db722836182092d0972212d0c03932d430 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gilles=20Roudi=C3=A8re?= Date: Wed, 28 Apr 2021 17:39:57 +0200 Subject: Provide a way to hook into Inspectors UndoRedo. --- doc/classes/EditorPlugin.xml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'doc/classes') diff --git a/doc/classes/EditorPlugin.xml b/doc/classes/EditorPlugin.xml index 61f1761249..f6f51df7c0 100644 --- a/doc/classes/EditorPlugin.xml +++ b/doc/classes/EditorPlugin.xml @@ -157,6 +157,16 @@ Registers a custom translation parser plugin for extracting translatable strings from custom files. + + + + + + + Hooks a callback into the undo/redo action creation when a property is modified in the inspector. This allows, for example, to save other properties that may be lost when a given property is modified. + The callback should have 4 arguments: [Object] [code]undo_redo[/code], [Object] [code]modified_object[/code], [String] [code]property[/code] and [Variant] [code]new_value[/code]. They are, respectively, the [UndoRedo] object used by the inspector, the currently modified object, the name of the modified property and the new value the property is about to take. + + @@ -622,6 +632,15 @@ Removes a registered custom translation parser plugin. + + + + + + + Removes a callback previsously added by [method add_undo_redo_inspector_hook_callback]. + + -- cgit v1.2.3