I'm trying to apply a force to a ball-like object that is parallel to the surface that it is currently contacting. I'm doing this by getting the normal of the contact point, then taking the cross product of this normal and Vector3.forward. This works fine; then only problem is that contact.normal does not update throughout the duration of OnCollisionStay; the only normal vector I am able to get is the one from the initial collsion. Is there any way to get a continually updating normal vector between two colliders? Thanks in advance.
↧