Jump to content

[Tutorial] Port your app to Focus3(and other wave platforms) using Interaction Toolkit package


Alex_HTC

Recommended Posts

Using unity to build content using the latest Unity XR Interaction toolkit can be a quick way to build content that can work in a wide variety of ways, and be supported well into the future as unity builds new features.

So today, we're going to take the "Escape Room" example provided by unity and get it working with WaveXR, step by step.

Step 0: Install the latest Long term support version of unity - at the time of writing, this was unity 2020.3.16f1

Step 1: 
Open unity hub select "New", and create a blank project
1189394665_Screenshot2021-09-11183327.png.917e0a65eb6a393eebc2c32d927f1cae.png


Click "Create" and you should have a project you can start working from!

Step 2:
Open up the web page https://assetstore.unity.com/packages/templates/tutorials/vr-beginner-the-escape-room-163264 
 a) select the "Add To assets" blue button
 b) Select "Open in unity" to add it to your open project created in step 1. You may also have to select "Open Unity Editor" to allow the web page to perform this action.

Step 3:
In Unity, you should see a window titled "Package Manager" and it should select "VR Beginner: The Escape Room"
2078530065_Screenshot2021-09-11185134.png.01093ad66f795db70a476300a836aca0.png
  a) Select "Import" at the bottom right of the Package manager window (pictured above)
  b) Select "Import" at when the window pops up indicating that "importing a complete project will overwrite your current project settings". Since we have just set this project up, this is not a problem
import_complete_project.png.89a3de07c99b3c0066a3b34a96fc221e.png
  c) Select "Install/Upgrade" to install the dependencies
unity_package_dependencies.png.6e9fbf7afd41c4657f3d9c0cc3ec3f83.png
  d) Select "Import" at the bottom right to bring the assets into your project
import_all_assets.png.4bfc7f843823736a02574db3b8af3b36.png
Step 4) Configure Wave XR plugin
  a) In Unity, Select Edit->Project Settings. In that window Select "Package Manager", and add A new entry Name "HTC", URL "https://npm-registry.vive.com" and Scope(s): "com.htc.upm"  like the image below. Then hit "Apply"
Add_HTC_to_Package_Manager.png.cab48ff4632f198f6fa6071f943d8df7.png
  b) Go back to the project manager and select "My Registries" from the dropdown
package_manager_select_my_registries.png.bbb11aa8972068a06ed8b970139b77b4.png

Which should lead you to a screen that looks something like this:
after_selected_my_registries.png.a47e20ca4fcf2f6037b0899197406935.png

  c) Select "Install" on both the Wave XR Plugin 
  d) Inside of the "Project Settings" window, select "Wave XR" and click the "PlayerSettings Configure Dialog" button, then "Accept all" to configure the project for focus3 development.
wave_playersettings_dialog.thumb.png.6ce8d76272f41aa8dba3eb535c037bbb.png
After it is done changing settings (this may take a little while), you should see a dialog saying "You made the right choice"
made_the_right_choice.png.a3fbd23006c3309625ecd9e0b593ab6d.png
  e) Go to "Project Settings"->"Wave XR"->"XRSDK" and click on the "Import Feature - Custom Android Manifest" button, and import the package assets
import_feature_custom_android_manifest.png.d388e8affa4200afa141cd2d42a79e75.png
android_manifest_package.png.85d1cceb30ad50b2b11495a628c5ed44.png
  f) Enable Wave as an XR plugin - Go to "Player Settings"->"XR Plugin-in Management" and enable WaveXR for both PC and Android
wave_xr_pc.png.5f5826132dcf59128c817085541e3719.png
wave_xr_android.png.c49a5e05304dbf81641537890aa25b03.png

 

Link to comment
Share on other sites

  • 3 months later...
  • 1 month later...

Instructions still unclear... Do you mean install these ↓ two?
image.png.5132624956665a958822a80b1d836f68.png

If so should XR always be installed and can you explain the deference between Native and Essence in case I have a use case that could be better suited to one or the other?

Or are you saying install Essence and Native or when you say "XR plugin which requires XR plugin" are you saying just install essence and it will include XR Pugin thus it installs "both"?

Link to comment
Share on other sites

Or maybe you should say install just the first XR plugin as step 4 E doesn't show Essence or Native

Yours image.png.561f8de6800b017bfe59c6b40e74b6dc.png

Mine image.png.59e94b74d34afc830c0f88de934e04f6.png

 

And for me the native only shows because I installed Essence which auto pulled native as well. so this still needs Clarification

Edited by Giantbean
Link to comment
Share on other sites

  • 1 month later...

@Giantbean

Installing the Wave XR plugin is all that is needed to get a project up and running.

Wave essence does add some nice features like a simple way to show the controller with the "RenderModel" script. I tend to install essence and then let it install the other packages for me.

To get into details:

Essence contains additional packages and configurations that can be helpful. For instance, RenderModel.cs which will show a controller model at the location you specify.


Essence depends on native and the xr sdk, so it pulls in a version of it when you install. If you intend to install it at some point, then it will install  
To be specific, for version 4.3.0-r.2 of 'Essence" it's package.json file specifies

Quote

"dependencies": {
    "com.htc.upm.wave.xrsdk": "4.3.0-r.2",
    "com.htc.upm.wave.native": "4.3.0-r.2"
  },



As dependencies. When you install essence, the unity package manager knows it needs to pull the other packages in as well.
 

Link to comment
Share on other sites

  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...