LayerMask.cs 744 B

12345678910111213141516171819202122232425
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2018 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. using System;
  4. namespace BansheeEngine
  5. {
  6. /** @addtogroup Serialization
  7. * @{
  8. */
  9. /// <summary>
  10. /// Changes the editor inspector GUI element of a 64-bit integer to a layer-mask selection drop down.
  11. /// </summary>
  12. [AttributeUsage(AttributeTargets.Field)]
  13. public sealed class LayerMask : Attribute
  14. {
  15. /// <summary>
  16. /// Creates a new layer-mask attribute.
  17. /// </summary>
  18. public LayerMask()
  19. { }
  20. }
  21. /** @} */
  22. }