13 lines
625 B
C#
13 lines
625 B
C#
using UnityEngine;
|
|
using UnityAtoms.BaseAtoms;
|
|
using KitsuneCafe.Input;
|
|
|
|
namespace UnityAtoms.KitsuneCafe.Input
|
|
{
|
|
/// <summary>
|
|
/// Adds Variable Instancer's Variable of type ControlScheme to a Collection or List on OnEnable and removes it on OnDestroy.
|
|
/// </summary>
|
|
[AddComponentMenu("Unity Atoms/Sync Variable Instancer to Collection/Sync ControlScheme Variable Instancer to Collection")]
|
|
[EditorIcon("atom-icon-delicate")]
|
|
public class SyncControlSchemeVariableInstancerToCollection : SyncVariableInstancerToCollection<ControlScheme, ControlSchemeVariable, ControlSchemeVariableInstancer> { }
|
|
}
|