CurveDrawOption.generated.cs 611 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. namespace BansheeEngine
  5. {
  6. /** @addtogroup GUIEditor
  7. * @{
  8. */
  9. /// <summary>Controls which elements should a GUICurves object draw.</summary>
  10. public enum CurveDrawOptions
  11. {
  12. /// <summary>Draws markers at specific time intervals.</summary>
  13. DrawMarkers = 1,
  14. /// <summary>Draws elements representing individual keyframes.</summary>
  15. DrawKeyframes = 2,
  16. /// <summary>Draws curves and the area between them. Only relevant if only two curves are provided for drawing.</summary>
  17. DrawRange = 4
  18. }
  19. /** @} */
  20. }