-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Picking broken for geometry types with back-face culling that have no volume #1333
Comments
@bagnell no rush here but let's look at this at some point since I wouldn't expect these to get culled in the pick pass but not the color pass. |
This is going to be a bigger issue when |
@mramato as a workaround, use |
The problem is I'm batching both flat polygons and extruded polygons into the same primitive. Won't |
Yes, I would sort by these; non-extruded polygons are not closed, and if they are drawn at altitude, they will disappear when looking at them from the ground so we will have to sort anyway. |
Well that sucks. I'll add it to my to-do. |
Would you be against adding a |
That is OK with me. |
As of b23, picking no longer works for geometry types that have no volume (CircleGeometry, ExtentGeometry, PolygonGeometry...) when the appearance has the option 'closed : true'. If the geometry is extruded and has the same appearance, picking works.
Sandcastle Example: picking works for green and blue circle but not red circle.
The text was updated successfully, but these errors were encountered: