Oculus开发入门

老是访问官网搭建unity环境太麻烦了,自己记录一下,在国内看。

官网教程连接 Getting Started with Interaction SDK | Oculus Developers

Adjust Camera Rig

Once you've completed the tutorial listed above, you can find Interaction SDK in Unity under the Assets/Oculus/Interaction folder.

  1. Open the Unity scene you created in Create Your First VR App on Meta Quest Headset.
  2. Under Hierarchy , select OVRCameraRig.
  3. Under Inspector , in the OVR Manager component, set the Tracking Origin Type property to Floor Level.

Add OVRInteraction Prefab

OVRInteraction is the base prefab for hands and controller components, which source data from OVRPlugin via OVRCameraRig

  1. Under Project , search for OVRInteraction , then drag the OVRInteraction prefab from the search results onto OVRCameraRig .

    Note

    You can check OVRPlugin.GetHandTrackingEnabled() to find out when the user has switched from controllers to hands.

    Add OVRHands Prefab

    OVRHands is the base for the hands input device. It controls the appearance of the hands, their position relative to the camera, and the interactors each hand can use.

  2. Under Project , search for OVRHands , then drag the OVRHands prefab from the search results onto OVRInteraction.

  3. To test hands, put on the headset.

  4. In the headset, go to Settings > Device > Hands & Controllers , and turn on Hand Tracking . Leave the Auto Switch Between Hands And Controllers selected to let you use hands when you put the controllers down.

  5. From Unity, build and run the app in the headset.

  6. After the app launches in the headset, put the controllers down and raise your hands

Set Up Hands

Configure Camera Rig for Hands

OVRCameraRig syncs the camera with the movement of the headset and contains some hand settings.Under Hierarchy , select OVRCameraRig .Under Inspector , in OVR Manager, set these properties to the following values:
9.

  • Hand Tracking Support : Either Controllers and Hands or Hands Only

  • Hand Tracking Frequency: HIGH (optional)

  • Hand Tracking Version : V2

  • Under Project , search for OVRHandPrefab , then drag OVRHandPrefab onto OVRCameraRig > TrackingSpace > LeftHandAnchor .

  • Under Hierarchy , select OVRHandPrefab.

  • Under Inspector , disable all scripts except for OVR Hand and OVR Skeleton by unselecting the checkbox for each script.

  • In the OVR Skeleton component, select the Enable Physics Capsules checkbox.

  • Copy the OVRHandPrefab , right-click on RightHandAnchor , and select Paste as Child.

  • Select RightHandAnchor > OVRHandPrefab.

  • Under Inspector , in the OVR Hand component, set the Hand Type property to Hand Right.

  • In the OVR Skeleton component, set the Skeleton Type property to Hand Right .

相关推荐
linpingyuan5 个月前
Shader for Quest 2: 自定义shader在Unity Editor中可以使用,但是在Quest 2中却不可以
unity·游戏引擎·vr·oculus
侯增涛1 年前
Oculus经验记录
菜单·按钮·插件版本·oculus