SceneViewIcon.generated.cs 636 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 are used as 3D icons in the scene view.</summary>
  10. public enum SceneViewIcon
  11. {
  12. Camera = 0,
  13. Light = 1,
  14. AudioSource = 2,
  15. AudioListener = 3,
  16. Decal = 4,
  17. ParticleSystem = 5,
  18. LightProbes = 6,
  19. ReflectionProbe = 7
  20. }
  21. }