unity-atoms/Packages/SceneMgmt/Editor/Drawers/Constants/SceneFieldConstantDrawer.cs
2019-10-15 22:39:20 +02:00

14 lines
442 B
C#

#if UNITY_2019_1_OR_NEWER
using UnityEditor;
using UnityAtoms.Editor;
namespace UnityAtoms.SceneMgmt.Editor
{
/// <summary>
/// Constant property drawer of type `SceneField`. Inherits from `AtomDrawer&lt;SceneFieldConstant&gt;`. Only availble in `UNITY_2019_1_OR_NEWER`.
/// </summary>
[CustomPropertyDrawer(typeof(SceneFieldConstant))]
public class SceneFieldConstantDrawer : AtomDrawer<SceneFieldConstant> { }
}
#endif