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