Enumerations.cs 1005 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //-----------------------------------------------------------------------------
  2. // Enumerations.cs
  3. //
  4. // Microsoft XNA Community Game Platform
  5. // Copyright (C) Microsoft Corporation. All rights reserved.
  6. //-----------------------------------------------------------------------------
  7. using System;
  8. using Microsoft.Xna.Framework;
  9. namespace Xna.Tools
  10. {
  11. [Flags]
  12. public enum EditCurveSelections
  13. {
  14. None = 0,
  15. TangentIn = (1 << 0),
  16. TangentOut = (1 << 1),
  17. Key = (1 << 2),
  18. Tangents = TangentIn|TangentOut,
  19. }
  20. public enum CurveSmoothness
  21. {
  22. Coarse,
  23. Rough,
  24. Medium,
  25. Fine
  26. }
  27. public enum EditCurveView
  28. {
  29. Always,
  30. Never,
  31. ActiveOnly,
  32. OnActiveKeys,
  33. }
  34. public enum EditCurveTangent
  35. {
  36. Flat = CurveTangent.Flat,
  37. Linear = CurveTangent.Linear,
  38. Smooth = CurveTangent.Smooth,
  39. Stepped = 10,
  40. Fixed = 11
  41. }
  42. }