Merge pull request #78383 from Sauermann/fix-physics-object-init
Fix Physics Picking captured Object initialization
This commit is contained in:
commit
223370cb64
1 changed files with 3 additions and 0 deletions
|
@ -841,6 +841,9 @@ void Viewport::_process_picking() {
|
|||
capture_object = Object::cast_to<CollisionObject3D>(ObjectDB::get_instance(physics_object_capture));
|
||||
if (!capture_object || !camera_3d || (mb.is_valid() && mb->get_button_index() == MouseButton::LEFT && !mb->is_pressed())) {
|
||||
physics_object_capture = ObjectID();
|
||||
} else {
|
||||
last_id = physics_object_capture;
|
||||
last_object = capture_object;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue