mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
14 lines
398 B
C#
14 lines
398 B
C#
using UnityEngine;
|
|
|
|
namespace UnityAtoms.SceneMgmt
|
|
{
|
|
[CreateAssetMenu(menuName = "Unity Atoms/Actions/Set Variable Value/SceneField", fileName = "SetSceneFieldVariableValue")]
|
|
public sealed class SetSceneFieldVariableValue : SetVariableValue<
|
|
SceneField,
|
|
SceneFieldVariable,
|
|
SceneFieldReference,
|
|
SceneFieldEvent,
|
|
SceneFieldSceneFieldEvent>
|
|
{ }
|
|
}
|