2020-03-19 08:20:15 +01:00
|
|
|
using UnityEngine;
|
|
|
|
using UnityAtoms.BaseAtoms;
|
|
|
|
|
|
|
|
namespace UnityAtoms.BaseAtoms
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-03-19 08:41:44 +01:00
|
|
|
/// Adds Variable Instancer's Variable of type int to a Collection or List on OnEnable and removes it on OnDestroy.
|
2020-03-19 08:20:15 +01:00
|
|
|
/// </summary>
|
|
|
|
[AddComponentMenu("Unity Atoms/Sync Variable Instancer to Collection/Sync Int Variable Instancer to Collection")]
|
|
|
|
[EditorIcon("atom-icon-delicate")]
|
|
|
|
public class SyncIntVariableInstancerToCollection : SyncVariableInstancerToCollection<int, IntVariable, IntVariableInstancer> { }
|
|
|
|
}
|