-
-
Notifications
You must be signed in to change notification settings - Fork 451
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
Fix cylinder marker has a 2D colshape instead of 3D and Fix collision radius not matching visual #3436
base: master
Are you sure you want to change the base?
Conversation
The spherical colshape requires a bit bigger radius than the circular one. Otherwise, there is a high chance of the miss in some of the edge conditions. |
My opinion is that instead of this PR it's better to extend the circle colshape and add function |
the problem will need types of col which can fit into the drawn shapes correctly and the ColCircle has no height limit it goes to infinity see |
Yeah, I see. But currently this PR is rather a temporary patch, not the comprehensive solution. |
@tederis I have used ColTube instead of of sphere, I did some math calculations to try to adjust the size |
Looks pretty accurate. So maybe it's better to stick with tubes? Radiuses bigger than 100 are used rarely. |
I don't think that a collision must 100% match the corresponding visual part. As was mentioned above collisions are a bit larger in SA. So you can simplify the formula. |
Fixes #516 #331 #3435 #870
using tubes for both client and server
by trying to adjust the size to fit the visual and focuses on improving accuracy
this PR should improve isElementWithinMarker detect