2
0

CharacterClimbingMode.generated.cs 852 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. namespace BansheeEngine
  5. {
  6. /** @addtogroup Physics
  7. * @{
  8. */
  9. /// <summary>
  10. /// Controls climbing behaviour for a capsule character controller. Normally the character controller will not
  11. /// automatically climb when heights are greater than the assigned step offset. However due to the shape of the capsule it
  12. /// might automatically climb over slightly larger heights than assigned step offsets.
  13. /// </summary>
  14. public enum CharacterClimbingMode
  15. {
  16. /// <summary>
  17. /// Normal behaviour. Capsule character controller will be able to auto-step even above the step offset.
  18. /// </summary>
  19. Normal = 0,
  20. /// <summary>The system will attempt to limit auto-step to the provided step offset and no higher.</summary>
  21. Constrained = 1
  22. }
  23. /** @} */
  24. }