Fix Physics Picking captured Object initialization
Initialize variables when a captured object is known.
This commit is contained in:
parent
a83eb16fba
commit
5b2a5cd2e0
1 changed files with 3 additions and 0 deletions
|
@ -839,6 +839,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