mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
23 lines
741 B
C#
23 lines
741 B
C#
using UnityEngine;
|
|
using UnityAtoms.BaseAtoms;
|
|
|
|
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// Set variable value Action of type `bool`. Inherits from `SetVariableValue<bool, BoolPair, BoolVariable, BoolConstant, BoolReference, BoolEvent, BoolPairEvent, BoolVariableInstancer>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-purple")]
|
|
[CreateAssetMenu(menuName = "Unity Atoms/Actions/Set Variable Value/Bool", fileName = "SetBoolVariableValue")]
|
|
public sealed class SetBoolVariableValue : SetVariableValue<
|
|
bool,
|
|
BoolPair,
|
|
BoolVariable,
|
|
BoolConstant,
|
|
BoolReference,
|
|
BoolEvent,
|
|
BoolPairEvent,
|
|
BoolBoolFunction,
|
|
BoolVariableInstancer>
|
|
{ }
|
|
}
|