Version: 2022.1
언어: 한국어
XR 원점
XR API 레퍼런스

XR 입력 옵션

XR 게임 또는 애플리케이션에서 입력을 처리하는 주요 옵션은 다음과 같습니다.

  • XR 인터랙션 툴킷
  • OpenXR 인터랙션 프로파일
  • 입력 시스템 또는 입력 관리자를 통한 “기존” 입력
  • XR.InputDevice 및 XR.Node API
  • 타사 입력 라이브러리

경우에 따라 이러한 옵션 중 두 가지 이상을 동시에 사용할 수도 있습니다.예를 들어 XR 인터랙션 툴킷을 사용하여 사용자가 환경의 오브젝트를 선택할 수 있고, 입력 시스템을 사용하여 일시 정지 기능을 컨트롤러 버튼에 바인딩하고, 컨트롤러 게임 오브젝트를 애니메이션화할 수 있도록 XR.Node API를 사용하여 하드웨어 상태를 읽을 수 있습니다.

Note: The OpenXR plug-in, which supports many different XR devices and controllers, provides its own, additional way to access XR input and tracking data. You can still use the XR Interaction Toolkit, the Input System, or the XR.InputDevice and XR.Node APIs. (The legacy Input Manager is not supported when you use the OpenXR plugin.) See Input in Unity OpenXR for more information.

XR 인터랙션 툴킷

The XR Interaction Toolkit abstracts input into a set of user input actions, such as “hover,” select,“ and ”activate." These actions correspond to conventional XR input

The XR Interaction Toolkit builds on the Input System and the base UnityEngine.XR API to support XR input. It provides a near ready-to-use set of components for handling XR input and defining interactions between the user and the environment and the scene UI. Even if you choose not to use the toolkit’s interaction system, you can use the input components as a starting point to save setup effort. The toolkit provides two basic approaches to handling input:

  • 행동 기반 입력은 유연성이 가장 뛰어나며 여러 컨트롤러 및 입력 체계를 쉽게 지원할 수 있습니다.XR 인터랙션 툴킷은 일반적인 XR 입력 요구 사항에 대한 행동을 정의합니다.이러한 행동을 사용하려면 XR Controller (Action-Based) 컴포넌트를 컨트롤러 게임 오브젝트에 추가합니다.이 컴포넌트는 XR 씬에 추가할 수 있는 XR Origin 설정에 이미 포함되어 있습니다(기기 기반 옵션을 선택하지 않은 경우).
  • Device-based input is simpler to set up than action-based input, but is not as flexible. To use device-based input with the XR Interaction Toolkit, add the XR Controller (Device-Based) component to your controller GameObjects. This component is already part of the XR Origin configuration when you add it to the scene with the GameObject > XR > Device-based > XR Origin menu command.

See Actions for more information about Input System Actions.

팁:XR 인터랙션 툴킷에서 사용할 수 있는 스타터 에셋은 행동 기반 입력을 사용할 때 필요한 대부분의 반복되는 설정 작업을 없애주는 프리셋과 입력 행동을 제공합니다.

XR 인터랙션 툴킷은 다음과 같은 기본 상호작용을 정의합니다.

  • Select: intended for selecting Interactables in the environment
  • Activate: intended for activating Interactables in the environment
  • UI 누르기: UI에서 버튼과 같은 컨트롤을 누르기 위한 것입니다.
  • Rotate anchor: intended for rotating an object held at a distance (with the X-Ray Interactor)
  • Translate anchor: intended for moving an object held at a distance (with the X-Ray Interactor)

The XR Interaction Toolkit uses these interactions with additional components to let the user interact with the environment. For example, if you add a GrabInteractable component to an object, the user can trigger Select to grab it. By default, select is bound to the grip button of an XR controller, but you can change the binding as you see fit. You can also use your own actions and bindings alongside those defined by the toolkit.

입력 시스템 또는 입력 관리자

You can access the controls of XR Controllers, such as buttons and joysticks, in the same ways you would access any game controller. To access tracking data, use the XR.InputTracking API in code. You can also use the Input System TrackedPoseDriver component to control a GameObject with a tracked device such as a HMD or controller. The TrackedPoseDriver component is also available from the Legacy Input Helpers package, in case you are not using the Input System.

참고:OpenXR 플러그인을 사용하는 경우 입력 시스템을 사용해야 합니다.입력 관리자는 지원되지 않습니다.

XR 입력 API

The XR Input APIs provide the lowest level access to XR input. The API lets you find connected XR devices and read their tracking data and state of their input hardware.

XR 입력 API에 대한 자세한 내용은 Unity XR 입력을 참조하십시오.

타사 입력 API

Device makers and other third parties often provide their own input and interaction APIs that you can use instead of or in addition to those provided by Unity. For example,

XR 원점
XR API 레퍼런스