AnimationWindowIcon.generated.cs 634 B

12345678910111213141516171819202122
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //************** Copyright (c) 2016-2019 Marko Pintera ([email protected]). All rights reserved. *******************//
  3. using System;
  4. using System.Runtime.CompilerServices;
  5. using System.Runtime.InteropServices;
  6. using bs;
  7. namespace bs.Editor
  8. {
  9. /// <summary>Types of icons that may be displayed in the animation editor window.</summary>
  10. public enum AnimationWindowIcon
  11. {
  12. Play = 0,
  13. Record = 1,
  14. FrameForward = 2,
  15. FrameBack = 3,
  16. AddKeyframe = 4,
  17. AddEvent = 5,
  18. Keyframe = 6,
  19. Event = 7
  20. }
  21. }