diff options
author | Ryan Roden-Corrent <ryan@rcorre.net> | 2020-07-17 14:45:54 -0400 |
---|---|---|
committer | Ryan Roden-Corrent <ryan@rcorre.net> | 2020-07-21 18:18:33 -0400 |
commit | c6919a13da8e6b019be49aae9a7f0ebb28ef2c5e (patch) | |
tree | 8b6a33330613c5aa5733ea7b59e4f5d2ed1929e5 /doc | |
parent | a5fb4451210625702474a8fac1dd880e78a409e9 (diff) |
Fix bound return type on get_priority.
Also adds a description explaining gizmo priority.
Inferred from:
https://github.com/rcorre/godot/blob/e4363d001afd3e94e1c02f8af9291087dab7408e/editor/plugins/spatial_editor_plugin.cpp#L5867-L5880
https://github.com/rcorre/godot/blob/e4363d001afd3e94e1c02f8af9291087dab7408e/editor/plugins/spatial_editor_plugin.cpp#L6462-L6470
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/EditorNode3DGizmoPlugin.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/EditorNode3DGizmoPlugin.xml b/doc/classes/EditorNode3DGizmoPlugin.xml index b81281b5b6..51130d6e45 100644 --- a/doc/classes/EditorNode3DGizmoPlugin.xml +++ b/doc/classes/EditorNode3DGizmoPlugin.xml @@ -136,7 +136,7 @@ </description> </method> <method name="get_priority" qualifiers="virtual"> - <return type="String"> + <return type="int"> </return> <description> Override this method to set the gizmo's priority. Higher values correspond to higher priority. If a gizmo with higher priority conflicts with another gizmo, only the gizmo with higher priority will be used. |