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

15 lines
465 B
C#
Raw Normal View History

using UnityEngine;
namespace UnityAtoms.Mobile
{
2019-10-02 17:38:13 +02:00
[UseIcon("atom-icon-purple")]
[CreateAssetMenu(menuName = "Unity Atoms/Actions/Set Variable Value/TouchUserInput", fileName = "SetTouchUserInputVariableValue")]
public sealed class SetTouchUserInputVariableValue : SetVariableValue<
TouchUserInput,
TouchUserInputVariable,
TouchUserInputReference,
TouchUserInputEvent,
TouchUserInputTouchUserInputEvent>
{ }
}