unity-atoms/Packages/Core/Runtime/Actions/SetVariableValue/SetBoolVariableValue.cs
2019-10-14 16:51:54 +02:00

15 lines
371 B
C#

using UnityEngine;
namespace UnityAtoms
{
[EditorIcon("atom-icon-purple")]
[CreateAssetMenu(menuName = "Unity Atoms/Actions/Set Variable Value/Bool", fileName = "SetBoolVariableValue")]
public sealed class SetBoolVariableValue : SetVariableValue<
bool,
BoolVariable,
BoolReference,
BoolEvent,
BoolBoolEvent>
{ }
}