-
-
Notifications
You must be signed in to change notification settings - Fork 251
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
should allow grounding with no movement counter to the up direction #481
base: master
Are you sure you want to change the base?
Conversation
in practice you probably still want to apply a gravity toward the "ground" ? So I'm not sure this matters much ; but an epsilon isn't needed I think indeed. |
While I think this makes sense, more context about this code can be found here:
The commit message is explicitly about forbidding exactly horizontal movement, I'm not sure wheteher it's fully thought out, or was done only to follow the epsilon "mindset" which was already here before. Tagging @janhohenheim if you're around and able clarify ? 🥺 |
@Vrixyz I remember doing that, but I don't remember my reasoning. Tending towards following the epsilons that were already present. |
I still agree with this change, but this only adds a fix when snapping is enabled, so we'll need to gather more information about it before validating. This PR #715 explores alternatives (or additions) |
It looks like we are taking the dot product of the movement and up direction here to ensure the vector is negative to the up direction. Is this necessary? I was using grounded to determine when my character controller can "jump". Allowing this value to be zero or lower allows my character controller lateral movement along a collider that is on the opposed side of my character to that of the up direction.