mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
13 lines
385 B
C#
13 lines
385 B
C#
using UnityEditor;
|
|
using UnityAtoms.Editor;
|
|
using UnityAtoms.SceneMgmt;
|
|
|
|
namespace UnityAtoms.SceneMgmt.Editor
|
|
{
|
|
/// <summary>
|
|
/// Variable Inspector of type `SceneField`. Inherits from `AtomVariableEditor`
|
|
/// </summary>
|
|
[CustomEditor(typeof(SceneFieldVariable))]
|
|
public sealed class SceneFieldVariableEditor : AtomVariableEditor<SceneField, SceneFieldPair> { }
|
|
}
|