// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
using UnityEngine;
namespace UltimateXR.Attributes
{
///
/// Attribute to hide inspector fields in normal mode while still been shown in debug mode.
/// From https://answers.unity.com/questions/157775/hide-from-inspector-interface-but-not-from-the-deb.html
///
public class HideInNormalInspectorAttribute : PropertyAttribute
{
}
}