| 12345678910111213141516171819202122232425 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2018 Marko Pintera ([email protected]). All rights reserved. **********************//
- using System;
- namespace BansheeEngine
- {
- /** @addtogroup Serialization
- * @{
- */
- /// <summary>
- /// Changes the editor inspector GUI element of a 64-bit integer to a layer-mask selection drop down.
- /// </summary>
- [AttributeUsage(AttributeTargets.Field)]
- public sealed class LayerMask : Attribute
- {
- /// <summary>
- /// Creates a new layer-mask attribute.
- /// </summary>
- public LayerMask()
- { }
- }
- /** @} */
- }
|