diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-03-23 00:13:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-23 00:13:09 +0100 |
commit | 7acd62886de45cbccac63648963c9b0b16b825ab (patch) | |
tree | 4028ca408b69f65c9d7b9936d4ba04c156d2f028 /editor | |
parent | 6a84ade31693e0bbffe21e66edfd16c0af1b83c1 (diff) | |
parent | 0e4c34ac657d4d33ccfc8c1942e3303b2df36310 (diff) |
Merge pull request #47263 from nekomatata/fix-physical-bone-gizmo
Fix PhysicalBone gizmo not showing
Diffstat (limited to 'editor')
-rw-r--r-- | editor/node_3d_editor_gizmos.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/node_3d_editor_gizmos.cpp b/editor/node_3d_editor_gizmos.cpp index 64cf9a7bb7..7dcabafece 100644 --- a/editor/node_3d_editor_gizmos.cpp +++ b/editor/node_3d_editor_gizmos.cpp @@ -3531,7 +3531,7 @@ String CollisionObject3DGizmoPlugin::get_gizmo_name() const { } int CollisionObject3DGizmoPlugin::get_priority() const { - return -1; + return -2; } void CollisionObject3DGizmoPlugin::redraw(EditorNode3DGizmo *p_gizmo) { |