CharacterNonWalkableMode.generated.cs 591 B

123456789101112131415161718192021
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. namespace BansheeEngine
  5. {
  6. /** @addtogroup Physics
  7. * @{
  8. */
  9. /// <summary>Controls behaviour when a character controller reaches a slope thats larger than its slope offset.</summary>
  10. public enum CharacterNonWalkableMode
  11. {
  12. /// <summary>Character will be prevented from going further, but will be allowed to move laterally.</summary>
  13. Prevent = 0,
  14. /// <summary>Character will be prevented from going further, but also slide down the slope.</summary>
  15. PreventAndSlide = 1
  16. }
  17. /** @} */
  18. }