86 lines
2.1 KiB
C#
86 lines
2.1 KiB
C#
![]() |
//------------------------------------------------------------------------------
|
||
|
// <auto-generated>
|
||
|
// This code was auto-generated by com.unity.inputsystem:InputActionCodeGenerator
|
||
|
// version 1.6.1
|
||
|
// from Assets/02.Scritps/BlueWater.inputactions
|
||
|
//
|
||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||
|
// the code is regenerated.
|
||
|
// </auto-generated>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
using System;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine.InputSystem;
|
||
|
using UnityEngine.InputSystem.Utilities;
|
||
|
|
||
|
public partial class @BlueWater: IInputActionCollection2, IDisposable
|
||
|
{
|
||
|
public InputActionAsset asset { get; }
|
||
|
public @BlueWater()
|
||
|
{
|
||
|
asset = InputActionAsset.FromJson(@"{
|
||
|
""name"": ""BlueWater"",
|
||
|
""maps"": [],
|
||
|
""controlSchemes"": []
|
||
|
}");
|
||
|
}
|
||
|
|
||
|
public void Dispose()
|
||
|
{
|
||
|
UnityEngine.Object.Destroy(asset);
|
||
|
}
|
||
|
|
||
|
public InputBinding? bindingMask
|
||
|
{
|
||
|
get => asset.bindingMask;
|
||
|
set => asset.bindingMask = value;
|
||
|
}
|
||
|
|
||
|
public ReadOnlyArray<InputDevice>? devices
|
||
|
{
|
||
|
get => asset.devices;
|
||
|
set => asset.devices = value;
|
||
|
}
|
||
|
|
||
|
public ReadOnlyArray<InputControlScheme> controlSchemes => asset.controlSchemes;
|
||
|
|
||
|
public bool Contains(InputAction action)
|
||
|
{
|
||
|
return asset.Contains(action);
|
||
|
}
|
||
|
|
||
|
public IEnumerator<InputAction> GetEnumerator()
|
||
|
{
|
||
|
return asset.GetEnumerator();
|
||
|
}
|
||
|
|
||
|
IEnumerator IEnumerable.GetEnumerator()
|
||
|
{
|
||
|
return GetEnumerator();
|
||
|
}
|
||
|
|
||
|
public void Enable()
|
||
|
{
|
||
|
asset.Enable();
|
||
|
}
|
||
|
|
||
|
public void Disable()
|
||
|
{
|
||
|
asset.Disable();
|
||
|
}
|
||
|
|
||
|
public IEnumerable<InputBinding> bindings => asset.bindings;
|
||
|
|
||
|
public InputAction FindAction(string actionNameOrId, bool throwIfNotFound = false)
|
||
|
{
|
||
|
return asset.FindAction(actionNameOrId, throwIfNotFound);
|
||
|
}
|
||
|
|
||
|
public int FindBinding(InputBinding bindingMask, out InputAction action)
|
||
|
{
|
||
|
return asset.FindBinding(bindingMask, out action);
|
||
|
}
|
||
|
}
|