Jump to content

paul

Verified Members
  • Posts

    7
  • Joined

  • Last visited

Posts posted by paul

  1. Here its is:

    <?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.Loading"
                     android:resizeableActivity="false"
                     tools:replace="android:theme">  <!--You can use your theme here.-->
            <activity android:name="com.htc.vr.unity.WVRUnityVRActivity"
                      android:label="@string/app_name"
                    android:screenOrientation="landscape"
                    android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
                        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>

            <meta-data android:name="minWaveSDKVersion" android:value="1" />

            <meta-data android:name="com.htc.vr.content.NumDoFHmd" android:value="6DoF"/>
            <meta-data android:name="com.htc.vr.content.NumDoFController" android:value="6DoF"/>

            <meta-data android:name="com.htc.vr.content.NumController" android:value="2"/>

        </application>

        <uses-permission android:name="vive.wave.vr.oem.data.OEMDataRead" />
        <uses-permission android:name="vive.wave.vr.oem.data.OEMDataWrite" />
    </manifest>

     

  2. Is there a way I can control the time before the headset goes to sleep after I take it off? So far the only way I have to do it is by going to settings->developers and turning on keep awake but this keeps it on indefinitely. Ideally I would like to be able to set a time out of say five minutes . 

×
×
  • Create New...