We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8ea289 commit ff27558Copy full SHA for ff27558
Sources/Rendering/Core/Picker/index.js
@@ -237,10 +237,8 @@ function vtkPicker(publicAPI, model) {
237
const mapper = prop.getMapper();
238
pickable = prop.getNestedPickable() && prop.getNestedVisibility();
239
240
- if (!mapper.isA('vtkVolumeMapper')) {
241
- if (prop.getProperty().getOpacity() <= 0.0) {
242
- pickable = false;
243
- }
+ if (prop.getProperty().getOpacity?.() <= 0.0) {
+ pickable = false;
244
}
245
246
if (pickable) {
0 commit comments