| 12345678910111213141516171819202122 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //************** Copyright (c) 2016-2019 Marko Pintera ([email protected]). All rights reserved. *******************//
- using System;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- using bs;
- namespace bs.Editor
- {
- /// <summary>Types of icons that are used as 3D icons in the scene view.</summary>
- public enum SceneViewIcon
- {
- Camera = 0,
- Light = 1,
- AudioSource = 2,
- AudioListener = 3,
- Decal = 4,
- ParticleSystem = 5,
- LightProbes = 6,
- ReflectionProbe = 7
- }
- }
|