Jump to content

Can't enable Tracker support for wrist tracker in VIU


ashum

Recommended Posts

Hi @chengnay ,

 Menu>Wave>Tracker>Enable Tracker is checked. Could you pleas see the project

This is the link to the archive on google drive https://drive.google.com/file/d/1Z1ijcklVAtiiXd11Nu-fiOwsTg0agjSb/view?usp=sharing

It is sample project for Unity 2019.3.34 but the same behaviour  I see in the sample project for 2020.3.25 and when i tried to add wrist support in our main project

Link to comment
Share on other sites

hi, @chengnayIt's super strange. I opened it many times in different unity versions as I said. I can check all other boxes - Wave XR Render Model Support, Hand Tracking Support, Add Virtual Arm for 3Dof Controller - all can be checked. But Wave Tracker Support box refuses to be checked in all my projects. When I choose it and press mouse button or space on a keybord nothing happens.

Could you please make any guess. Your collegues give us HTC new  equipmet (set of trackers) for testing and ask for some feedback. But we still can't to import it to our projects due to this strange bug becuse we use VIU functionality in our software

Edited by ashum
Link to comment
Share on other sites

Hi @ashum,

Could you try to build the project and check if AndroidManifest.xml under Assets\Plugins\Android folder did include "<uses-feature android:name="wave.feature.tracker" android:required="true" />"?

If yes, you should be able to connect Tracker and see it in your scene.

If no, you could manually add that line by yourself.

I provide a sample for you below.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.unity3d.player"
    xmlns:tools="http://schemas.android.com/tools">
    <application android:icon="@drawable/app_icon"
                 android:label="@string/app_name"
                 android:theme="@style/Theme.WaveVR.Black"
				 tools:replace="android:theme">  <!--You can use your theme here.-->
        <activity android:name="com.htc.vr.unity.WVRUnityVRActivity"
                  android:label="@string/app_name"
				  android:configChanges="density|fontScale|keyboard|keyboardHidden|layoutDirection|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"
                  android:enableVrMode="@string/wvr_vr_mode_component">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
                <category android:name="com.htc.intent.category.VRAPP" />
            </intent-filter>
            <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
            <meta-data android:name="unityplayer.SkipPermissionsDialog" android:value="true" />
        </activity>
    </application>

    <uses-feature android:name="wave.feature.tracker" android:required="true" />
</manifest>

 

Link to comment
Share on other sites

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