arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/XR/Devices/GoogleVR.cs

65 lines
2.6 KiB
C#
Raw Normal View History

2025-09-25 22:01:28 +02:00
#if !DISABLE_BUILTIN_INPUT_SYSTEM_GOOGLEVR
// Docs generation is skipped because these are intended to be replaced with the com.unity.xr.googlevr package.
using UnityEngine.InputSystem.Controls;
using UnityEngine.InputSystem.Layouts;
using UnityEngine.InputSystem.XR;
namespace Unity.XR.GoogleVr
{
/// <summary>
/// A head-mounted display powered by Google Daydream.
/// </summary>
[InputControlLayout(displayName = "Daydream Headset", hideInUI = true)]
public class DaydreamHMD : XRHMD
{
}
/// <summary>
/// An XR controller powered by Google Daydream.
/// </summary>
[InputControlLayout(displayName = "Daydream Controller", commonUsages = new[] { "LeftHand", "RightHand" }, hideInUI = true)]
public class DaydreamController : XRController
{
[InputControl]
public Vector2Control touchpad { get; protected set; }
[InputControl]
public ButtonControl volumeUp { get; protected set; }
[InputControl]
public ButtonControl recentered { get; protected set; }
[InputControl]
public ButtonControl volumeDown { get; protected set; }
[InputControl]
public ButtonControl recentering { get; protected set; }
[InputControl]
public ButtonControl app { get; protected set; }
[InputControl]
public ButtonControl home { get; protected set; }
[InputControl]
public ButtonControl touchpadClicked { get; protected set; }
[InputControl]
public ButtonControl touchpadTouched { get; protected set; }
[InputControl(noisy = true)]
public Vector3Control deviceVelocity { get; protected set; }
[InputControl(noisy = true)]
public Vector3Control deviceAcceleration { get; protected set; }
protected override void FinishSetup()
{
base.FinishSetup();
touchpad = GetChildControl<Vector2Control>("touchpad");
volumeUp = GetChildControl<ButtonControl>("volumeUp");
recentered = GetChildControl<ButtonControl>("recentered");
volumeDown = GetChildControl<ButtonControl>("volumeDown");
recentering = GetChildControl<ButtonControl>("recentering");
app = GetChildControl<ButtonControl>("app");
home = GetChildControl<ButtonControl>("home");
touchpadClicked = GetChildControl<ButtonControl>("touchpadClicked");
touchpadTouched = GetChildControl<ButtonControl>("touchpadTouched");
deviceVelocity = GetChildControl<Vector3Control>("deviceVelocity");
deviceAcceleration = GetChildControl<Vector3Control>("deviceAcceleration");
}
}
}
#endif