CharacterController.slopeLimit

var slopeLimit : float

Description

The character controllers slope limit in degrees

JavaScript
// Set the controller slope limit to 45.0 degrees
var controller : CharacterController;
controller = GetComponent(CharacterController);
controller.slopeLimit = 45.0;