mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-30 20:02:49 -05:00
13 lines
540 B
C#
13 lines
540 B
C#
|
using UnityEngine;
|
||
|
using UnityAtoms.BaseAtoms;
|
||
|
|
||
|
namespace UnityAtoms.BaseAtoms
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Adds Variable Instancer's Variable of type {TYPE} to a Collection or List on OnEnable and removes it on OnDestroy.
|
||
|
/// </summary>
|
||
|
[AddComponentMenu("Unity Atoms/Sync Variable Instancer to Collection/Sync Bool Variable Instancer to Collection")]
|
||
|
[EditorIcon("atom-icon-delicate")]
|
||
|
public class SyncBoolVariableInstancerToCollection : SyncVariableInstancerToCollection<bool, BoolVariable, BoolVariableInstancer> { }
|
||
|
}
|