{
if (_protagonistScript.lastHit == null)
return false;
float currentSlope = Vector3.Angle(Vector3.up, _protagonistScript.lastHit.normal);
return (currentSlope >= _characterController.slopeLimit);
}