mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 00:28:23 -05:00
13 lines
426 B
C#
13 lines
426 B
C#
|
using UnityEngine;
|
||
|
using UnityAtoms.SceneMgmt;
|
||
|
|
||
|
namespace UnityAtoms.SceneMgmt
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Constant of type `SceneField`. Inherits from `AtomBaseVariable<SceneField>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-teal")]
|
||
|
[CreateAssetMenu(menuName = "Unity Atoms/Constants/SceneField", fileName = "SceneFieldConstant")]
|
||
|
public sealed class SceneFieldConstant : AtomBaseVariable<SceneField> { }
|
||
|
}
|