Download Intugame VR 1.0.4 for Android for free, without any viruses, from Uptodown. Try the latest version of Intugame VR 2017 for Android. Download VR Scene 1.3 for Android for free, without any viruses, from Uptodown. Try the latest version of VR Scene 2016 for Android. Firefighter VR+Touch supports Google Cardboard and Google Daydream on Android and can run in non-VR mode on Android and PC. Future support for Gear VR, Oculus Rift, and SteamVR/Vive is possible. The game supports touch controls on Android and KB/M on PC as well as several types of controller on both.
HIGHLIGHTS:
• Search or browse the ever expanding library of Samsung VR 360 video content
• Play any video directly on your Samsung phone, even without your Gear VR headset
• Explore your 360 world either by moving your phone left/right or using touch navigation
• Download to play your videos in Gear VR for an even more immersive experience
• Upload 360 videos directly to Samsung VR. Available, in the US, on the Samsung Galaxy S7, Galaxy S7 edge, Galaxy Note 5, Galaxy S6, Galaxy S6 edge and Galaxy S6 edge+.
ABOUT SAMSUNG VR:
Samsung VR is a premium virtual reality service on Gear VR. Samsung VR delivers immersive 360-degree videos, with new content debuting daily from some of the biggest brands, entertainment companies and networks like Mountain Dew, the NBA, 20th Century Fox, and Skybound Entertainment.
For help / information regarding uploading content to Samsung VR, please visit the website http://samsungvr.com
- There's a new open source Cardboard SDK that offers a streamlined API, improved device compatibility, and built-in viewer profile QR code scanning. We recommend that all developers actively building for Google Cardboard migrate to the new Cardboard SDK: iOS, Android NDK, Unity XR Plugin (SDK)
- The Daydream View VR headset is no longer available for purchase. However, you can continue to use the existing Google VR SDK to update and distribute your apps to the Google Play Store, and make them available to users in the Daydream app.
This page is a walkthrough of the VR View samples, which can be found in the/samples
directory when you download the Google VR SDKfor Android.
Sample apps
There are two sample apps in the SDK that demonstrate how to embed360° media.Both of samples are single activity applications that display an embeddedpanoramic image or video:
VrPanoramaView
VrVideoView
The VrPanoramaView and VrVideoView samples with their VR Views in embed mode.
They allow the user to view different parts of the panorama by rotating theirphone. The VrVideoView sample also allows the user to pause and playtheir video by tapping on the VR View, and seek through the video using theslider. The samples expose the fullscreen mode and Cardboard modebuttons in the VR View which allow the user to change modes.
The fullscreen mode is similar to the embed mode but is immersive.
The Cardboard mode allows the user to view the panorama in a Cardboarddevice like any other Cardboard app.
These two apps also have an additional feature of opening arbitrary panoramasusing custom Intents via adb. The syntax for the Intents is documented in thesamples' respective Activities, and these Intents can be used to quickly testvarious media formats.
Overview of the code
A VR View can be included in a layout like any other Android View. This is theimportant section of the VrPanoramaView's res/layout/main_layout.xml
:
Inside the Activity, the primary method isVrPanoramaView.loadImageFromBitmap()
. Callit with a standard Android Bitmap
object and an optionalVrPanoramaView.Options
object. The latter is used to configure the format of the image. The Activityalso implements aVrPanoramaEventListener
which receives events when the load operation succeeds or fails.
The VrVideoView sample uses a very similar flow to VrPanoramaView.The primary difference is that VrVideoView uses eitherloadVideoFromAsset
orloadVideo
.
Android Vr Apps
While VrPanoramaView
requires the caller to load the image and pass inconfiguration information, VrVideoView
accepts a file and reads in theconfiguration from the file'sspatial-media metadata.