13 lines
398 B
C#
13 lines
398 B
C#
|
|
namespace SimpleInputNamespace
|
|||
|
|
{
|
|||
|
|
public class AxisInputSwipeGesture : SwipeGestureBase<string, float>
|
|||
|
|
{
|
|||
|
|
public SimpleInput.AxisInput axis = new SimpleInput.AxisInput();
|
|||
|
|
public float value = 1f;
|
|||
|
|
|
|||
|
|
protected override BaseInput<string, float> Input { get { return axis; } }
|
|||
|
|
protected override float Value { get { return value; } }
|
|||
|
|
|
|||
|
|
public override int Priority { get { return 1; } }
|
|||
|
|
}
|
|||
|
|
}
|