| 123456789101112131415161718192021222324252627 |
- using System;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- namespace BansheeEngine
- {
- /** @addtogroup Physics
- * @{
- */
- /// <summary>
- /// Controls climbing behaviour for a capsule character controller. Normally the character controller will not
- /// automatically climb when heights are greater than the assigned step offset. However due to the shape of the capsule it
- /// might automatically climb over slightly larger heights than assigned step offsets.
- /// </summary>
- public enum CharacterClimbingMode
- {
- /// <summary>
- /// Normal behaviour. Capsule character controller will be able to auto-step even above the step offset.
- /// </summary>
- Normal = 0,
- /// <summary>The system will attempt to limit auto-step to the provided step offset and no higher.</summary>
- Constrained = 1
- }
- /** @} */
- }
|