hi
Since picking using the PickingLibrary just ignores the getPickable() method, there’s a problem using e.g. transparent geometries which should be ignored by any picking routine.
How about inplementing two new methods in the Node class named
setPickingIgnored(boolean) or setIgnoredByPicking(boolean)
and
boolean getPickingIgnored() or boolean getIgnoredByPicking()
which are respected by PickingLibrary?
Of course this wouln’t increase performance like setPickable/getPickable did for the old picking system, but O(log n) is not beatable and enough. And I just need such a flag.
What do you say?
Qudus