-
SituationWhen doing scene query, I have a box and the overlap testing zone is a custom cone. What I tried
|
Beta Was this translation helpful? Give feedback.
Answered by
vreutskyy
Aug 14, 2023
Replies: 1 comment 5 replies
-
Hello. It would be great if you could make a compilable code snippet reproducing this issue. Thanks |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I see, thanks. Can we try one more fix?
This line:
PhysX/physx/source/geomutils/src/gjk/GuGJKSimplex.h
Line 311 in e8c8deb
from
if(FAllGrtrOrEq(eps, area))
to
if(FAllGrtrOrEq(FMul(eps, eps), area))
Thanks