Jump to content

Can't enable Tracker support for wrist tracker in VIU


Recommended Posts

Posted (edited)

just can't enable checkbox for wave tracker support. What is dependencies on it? it can't be checked

All SDK are enabled. Could you please advise

1927504859_(12).thumb.png.5c3c1d1b2f77aa921d5ee3e12593e94c.pngHi,1117806713_(14).thumb.png.50b57d3d422e915d735d6629ad89825f.png

1733864041_(13).thumb.png.cb67eaa4378da467c05d87b960ce210d.png

Edited by ashum
Posted (edited)

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
Posted

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>

 

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