Hi again, I'm using AC 1.82.5 and Unity 2022.3.57f1 and a player character with Root Motion applied and using the Unity Character Controller.
The bug is that when turning on root motion, isGrounded never returns true. This is apparently an issue with Unity's character controller isGrounded check, but maybe there's a solution I'm missing? Thanks for the help.
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
Using a Capsule Collider instead of a Character Controller solved the issue apparently. Unfortunately, I really need the character controller for other scripts.
I solved the issue for now by adding a capsule collider, setting it to trigger and commenting the line that references the CharacterController.isGrounded part in char.cs
Using the same calculations from the Capsule in the Character Controller instead of relying on the IsGrounded method from Unity solved the problem for now.
I'll look into this, thanks.
Thank you Chris!