using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; namespace BansheeEngine { /** @addtogroup Physics * @{ */ /// /// 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. /// public enum CharacterClimbingMode { /// /// Normal behaviour. Capsule character controller will be able to auto-step even above the step offset. /// Normal = 0, /// The system will attempt to limit auto-step to the provided step offset and no higher. Constrained = 1 } /** @} */ }