unity-atoms/Packages/Mobile/Runtime/Actions/SetVariableValue/SetTouchUserInputVariableValue.cs

20 lines
807 B
C#
Raw Normal View History

using UnityEngine;
2019-10-15 21:10:57 +02:00
using UnityAtoms.Mobile;
namespace UnityAtoms.Mobile
{
2019-10-15 03:07:22 +02:00
/// <summary>
/// Set variable value Action of type `TouchUserInput`. Inherits from `SetVariableValue&lt;TouchUserInput, TouchUserInputVariable, TouchUserInputConstant, TouchUserInputReference, TouchUserInputEvent, TouchUserInputTouchUserInputEvent&gt;`.
2019-10-15 03:07:22 +02:00
/// </summary>
2019-10-14 16:51:54 +02:00
[EditorIcon("atom-icon-purple")]
[CreateAssetMenu(menuName = "Unity Atoms/Actions/Set Variable Value/TouchUserInput", fileName = "SetTouchUserInputVariableValue")]
public sealed class SetTouchUserInputVariableValue : SetVariableValue<
TouchUserInput,
TouchUserInputVariable,
TouchUserInputConstant,
TouchUserInputReference,
TouchUserInputEvent,
TouchUserInputTouchUserInputEvent>
{ }
}