forked from godotengine/godot
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request godotengine#18 from m4gr3d/godot4_vr_editor_standa…
…lone Configuring the VR Editor for standalone devices
- Loading branch information
Showing
10 changed files
with
381 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
platform/android/java/editor/src/openxr/AndroidManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="org.godotengine.editor"> | ||
|
||
<application> | ||
|
||
<activity android:name=".GodotXRProjectManager" | ||
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode" | ||
android:process=":GodotXRProjectManager" | ||
android:launchMode="singleTask" | ||
android:exported="true" | ||
android:screenOrientation="userLandscape" | ||
android:resizeableActivity="false" | ||
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"> | ||
|
||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="com.oculus.intent.category.VR" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
|
||
<activity | ||
android:name=".GodotXREditor" | ||
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode" | ||
android:process=":GodotXREditor" | ||
android:launchMode="singleTask" | ||
android:exported="false" | ||
android:screenOrientation="userLandscape" | ||
android:resizeableActivity="false" | ||
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"> | ||
<intent-filter> | ||
<category android:name="com.oculus.intent.category.VR" /> | ||
</intent-filter> | ||
</activity> | ||
|
||
<activity | ||
android:name=".GodotXRGame" | ||
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode" | ||
android:process=":GodotXRGame" | ||
android:launchMode="singleTask" | ||
android:exported="false" | ||
android:screenOrientation="userLandscape" | ||
android:resizeableActivity="false" | ||
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"> | ||
<intent-filter> | ||
<category android:name="com.oculus.intent.category.VR" /> | ||
</intent-filter> | ||
</activity> | ||
|
||
</application> | ||
|
||
</manifest> |
Oops, something went wrong.