HingeJointFlag.generated.cs 392 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>Flags that control hinge joint options.</summary>
  10. public enum HingeJointFlag
  11. {
  12. /// <summary>Joint limit is enabled.</summary>
  13. Limit = 1,
  14. /// <summary>Joint drive is enabled.</summary>
  15. Drive = 2
  16. }
  17. /** @} */
  18. }