unity-atoms/Packages/Mobile/Runtime/SyncVariableInstancerToCollection/SyncTouchUserInputVariableInstancerToCollection.cs
2020-03-19 08:41:44 +01:00

14 lines
620 B
C#

using UnityEngine;
using UnityAtoms.BaseAtoms;
using UnityAtoms.Mobile;
namespace UnityAtoms.Mobile
{
/// <summary>
/// Adds Variable Instancer's Variable of type TouchUserInput to a Collection or List on OnEnable and removes it on OnDestroy.
/// </summary>
[AddComponentMenu("Unity Atoms/Sync Variable Instancer to Collection/Sync TouchUserInput Variable Instancer to Collection")]
[EditorIcon("atom-icon-delicate")]
public class SyncTouchUserInputVariableInstancerToCollection : SyncVariableInstancerToCollection<TouchUserInput, TouchUserInputVariable, TouchUserInputVariableInstancer> { }
}