2020-03-19 08:20:15 +01:00
|
|
|
using UnityAtoms.BaseAtoms;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace UnityAtoms.BaseAtoms
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-03-19 08:41:44 +01:00
|
|
|
/// Adds Variable Instancer's Variable of type Vector2 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 Vector2 Variable Instancer to Collection")]
|
|
|
|
[EditorIcon("atom-icon-delicate")]
|
|
|
|
public class SyncVector2VariableInstancerToCollection : SyncVariableInstancerToCollection<Vector2, Vector2Variable, Vector2VariableInstancer> { }
|
|
|
|
}
|