mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 00:28:23 -05:00
22 lines
638 B
C#
22 lines
638 B
C#
using UnityEngine;
|
|
using UnityAtoms.BaseAtoms;
|
|
|
|
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// Variable Instancer of type `bool`. Inherits from `AtomVariableInstancer<BoolVariable, BoolPair, bool, BoolEvent, BoolPairEvent, BoolBoolFunction>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-hotpink")]
|
|
[AddComponentMenu("Unity Atoms/Variable Instancers/Bool Variable Instancer")]
|
|
public class BoolVariableInstancer : AtomVariableInstancer<
|
|
BoolVariable,
|
|
BoolPair,
|
|
bool,
|
|
BoolEvent,
|
|
BoolPairEvent,
|
|
BoolBoolFunction,
|
|
AtomCollection,
|
|
AtomList>
|
|
{ }
|
|
}
|