diff options
author | SaracenOne <SaracenOne@gmail.com> | 2022-04-29 07:06:48 +0100 |
---|---|---|
committer | SaracenOne <SaracenOne@gmail.com> | 2022-08-23 23:16:13 +0100 |
commit | dd814a0dca13d28edf20d71c79bb0a0d99954685 (patch) | |
tree | 07f0db834590cc7c16630fc52cdd918d3f52bdfd /doc/classes | |
parent | 34aa6b06a7002469ee54541067ce3c39bf42815a (diff) |
Disable editing properties in foreign resources
from imported scenes or objects returning
true from a function named '_is_read_only' and
disable resaving imported resources.
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/EditorResourcePicker.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/EditorResourcePicker.xml b/doc/classes/EditorResourcePicker.xml index c88a7b75b0..4182ab3c16 100644 --- a/doc/classes/EditorResourcePicker.xml +++ b/doc/classes/EditorResourcePicker.xml @@ -62,9 +62,9 @@ </signal> <signal name="resource_selected"> <param index="0" name="resource" type="Resource" /> - <param index="1" name="edit" type="bool" /> + <param index="1" name="inspect" type="bool" /> <description> - Emitted when the resource value was set and user clicked to edit it. When [param edit] is [code]true[/code], the signal was caused by the context menu "Edit" option. + Emitted when the resource value was set and user clicked to edit it. When [param inspect] is [code]true[/code], the signal was caused by the context menu "Edit" or "Inspect" option. </description> </signal> </signals> |