From f931093812b40b2c38f5b320c4b31ce7a7d30dd9 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Wed, 4 Oct 2017 21:58:13 -0300 Subject: Fix IK Bone Drag on Viewport --- editor/plugins/canvas_item_editor_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/plugins/canvas_item_editor_plugin.cpp b/editor/plugins/canvas_item_editor_plugin.cpp index 1aa24c8172..1d9b6d38fa 100644 --- a/editor/plugins/canvas_item_editor_plugin.cpp +++ b/editor/plugins/canvas_item_editor_plugin.cpp @@ -992,7 +992,7 @@ void CanvasItemEditor::_prepare_drag(const Point2 &p_click_pos) { se->pre_drag_xform = canvas_item->get_global_transform_with_canvas(); } - if (selection.size() == 1 && Object::cast_to(selection[0])) { + if (selection.size() == 1 && Object::cast_to(selection[0]) && bone_ik_list.size() == 0) { drag = DRAG_NODE_2D; drag_point_from = Object::cast_to(selection[0])->get_global_position(); } else { -- cgit v1.2.3