diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-08 11:54:25 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-08 11:54:25 +0200 |
commit | b4cf5c51ca3c8260da5ec2cb99701e7a528397a9 (patch) | |
tree | 17001c86ad2cc9c7efdeadfc07f22410468782a4 | |
parent | baad99220ec3e52f17d32382221714ed0d6e73b4 (diff) | |
parent | 6cdf5eff21e276dc5f153fb206068755fbb8b394 (diff) | |
download | redot-engine-b4cf5c51ca3c8260da5ec2cb99701e7a528397a9.tar.gz |
Merge pull request #81445 from timothyqiu/default-layout
Fix description of dock slot usage in the documentation
-rw-r--r-- | doc/classes/EditorPlugin.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/classes/EditorPlugin.xml b/doc/classes/EditorPlugin.xml index 08f8cf70e9..8aea15c087 100644 --- a/doc/classes/EditorPlugin.xml +++ b/doc/classes/EditorPlugin.xml @@ -5,6 +5,7 @@ </brief_description> <description> Plugins are used by the editor to extend functionality. The most common types of plugins are those which edit a given node or resource type, import plugins and export plugins. See also [EditorScript] to add functions to the editor. + [b]Note:[/b] Some names in this class contain "left" or "right" (e.g. [constant DOCK_SLOT_LEFT_UL]). These APIs assume left-to-right layout, and would be backwards when using right-to-left layout. These names are kept for compatibility reasons. </description> <tutorials> <link title="Editor plugins documentation index">$DOCS_URL/tutorials/plugins/editor/index.html</link> @@ -824,13 +825,13 @@ Dock slot, left side, bottom-right (in default layout includes FileSystem dock). </constant> <constant name="DOCK_SLOT_RIGHT_UL" value="4" enum="DockSlot"> - Dock slot, right side, upper-left (empty in default layout). + Dock slot, right side, upper-left (in default layout includes Inspector, Node, and History docks). </constant> <constant name="DOCK_SLOT_RIGHT_BL" value="5" enum="DockSlot"> Dock slot, right side, bottom-left (empty in default layout). </constant> <constant name="DOCK_SLOT_RIGHT_UR" value="6" enum="DockSlot"> - Dock slot, right side, upper-right (in default layout includes Inspector, Node and History docks). + Dock slot, right side, upper-right (empty in default layout). </constant> <constant name="DOCK_SLOT_RIGHT_BR" value="7" enum="DockSlot"> Dock slot, right side, bottom-right (empty in default layout). |