RenderBinDetails and annotation groups... #1930
Unanswered
keince
asked this question in
Support Q&A
Replies: 1 comment 1 reply
-
You can try to close depth test: |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have two groups where each group has annotation type TrackNode for the nodes in each group. I need to have one group to always render on top of the other group.
For group A, I set
groupA->getOrCreateStateSet()->setRenderBinDetails(3, "RenderBin");
mapNode->addChild(groupA);
For group B, I set
groupB->getOrCreateStateSet()->setRenderBinDetails(INT_MAX, "RenderBin");
mapNode->addChild(groupB);
so that group B is always rendered on top of group A.
This seems to have no effect. No matter what I do, group A is always on top of group B.
Is there any way I can get group B to render on top of group A?
Thanks
Shayne
Beta Was this translation helpful? Give feedback.
All reactions