Oculus开发入门

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

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

Oculus开发入门_第1张图片

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.

 Oculus开发入门_第2张图片

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.Oculus开发入门_第3张图片

    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.

    Oculus开发入门_第4张图片

  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
  7. Set Up Hands

  8. 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:

    • Hand Tracking Support: Either Controllers and Hands or Hands Only
    • Hand Tracking Frequency: HIGH (optional)
    • Hand Tracking Version: V2Oculus开发入门_第5张图片
    • Under Project, search for OVRHandPrefab, then drag OVRHandPrefab onto OVRCameraRig > TrackingSpace > LeftHandAnchor.Oculus开发入门_第6张图片
    • Under Hierarchy, select OVRHandPrefab.
    • Under Inspector, disable all scripts except for OVR Hand and OVR Skeleton by unselecting the checkbox for each script.Oculus开发入门_第7张图片

    • 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.Oculus开发入门_第8张图片

你可能感兴趣的:(oculus,Unity,oculus)