ProjectLibraryIcon.generated.cs 792 B

12345678910111213141516171819202122232425262728293031
  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 valid icons used when viewing the project library.</summary>
  10. public enum ProjectLibraryIcon
  11. {
  12. ShaderInclude = 8,
  13. Folder = 0,
  14. Mesh = 1,
  15. Font = 2,
  16. Texture = 3,
  17. PlainText = 4,
  18. ScriptCode = 5,
  19. SpriteTexture = 6,
  20. Shader = 7,
  21. Material = 9,
  22. Prefab = 10,
  23. GUISkin = 11,
  24. PhysicsMaterial = 12,
  25. PhysicsMesh = 13,
  26. AudioClip = 14,
  27. AnimationClip = 15,
  28. VectorField = 16
  29. }
  30. }