canto/Assets/Scripts/Input/Atoms/Actions/SetVariableValue/SetControlSchemeVariableValue.cs
2025-10-02 15:28:03 -04:00

23 lines
972 B
C#

using UnityEngine;
using UnityAtoms.BaseAtoms;
using KitsuneCafe.Input;
namespace UnityAtoms.KitsuneCafe.Input
{
/// <summary>
/// Set variable value Action of type `ControlScheme`. Inherits from `SetVariableValue&lt;ControlScheme, ControlSchemePair, ControlSchemeVariable, ControlSchemeConstant, ControlSchemeReference, ControlSchemeEvent, ControlSchemePairEvent, ControlSchemeVariableInstancer&gt;`.
/// </summary>
[EditorIcon("atom-icon-purple")]
[CreateAssetMenu(menuName = "Unity Atoms/Actions/Set Variable Value/ControlScheme", fileName = "SetControlSchemeVariableValue")]
public sealed class SetControlSchemeVariableValue : SetVariableValue<
ControlScheme,
ControlSchemePair,
ControlSchemeVariable,
ControlSchemeConstant,
ControlSchemeReference,
ControlSchemeEvent,
ControlSchemePairEvent,
ControlSchemeControlSchemeFunction,
ControlSchemeVariableInstancer>
{ }
}