Jump to content

VIVE_chengnay

Employee
  • Posts

    755
  • Joined

  • Last visited

Everything posted by VIVE_chengnay

  1. @lily_iniad Did you post your question in wrong forum? This forum should be Wave SDK related question. Could you list the versions for Unity, SDKs that you installed in your project?
  2. @dwmInteractive Which Unity version are you looking for? And which Wave SDK version are you using for your project?
  3. Hi @htc vive, Could you try using the embedded binding method provided by VIU? You can assign each tracker to any specific role, so that every time you turn on your trackers in different order, they are still in the same role as before. BTW, how did you assign the device index to each tracker?
  4. Just curious why your previous code (without install Oculus XR Plugin) can work on Oculus Quest?
  5. @Fangh I am not sure how "Wave/Xr/Platform/Android" this folder is created. By default, this was not created by Wave XR Plugin. Anyway, good to hear you resolve the issue.
  6. Just the one in Assets/Plugins/Android. Are you using Vive Wave XR Plugin 4.1.1-r3.2?
  7. @Fangh It looks like the Theme.WaveVR.Loading is from old Wave SDK? Could you try deleting the AndroidManifest.xml and let Wave XR Plugin to auto-create one during build time?
  8. @Fangh Is your issue resolved? Now you can get inputs for Focus 3 and Oculus Quest?
  9. @Fangh For running on Oculus platform, you will need to import Oculus Integration SDK or at least Oculus XR Plugin. It will be better to create a new project for Oculus.
  10. Hi @Fangh, It seems you have import VIU 1.13.4. You can try following methods to see if this resolves your problem. public ViveRoleProperty role = ViveRoleProperty.New(); if (ViveInput.GetPress(role, ControllerButton.Trigger)) { // } if (ViveInput.GetPress(role, ControllerButton.Grip)) { // } if (ViveInput.GetPress(role, ControllerButton.Pad)) { // } For controller name, you can try below code. var deviceState = VRModule.GetCurrentDeviceState(role.GetDeviceIndex()); deviceState.modelNumber or deviceState.renderModelName Let me know if you have further questions.
  11. @jboss If you import Oculus Integration from Asset Store, probably the version shows in Asset Store will be your final version. Anyway, I will just use the latest version from Asset Store and try, thanks! UPDATE: You can also use below method to get velocity that provided by Oculus SDK. public ViveRoleProperty role = ViveRoleProperty.New(); or ViveRoleProperty.New(HandRole.RightHand); var deviceState = VRModule.GetCurrentDeviceState(role.GetDeviceIndex()); Debug.Log("velocity: " + deviceState.velocity);
  12. @jboss Could you list your project setup environment such as Unity version, SDK(VIU/Oculus Integration) version... etc.
  13. @dlobser I think your previous error comes from the Samples folder. Maybe you did not fully import what is needed. Could you try deleting the Samples folder?
  14. @jwatson This might need more time to check and I will also check with Wave XR Plugin team. Will reply you later.
  15. @jwatson I just move the Asset/Wave folder inside Asset/3rd_party/Wave folder, it seems ok. Don't move the folder in Unity Editor, use Windows file explorer. I am not sure will you get an unexpected error, let me know if you have issue.
  16. You mentioned you "followed the wave installation directions", where did you get the directions from? And, could you screenshot your project folders to me? For example, If it is brand new, I assume your folders will be much lesser.
  17. @dlobser Could you try creating a new project and just install Wave XR Plugin(xrsdk, native and essence)? Or could you share your project to me for further investigation?
  18. @jwatson Are you trying to move the Wave folder(Assets/Wave/Essence/) to other location?
  19. @dlobser Could you try click on "Check packages"? Will it fix your errors? For Wave XR Plugin's camera, you just need to add below items(Camera and TrackedPoseDriver) to your scene, Let me know if you still having issues.
  20. @dlobser If you still cannot resolve the errors, please screenshot what you have installed in your Package Manager. For example,
  21. @dlobser Go to Edit>Project Settings, and click Essence. It will import feature packages automatically.
  22. @dlobser Camera prefab? What is your issue? If you install VIVE Wave XR Plugin - Essence from Package Manager, it will import feature packages. There are some sample scenes in below path. For example, Assets\Wave\Essence\Controller\Model\4.0.0\Demo\Scenes\
  23. @dlobser Which version of Wave SDK did you install in your project? And, did you switch to Android platform?
×
×
  • Create New...