SceneWindowIcon.generated.cs 657 B

12345678910111213141516171819202122232425
  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 scene window.</summary>
  10. public enum SceneWindowIcon
  11. {
  12. MoveSnap = 8,
  13. View = 0,
  14. Move = 1,
  15. Rotate = 2,
  16. Scale = 3,
  17. Pivot = 4,
  18. Center = 5,
  19. Local = 6,
  20. World = 7,
  21. RotateSnap = 9,
  22. SceneCameraOptions = 10
  23. }
  24. }