mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 00:28:23 -05:00
14 lines
612 B
C#
14 lines
612 B
C#
using UnityEngine;
|
|
using UnityAtoms.BaseAtoms;
|
|
using UnityAtoms.Mobile;
|
|
|
|
namespace UnityAtoms.Mobile
|
|
{
|
|
/// <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 TouchUserInput Variable Instancer to Collection")]
|
|
[EditorIcon("atom-icon-delicate")]
|
|
public class SyncTouchUserInputVariableInstancerToCollection : SyncVariableInstancerToCollection<TouchUserInput, TouchUserInputVariable, TouchUserInputVariableInstancer> { }
|
|
}
|