Not Blocked ((install)) | Slope
// No artificial blocking even at low speed if (currentVelocity.magnitude < 0.01f && slopeAngle < maxWalkableAngle)
EnterSlide();
// No speed cap on slopes float slopeAccel = gravity * Mathf.Sin(slopeAngle * Mathf.Deg2Rad) * deltaTime; currentVelocity += slopeDirection * slopeAccel; slope not blocked