20 lines
782 B
C#
20 lines
782 B
C#
using UnityEngine;
|
|
using UnityAtoms.BaseAtoms;
|
|
using KitsuneCafe.Input;
|
|
|
|
namespace UnityAtoms.KitsuneCafe.Input
|
|
{
|
|
/// <summary>
|
|
/// Variable Instancer of type `ControlScheme`. Inherits from `AtomVariableInstancer<ControlSchemeVariable, ControlSchemePair, ControlScheme, ControlSchemeEvent, ControlSchemePairEvent, ControlSchemeControlSchemeFunction>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-hotpink")]
|
|
[AddComponentMenu("Unity Atoms/Variable Instancers/ControlScheme Variable Instancer")]
|
|
public class ControlSchemeVariableInstancer : AtomVariableInstancer<
|
|
ControlSchemeVariable,
|
|
ControlSchemePair,
|
|
ControlScheme,
|
|
ControlSchemeEvent,
|
|
ControlSchemePairEvent,
|
|
ControlSchemeControlSchemeFunction>
|
|
{ }
|
|
}
|