AnimWrapMode.generated.cs 501 B

123456789101112131415161718192021
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. namespace BansheeEngine
  5. {
  6. /** @addtogroup Animation
  7. * @{
  8. */
  9. /// <summary>Determines how an animation clip behaves when it reaches the end.</summary>
  10. public enum AnimWrapMode
  11. {
  12. /// <summary>Loop around to the beginning/end when the last/first frame is reached.</summary>
  13. Loop = 0,
  14. /// <summary>Clamp to end/beginning, keeping the last/first frame active.</summary>
  15. Clamp = 1
  16. }
  17. /** @} */
  18. }