mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 09:08:23 -05:00
19 lines
751 B
C#
19 lines
751 B
C#
using UnityEngine;
|
|
using UnityAtoms.Mobile;
|
|
|
|
namespace UnityAtoms.Mobile
|
|
{
|
|
/// <summary>
|
|
/// Set variable value Action of type `TouchUserInput`. Inherits from `SetVariableValue<TouchUserInput, TouchUserInputVariable, TouchUserInputReference, TouchUserInputEvent, TouchUserInputTouchUserInputEvent>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-purple")]
|
|
[CreateAssetMenu(menuName = "Unity Atoms/Actions/Set Variable Value/TouchUserInput", fileName = "SetTouchUserInputVariableValue")]
|
|
public sealed class SetTouchUserInputVariableValue : SetVariableValue<
|
|
TouchUserInput,
|
|
TouchUserInputVariable,
|
|
TouchUserInputReference,
|
|
TouchUserInputEvent,
|
|
TouchUserInputTouchUserInputEvent>
|
|
{ }
|
|
}
|