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 string 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 String Variable Instancer to Collection")]
|
|
|
|
[EditorIcon("atom-icon-delicate")]
|
|
|
|
public class SyncStringVariableInstancerToCollection : SyncVariableInstancerToCollection<string, StringVariable, StringVariableInstancer> { }
|
|
|
|
}
|