├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── Assets ├── GoogleVR.meta ├── GoogleVR │ ├── Beta.meta │ ├── Beta │ │ ├── Demos.meta │ │ ├── Demos │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── Hello6DoFControllers.unity │ │ │ │ ├── Hello6DoFControllers.unity.meta │ │ │ │ ├── HelloMR.unity │ │ │ │ └── HelloMR.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── DemoObjectController6DoF.cs │ │ │ │ ├── DemoObjectController6DoF.cs.meta │ │ │ │ ├── DemoSeeThroughController.cs │ │ │ │ └── DemoSeeThroughController.cs.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── Controller6DoF.mat │ │ │ ├── Controller6DoF.mat.meta │ │ │ ├── GvrSeeThroughUI.mat │ │ │ └── GvrSeeThroughUI.mat.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── dd6dof_controller.fbx │ │ │ └── dd6dof_controller.fbx.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── GvrBetaControllerPointer.prefab │ │ │ ├── GvrBetaControllerPointer.prefab.meta │ │ │ ├── GvrBetaHeadset.prefab │ │ │ └── GvrBetaHeadset.prefab.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── GvrBetaControllerInput.cs │ │ │ ├── GvrBetaControllerInput.cs.meta │ │ │ ├── GvrBetaControllerState.cs │ │ │ ├── GvrBetaControllerState.cs.meta │ │ │ ├── GvrBetaControllerVisualMulti.cs │ │ │ ├── GvrBetaControllerVisualMulti.cs.meta │ │ │ ├── GvrBetaHeadset.cs │ │ │ ├── GvrBetaHeadset.cs.meta │ │ │ ├── GvrBetaSettings.cs │ │ │ ├── GvrBetaSettings.cs.meta │ │ │ ├── GvrControllerInputDeviceExtension.cs │ │ │ ├── GvrControllerInputDeviceExtension.cs.meta │ │ │ ├── Internal.meta │ │ │ └── Internal │ │ │ │ ├── GvrBetaAndroidNativeControllerInputProvider.cs │ │ │ │ ├── GvrBetaAndroidNativeControllerInputProvider.cs.meta │ │ │ │ ├── GvrBetaEditorControllerInputProvider.cs │ │ │ │ ├── GvrBetaEditorControllerInputProvider.cs.meta │ │ │ │ ├── GvrBetaHeadsetProvider.cs │ │ │ │ ├── GvrBetaHeadsetProvider.cs.meta │ │ │ │ ├── GvrBetaSettingsProvider.cs │ │ │ │ └── GvrBetaSettingsProvider.cs.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── GvrSeeThroughUI.shader │ │ │ └── GvrSeeThroughUI.shader.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── Controller6DoF.png │ │ │ └── Controller6DoF.png.meta │ ├── Demos.meta │ ├── Demos │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── DemoInputManagerEditor.cs │ │ │ ├── DemoInputManagerEditor.cs.meta │ │ │ ├── PermissionsDemoBuildProcessor.cs │ │ │ └── PermissionsDemoBuildProcessor.cs.meta │ │ ├── Environment.meta │ │ ├── Environment │ │ │ ├── CubeRoom.obj │ │ │ ├── CubeRoom.obj.meta │ │ │ ├── CubeRoom.prefab │ │ │ ├── CubeRoom.prefab.meta │ │ │ ├── CubeRoom_BakedDiffuse.png │ │ │ ├── CubeRoom_BakedDiffuse.png.meta │ │ │ ├── Materials.meta │ │ │ └── Materials │ │ │ │ ├── CubeRoomEnvMat.mat │ │ │ │ └── CubeRoomEnvMat.mat.meta │ │ ├── Images.meta │ │ ├── Images │ │ │ ├── HelloVR_AppTile_bg.png │ │ │ ├── HelloVR_AppTile_bg.png.meta │ │ │ ├── HelloVR_AppTile_front.png │ │ │ ├── HelloVR_AppTile_front.png.meta │ │ │ ├── HelloVR_Splash.png │ │ │ ├── HelloVR_Splash.png.meta │ │ │ ├── VideoDemo.meta │ │ │ ├── VideoDemo │ │ │ │ ├── circle.png │ │ │ │ ├── circle.png.meta │ │ │ │ ├── hollowknob.png │ │ │ │ ├── hollowknob.png.meta │ │ │ │ ├── ic_pause_white_72.png │ │ │ │ ├── ic_pause_white_72.png.meta │ │ │ │ ├── ic_play_arrow_white_72.png │ │ │ │ ├── ic_play_arrow_white_72.png.meta │ │ │ │ ├── ic_volume_up_white_48.png │ │ │ │ ├── ic_volume_up_white_48.png.meta │ │ │ │ ├── loading_bg.png │ │ │ │ └── loading_bg.png.meta │ │ │ ├── ic_launcher_hello_vr_round.png │ │ │ ├── ic_launcher_hello_vr_round.png.meta │ │ │ ├── logo_hello_vr_108px.svg │ │ │ └── logo_hello_vr_108px.svg.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── HelloVR.meta │ │ │ └── HelloVR │ │ │ │ ├── IcosahedronBlue.mat │ │ │ │ ├── IcosahedronBlue.mat.meta │ │ │ │ ├── IcosahedronPink.mat │ │ │ │ ├── IcosahedronPink.mat.meta │ │ │ │ ├── QuadSphereBlue.mat │ │ │ │ ├── QuadSphereBlue.mat.meta │ │ │ │ ├── QuadSpherePink.mat │ │ │ │ ├── QuadSpherePink.mat.meta │ │ │ │ ├── SafetyRing.mat │ │ │ │ ├── SafetyRing.mat.meta │ │ │ │ ├── TriSphereBlue.mat │ │ │ │ ├── TriSphereBlue.mat.meta │ │ │ │ ├── TriSpherePink.mat │ │ │ │ └── TriSpherePink.mat.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── HelloVR.meta │ │ │ └── HelloVR │ │ │ │ ├── Icosahedron.obj │ │ │ │ ├── Icosahedron.obj.meta │ │ │ │ ├── QuadSphere.obj │ │ │ │ ├── QuadSphere.obj.meta │ │ │ │ ├── SafetyRing_1m.obj │ │ │ │ ├── SafetyRing_1m.obj.meta │ │ │ │ ├── TriSphere.obj │ │ │ │ └── TriSphere.obj.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── DemoInfoPanel.prefab │ │ │ ├── DemoInfoPanel.prefab.meta │ │ │ ├── DemoInputManager.prefab │ │ │ ├── DemoInputManager.prefab.meta │ │ │ ├── DemoSceneManager.prefab │ │ │ ├── DemoSceneManager.prefab.meta │ │ │ ├── Keyboard.meta │ │ │ ├── Keyboard │ │ │ │ ├── KeyboardDelegateExample.prefab │ │ │ │ └── KeyboardDelegateExample.prefab.meta │ │ │ ├── VideoDemo.meta │ │ │ └── VideoDemo │ │ │ │ ├── MenuBar.prefab │ │ │ │ ├── MenuBar.prefab.meta │ │ │ │ ├── VideoControls.prefab │ │ │ │ └── VideoControls.prefab.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── HelloVR.unity │ │ │ ├── HelloVR.unity.meta │ │ │ ├── KeyboardDemo.unity │ │ │ ├── KeyboardDemo.unity.meta │ │ │ ├── PermissionsDemo.unity │ │ │ ├── PermissionsDemo.unity.meta │ │ │ ├── VideoDemo.unity │ │ │ └── VideoDemo.unity.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── DemoInfoPanel.cs │ │ │ ├── DemoInfoPanel.cs.meta │ │ │ ├── DemoInputManager.cs │ │ │ ├── DemoInputManager.cs.meta │ │ │ ├── DemoSceneManager.cs │ │ │ ├── DemoSceneManager.cs.meta │ │ │ ├── HelloVR.meta │ │ │ ├── HelloVR │ │ │ │ ├── HeadsetDemoManager.cs │ │ │ │ ├── HeadsetDemoManager.cs.meta │ │ │ │ ├── HelloVRManager.cs │ │ │ │ ├── HelloVRManager.cs.meta │ │ │ │ ├── ObjectController.cs │ │ │ │ └── ObjectController.cs.meta │ │ │ ├── KeyboardDemo.meta │ │ │ ├── KeyboardDemo │ │ │ │ ├── KeyboardDelegateExample.cs │ │ │ │ └── KeyboardDelegateExample.cs.meta │ │ │ ├── PermissionsDemo.meta │ │ │ ├── PermissionsDemo │ │ │ │ ├── PermissionsFlowManager.cs │ │ │ │ └── PermissionsFlowManager.cs.meta │ │ │ ├── VideoDemo.meta │ │ │ └── VideoDemo │ │ │ │ ├── AutoPlayVideo.cs │ │ │ │ ├── AutoPlayVideo.cs.meta │ │ │ │ ├── InputEvents.meta │ │ │ │ ├── InputEvents │ │ │ │ ├── BoolEvent.cs │ │ │ │ ├── BoolEvent.cs.meta │ │ │ │ ├── ButtonEvent.cs │ │ │ │ ├── ButtonEvent.cs.meta │ │ │ │ ├── FloatEvent.cs │ │ │ │ ├── FloatEvent.cs.meta │ │ │ │ ├── GameObjectEvent.cs │ │ │ │ ├── GameObjectEvent.cs.meta │ │ │ │ ├── TouchPadEvent.cs │ │ │ │ ├── TouchPadEvent.cs.meta │ │ │ │ ├── TransformEvent.cs │ │ │ │ ├── TransformEvent.cs.meta │ │ │ │ ├── Vector2Event.cs │ │ │ │ ├── Vector2Event.cs.meta │ │ │ │ ├── Vector3Event.cs │ │ │ │ └── Vector3Event.cs.meta │ │ │ │ ├── ScrubberEvents.cs │ │ │ │ ├── ScrubberEvents.cs.meta │ │ │ │ ├── SwitchVideos.cs │ │ │ │ ├── SwitchVideos.cs.meta │ │ │ │ ├── VideoControlsManager.cs │ │ │ │ ├── VideoControlsManager.cs.meta │ │ │ │ ├── VideoPlayerReference.cs │ │ │ │ └── VideoPlayerReference.cs.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── HelloVR.meta │ │ │ └── HelloVR │ │ │ │ ├── HelloVRUnlitGrayscaleToColor.shader │ │ │ │ └── HelloVRUnlitGrayscaleToColor.shader.meta │ │ ├── Sounds.meta │ │ ├── Sounds │ │ │ ├── HelloVR.meta │ │ │ └── HelloVR │ │ │ │ ├── HelloVR_Tone_1.wav │ │ │ │ ├── HelloVR_Tone_1.wav.meta │ │ │ │ ├── HelloVR_Tone_2.wav │ │ │ │ ├── HelloVR_Tone_2.wav.meta │ │ │ │ ├── HelloVR_Tone_3.wav │ │ │ │ └── HelloVR_Tone_3.wav.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── HelloVR.meta │ │ │ └── HelloVR │ │ │ ├── Icosahedron_Blue_BakedDiffuse.png │ │ │ ├── Icosahedron_Blue_BakedDiffuse.png.meta │ │ │ ├── Icosahedron_Pink_BakedDiffuse.png │ │ │ ├── Icosahedron_Pink_BakedDiffuse.png.meta │ │ │ ├── QuadSphere_Blue_BakedDiffuse.png │ │ │ ├── QuadSphere_Blue_BakedDiffuse.png.meta │ │ │ ├── QuadSphere_Pink_BakedDiffuse.png │ │ │ ├── QuadSphere_Pink_BakedDiffuse.png.meta │ │ │ ├── SafetyRing_Alpha.png │ │ │ ├── SafetyRing_Alpha.png.meta │ │ │ ├── TriSphere_Blue_BakedDiffuse.png │ │ │ ├── TriSphere_Blue_BakedDiffuse.png.meta │ │ │ ├── TriSphere_Pink_BakedDiffuse.png │ │ │ └── TriSphere_Pink_BakedDiffuse.png.meta │ ├── Editor.meta │ ├── Editor │ │ ├── Controller.meta │ │ ├── Controller │ │ │ ├── GvrControllerVisualEditor.cs │ │ │ ├── GvrControllerVisualEditor.cs.meta │ │ │ ├── GvrLaserPointerEditor.cs │ │ │ ├── GvrLaserPointerEditor.cs.meta │ │ │ ├── GvrLaserVisualEditor.cs │ │ │ ├── GvrLaserVisualEditor.cs.meta │ │ │ ├── GvrTooltipEditor.cs │ │ │ └── GvrTooltipEditor.cs.meta │ │ ├── EventSystem.meta │ │ ├── EventSystem │ │ │ ├── GvrPointerScrollInputEditor.cs │ │ │ └── GvrPointerScrollInputEditor.cs.meta │ │ ├── GvrBuildProcessor.cs │ │ ├── GvrBuildProcessor.cs.meta │ │ ├── GvrEditorEmulatorEditor.cs │ │ ├── GvrEditorEmulatorEditor.cs.meta │ │ ├── GvrEditorMenu.cs │ │ ├── GvrEditorMenu.cs.meta │ │ ├── GvrEditorSettings.cs │ │ ├── GvrEditorSettings.cs.meta │ │ ├── GvrHeadsetEditor.cs │ │ ├── GvrHeadsetEditor.cs.meta │ │ ├── InstantPreviewEditor.cs │ │ └── InstantPreviewEditor.cs.meta │ ├── Fonts.meta │ ├── Fonts │ │ ├── Roboto-Medium.ttf │ │ └── Roboto-Medium.ttf.meta │ ├── LICENSE │ ├── LICENSE.meta │ ├── Materials.meta │ ├── Materials │ │ ├── ControllerBase.mat │ │ ├── ControllerBase.mat.meta │ │ ├── ControllerBaseTransparent.mat │ │ ├── ControllerBaseTransparent.mat.meta │ │ ├── ControllerLaser.mat │ │ ├── ControllerLaser.mat.meta │ │ ├── ControllerReticle.mat │ │ ├── ControllerReticle.mat.meta │ │ ├── ReticlePointer.mat │ │ ├── ReticlePointer.mat.meta │ │ ├── TooltipFont.mat │ │ ├── TooltipFont.mat.meta │ │ ├── TooltipImage.mat │ │ ├── TooltipImage.mat.meta │ │ ├── TooltipSimple.mat │ │ ├── TooltipSimple.mat.meta │ │ ├── Video.meta │ │ └── Video │ │ │ ├── VideoMono.mat │ │ │ ├── VideoMono.mat.meta │ │ │ ├── VideoStereo.mat │ │ │ ├── VideoStereo.mat.meta │ │ │ ├── VideoStereoInside.mat │ │ │ └── VideoStereoInside.mat.meta │ ├── Models.meta │ ├── Models │ │ ├── ddcontroller.fbx │ │ ├── ddcontroller.fbx.meta │ │ ├── ddtooltips.fbx │ │ ├── ddtooltips.fbx.meta │ │ ├── hemisphere_18x18.fbx │ │ ├── hemisphere_18x18.fbx.meta │ │ ├── sphere_36x18.fbx │ │ └── sphere_36x18.fbx.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── Android.meta │ │ ├── Android │ │ │ ├── AndroidManifest-6DOF.xml │ │ │ ├── AndroidManifest-6DOF.xml.meta │ │ │ ├── AndroidManifest-Cardboard.xml │ │ │ ├── AndroidManifest-Cardboard.xml.meta │ │ │ ├── AndroidManifest-Daydream.xml │ │ │ ├── AndroidManifest-Daydream.xml.meta │ │ │ ├── exoplayer-r1.5.11.aar │ │ │ ├── exoplayer-r1.5.11.aar.meta │ │ │ ├── gvr-exoplayersupport-release.aar │ │ │ ├── gvr-exoplayersupport-release.aar.meta │ │ │ ├── gvr-keyboard.aar │ │ │ ├── gvr-keyboard.aar.meta │ │ │ ├── gvr-keyboardsupport-release.aar │ │ │ ├── gvr-keyboardsupport-release.aar.meta │ │ │ ├── gvr-permissionsupport-release.aar │ │ │ ├── gvr-permissionsupport-release.aar.meta │ │ │ ├── gvr.aar │ │ │ ├── gvr.aar.meta │ │ │ ├── proguard-gvr.txt │ │ │ └── proguard-gvr.txt.meta │ │ ├── Google.ProtocolBuffers.dll │ │ ├── Google.ProtocolBuffers.dll.meta │ │ ├── x86.meta │ │ ├── x86 │ │ │ ├── instant_preview_shared.dll │ │ │ ├── instant_preview_shared.dll.meta │ │ │ ├── instant_preview_unity_plugin.dll │ │ │ ├── instant_preview_unity_plugin.dll.meta │ │ │ ├── libeay32.dll │ │ │ ├── libeay32.dll.meta │ │ │ ├── ssleay32.dll │ │ │ ├── ssleay32.dll.meta │ │ │ ├── zlib.dll │ │ │ └── zlib.dll.meta │ │ ├── x86_64.meta │ │ └── x86_64 │ │ │ ├── instant_preview_shared.dll │ │ │ ├── instant_preview_shared.dll.meta │ │ │ ├── instant_preview_unity_plugin.bundle.meta │ │ │ ├── instant_preview_unity_plugin.bundle │ │ │ ├── Contents.meta │ │ │ └── Contents │ │ │ │ ├── MacOS.meta │ │ │ │ └── MacOS │ │ │ │ ├── instant_preview_unity_plugin │ │ │ │ ├── instant_preview_unity_plugin.meta │ │ │ │ ├── libgpr.dylib │ │ │ │ ├── libgpr.dylib.meta │ │ │ │ ├── libgrpc++.dylib │ │ │ │ ├── libgrpc++.dylib.meta │ │ │ │ ├── libgrpc.dylib │ │ │ │ ├── libgrpc.dylib.meta │ │ │ │ ├── libinstant_preview_shared.dylib │ │ │ │ └── libinstant_preview_shared.dylib.meta │ │ │ ├── instant_preview_unity_plugin.dll │ │ │ ├── instant_preview_unity_plugin.dll.meta │ │ │ ├── libeay32.dll │ │ │ ├── libeay32.dll.meta │ │ │ ├── ssleay32.dll │ │ │ ├── ssleay32.dll.meta │ │ │ ├── zlib.dll │ │ │ └── zlib.dll.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Cardboard.meta │ │ ├── Cardboard │ │ │ ├── GvrReticlePointer.prefab │ │ │ └── GvrReticlePointer.prefab.meta │ │ ├── Controller.meta │ │ ├── Controller │ │ │ ├── GvrControllerMain.prefab │ │ │ ├── GvrControllerMain.prefab.meta │ │ │ ├── GvrControllerPointer.prefab │ │ │ ├── GvrControllerPointer.prefab.meta │ │ │ ├── Tooltips.meta │ │ │ └── Tooltips │ │ │ │ ├── GvrControllerTooltipsSimple.prefab │ │ │ │ ├── GvrControllerTooltipsSimple.prefab.meta │ │ │ │ ├── GvrControllerTooltipsTemplate.prefab │ │ │ │ └── GvrControllerTooltipsTemplate.prefab.meta │ │ ├── EventSystem.meta │ │ ├── EventSystem │ │ │ ├── GvrEventSystem.prefab │ │ │ └── GvrEventSystem.prefab.meta │ │ ├── GvrEditorEmulator.prefab │ │ ├── GvrEditorEmulator.prefab.meta │ │ ├── Headset.meta │ │ ├── Headset │ │ │ ├── GvrHeadset.prefab │ │ │ └── GvrHeadset.prefab.meta │ │ ├── InstantPreview.meta │ │ ├── InstantPreview │ │ │ ├── GvrInstantPreviewMain.prefab │ │ │ └── GvrInstantPreviewMain.prefab.meta │ │ ├── Keyboard.meta │ │ └── Keyboard │ │ │ ├── GvrKeyboardCanvas.prefab │ │ │ ├── GvrKeyboardCanvas.prefab.meta │ │ │ ├── GvrKeyboardManager.prefab │ │ │ └── GvrKeyboardManager.prefab.meta │ ├── README │ ├── README.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── Cardboard.meta │ │ ├── Cardboard │ │ │ ├── GvrReticlePointer.cs │ │ │ └── GvrReticlePointer.cs.meta │ │ ├── Controller.meta │ │ ├── Controller │ │ │ ├── ArmModel.meta │ │ │ ├── ArmModel │ │ │ │ ├── GvrArmModel.cs │ │ │ │ ├── GvrArmModel.cs.meta │ │ │ │ ├── GvrBaseArmModel.cs │ │ │ │ ├── GvrBaseArmModel.cs.meta │ │ │ │ ├── IGvrArmModelReceiver.cs │ │ │ │ └── IGvrArmModelReceiver.cs.meta │ │ │ ├── GvrControllerInput.cs │ │ │ ├── GvrControllerInput.cs.meta │ │ │ ├── GvrControllerInputDevice.cs │ │ │ ├── GvrControllerInputDevice.cs.meta │ │ │ ├── GvrControllerReticleVisual.cs │ │ │ ├── GvrControllerReticleVisual.cs.meta │ │ │ ├── GvrControllerVisual.cs │ │ │ ├── GvrControllerVisual.cs.meta │ │ │ ├── GvrLaserPointer.cs │ │ │ ├── GvrLaserPointer.cs.meta │ │ │ ├── GvrLaserVisual.cs │ │ │ ├── GvrLaserVisual.cs.meta │ │ │ ├── GvrRecenterOnlyController.cs │ │ │ ├── GvrRecenterOnlyController.cs.meta │ │ │ ├── GvrTrackedController.cs │ │ │ ├── GvrTrackedController.cs.meta │ │ │ ├── IGvrControllerInputDeviceReceiver.cs │ │ │ ├── IGvrControllerInputDeviceReceiver.cs.meta │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ │ ├── ControllerProviderFactory.cs │ │ │ │ ├── ControllerProviderFactory.cs.meta │ │ │ │ ├── ControllerProviders.meta │ │ │ │ ├── ControllerProviders │ │ │ │ │ ├── AndroidNativeShimControllerProvider.cs │ │ │ │ │ ├── AndroidNativeShimControllerProvider.cs.meta │ │ │ │ │ ├── DummyControllerProvider.cs │ │ │ │ │ ├── DummyControllerProvider.cs.meta │ │ │ │ │ ├── EditorControllerProvider.cs │ │ │ │ │ ├── EditorControllerProvider.cs.meta │ │ │ │ │ ├── EmulatorControllerProvider.cs │ │ │ │ │ ├── EmulatorControllerProvider.cs.meta │ │ │ │ │ ├── MouseControllerProvider.cs │ │ │ │ │ └── MouseControllerProvider.cs.meta │ │ │ │ ├── ControllerState.cs │ │ │ │ ├── ControllerState.cs.meta │ │ │ │ ├── ControllerUtils.cs │ │ │ │ ├── ControllerUtils.cs.meta │ │ │ │ ├── Emulator.meta │ │ │ │ ├── Emulator │ │ │ │ │ ├── EmulatorClientSocket.cs │ │ │ │ │ ├── EmulatorClientSocket.cs.meta │ │ │ │ │ ├── EmulatorConfig.cs │ │ │ │ │ ├── EmulatorConfig.cs.meta │ │ │ │ │ ├── EmulatorDataTypes.cs │ │ │ │ │ ├── EmulatorDataTypes.cs.meta │ │ │ │ │ ├── EmulatorManager.cs │ │ │ │ │ ├── EmulatorManager.cs.meta │ │ │ │ │ ├── Generated.meta │ │ │ │ │ └── Generated │ │ │ │ │ │ ├── PhoneEvent.cs │ │ │ │ │ │ └── PhoneEvent.cs.meta │ │ │ │ ├── IControllerProvider.cs │ │ │ │ └── IControllerProvider.cs.meta │ │ │ ├── Tooltips.meta │ │ │ └── Tooltips │ │ │ │ ├── GvrControllerTooltipsSimple.cs │ │ │ │ ├── GvrControllerTooltipsSimple.cs.meta │ │ │ │ ├── GvrTooltip.cs │ │ │ │ └── GvrTooltip.cs.meta │ │ ├── EventSystem.meta │ │ ├── EventSystem │ │ │ ├── GvrBasePointer.cs │ │ │ ├── GvrBasePointer.cs.meta │ │ │ ├── GvrBasePointerRaycaster.cs │ │ │ ├── GvrBasePointerRaycaster.cs.meta │ │ │ ├── GvrExecuteEventsExtension.cs │ │ │ ├── GvrExecuteEventsExtension.cs.meta │ │ │ ├── GvrPointerEventData.cs │ │ │ ├── GvrPointerEventData.cs.meta │ │ │ ├── GvrPointerEventDataExtension.cs │ │ │ ├── GvrPointerEventDataExtension.cs.meta │ │ │ ├── GvrPointerGraphicRaycaster.cs │ │ │ ├── GvrPointerGraphicRaycaster.cs.meta │ │ │ ├── GvrPointerPhysicsRaycaster.cs │ │ │ ├── GvrPointerPhysicsRaycaster.cs.meta │ │ │ ├── GvrPointerScrollInput.cs │ │ │ ├── GvrPointerScrollInput.cs.meta │ │ │ ├── GvrScrollSettings.cs │ │ │ ├── GvrScrollSettings.cs.meta │ │ │ ├── GvrXREventsSubscriber.cs │ │ │ ├── GvrXREventsSubscriber.cs.meta │ │ │ ├── IGvrPointerHoverHandler.cs │ │ │ ├── IGvrPointerHoverHandler.cs.meta │ │ │ ├── IGvrScrollSettings.cs │ │ │ ├── IGvrScrollSettings.cs.meta │ │ │ ├── InputModule.meta │ │ │ └── InputModule │ │ │ │ ├── GvrAllEventsTrigger.cs │ │ │ │ ├── GvrAllEventsTrigger.cs.meta │ │ │ │ ├── GvrEventExecutor.cs │ │ │ │ ├── GvrEventExecutor.cs.meta │ │ │ │ ├── GvrPointerInputModule.cs │ │ │ │ ├── GvrPointerInputModule.cs.meta │ │ │ │ ├── GvrPointerInputModuleImpl.cs │ │ │ │ ├── GvrPointerInputModuleImpl.cs.meta │ │ │ │ ├── IGvrEventExecutor.cs │ │ │ │ ├── IGvrEventExecutor.cs.meta │ │ │ │ ├── IGvrInputModuleController.cs │ │ │ │ └── IGvrInputModuleController.cs.meta │ │ ├── GvrCardboardHelpers.cs │ │ ├── GvrCardboardHelpers.cs.meta │ │ ├── GvrEditorEmulator.cs │ │ ├── GvrEditorEmulator.cs.meta │ │ ├── GvrSettings.cs │ │ ├── GvrSettings.cs.meta │ │ ├── GvrUnitySdkVersion.cs │ │ ├── GvrUnitySdkVersion.cs.meta │ │ ├── Headset.meta │ │ ├── Headset │ │ │ ├── Enums.meta │ │ │ ├── Enums │ │ │ │ ├── GvrErrorType.cs │ │ │ │ ├── GvrErrorType.cs.meta │ │ │ │ ├── GvrEventType.cs │ │ │ │ ├── GvrEventType.cs.meta │ │ │ │ ├── GvrRecenterEventType.cs │ │ │ │ ├── GvrRecenterEventType.cs.meta │ │ │ │ ├── GvrRecenterFlags.cs │ │ │ │ ├── GvrRecenterFlags.cs.meta │ │ │ │ ├── GvrSafetyRegionType.cs │ │ │ │ └── GvrSafetyRegionType.cs.meta │ │ │ ├── GvrHeadset.cs │ │ │ ├── GvrHeadset.cs.meta │ │ │ ├── Internal.meta │ │ │ └── Internal │ │ │ │ ├── HeadsetProviderFactory.cs │ │ │ │ ├── HeadsetProviderFactory.cs.meta │ │ │ │ ├── HeadsetProviders.meta │ │ │ │ ├── HeadsetProviders │ │ │ │ ├── AndroidNativeHeadsetEnums.cs │ │ │ │ ├── AndroidNativeHeadsetEnums.cs.meta │ │ │ │ ├── AndroidNativeHeadsetProvider.cs │ │ │ │ ├── AndroidNativeHeadsetProvider.cs.meta │ │ │ │ ├── DummyHeadsetProvider.cs │ │ │ │ ├── DummyHeadsetProvider.cs.meta │ │ │ │ ├── EditorHeadsetProvider.cs │ │ │ │ └── EditorHeadsetProvider.cs.meta │ │ │ │ ├── HeadsetState.cs │ │ │ │ ├── HeadsetState.cs.meta │ │ │ │ ├── IHeadsetProvider.cs │ │ │ │ └── IHeadsetProvider.cs.meta │ │ ├── InstantPreview.meta │ │ ├── InstantPreview │ │ │ ├── InstantPreview.apk │ │ │ ├── InstantPreview.apk.meta │ │ │ ├── InstantPreviewHelper.cs │ │ │ ├── InstantPreviewHelper.cs.meta │ │ │ ├── Internal.meta │ │ │ └── Internal │ │ │ │ ├── InstantPreview.cs │ │ │ │ ├── InstantPreview.cs.meta │ │ │ │ ├── InstantPreviewControllerProvider.cs │ │ │ │ └── InstantPreviewControllerProvider.cs.meta │ │ ├── Internal.meta │ │ ├── Internal │ │ │ ├── EditorCameraOriginDict.cs │ │ │ └── EditorCameraOriginDict.cs.meta │ │ ├── Keyboard.meta │ │ ├── Keyboard │ │ │ ├── GvrKeyboard.cs │ │ │ ├── GvrKeyboard.cs.meta │ │ │ ├── GvrKeyboardDelegateBase.cs │ │ │ ├── GvrKeyboardDelegateBase.cs.meta │ │ │ ├── GvrKeyboardIntent.cs │ │ │ ├── GvrKeyboardIntent.cs.meta │ │ │ ├── Internal.meta │ │ │ └── Internal │ │ │ │ ├── IKeyboardProvider.cs │ │ │ │ ├── IKeyboardProvider.cs.meta │ │ │ │ ├── KeyboardProviderFactory.cs │ │ │ │ ├── KeyboardProviderFactory.cs.meta │ │ │ │ ├── KeyboardProviders.meta │ │ │ │ ├── KeyboardProviders │ │ │ │ ├── AndroidNativeKeyboardProvider.cs │ │ │ │ ├── AndroidNativeKeyboardProvider.cs.meta │ │ │ │ ├── DummyKeyboardProvider.cs │ │ │ │ ├── DummyKeyboardProvider.cs.meta │ │ │ │ ├── EmulatorKeyboardProvider.cs │ │ │ │ └── EmulatorKeyboardProvider.cs.meta │ │ │ │ ├── KeyboardState.cs │ │ │ │ └── KeyboardState.cs.meta │ │ ├── Permissions.meta │ │ ├── Permissions │ │ │ ├── GvrPermissionsRequester.cs │ │ │ └── GvrPermissionsRequester.cs.meta │ │ ├── Pose3D.cs │ │ ├── Pose3D.cs.meta │ │ ├── PropertyDrawers.meta │ │ ├── PropertyDrawers │ │ │ ├── GvrInfo.cs │ │ │ ├── GvrInfo.cs.meta │ │ │ ├── GvrInfoDrawer.cs │ │ │ └── GvrInfoDrawer.cs.meta │ │ ├── UI.meta │ │ ├── UI │ │ │ ├── GvrDropdown.cs │ │ │ └── GvrDropdown.cs.meta │ │ ├── Utilities.meta │ │ ├── Utilities │ │ │ ├── GvrActivityHelper.cs │ │ │ ├── GvrActivityHelper.cs.meta │ │ │ ├── GvrDaydreamApi.cs │ │ │ ├── GvrDaydreamApi.cs.meta │ │ │ ├── GvrIntent.cs │ │ │ ├── GvrIntent.cs.meta │ │ │ ├── GvrMathHelpers.cs │ │ │ ├── GvrMathHelpers.cs.meta │ │ │ ├── GvrUIHelpers.cs │ │ │ ├── GvrUIHelpers.cs.meta │ │ │ ├── GvrVRHelpers.cs │ │ │ ├── GvrVRHelpers.cs.meta │ │ │ ├── Internal.meta │ │ │ └── Internal │ │ │ │ ├── GvrCursorHelper.cs │ │ │ │ ├── GvrCursorHelper.cs.meta │ │ │ │ ├── SuppressMemoryAllocationErrorAttribute.cs │ │ │ │ └── SuppressMemoryAllocationErrorAttribute.cs.meta │ │ ├── Video.meta │ │ └── Video │ │ │ ├── GvrVideoPlayerTexture.cs │ │ │ └── GvrVideoPlayerTexture.cs.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── GvrAdditiveOverlay.shader │ │ ├── GvrAdditiveOverlay.shader.meta │ │ ├── GvrController.shader │ │ ├── GvrController.shader.meta │ │ ├── GvrControllerReticle.shader │ │ ├── GvrControllerReticle.shader.meta │ │ ├── GvrReticleShader.shader │ │ ├── GvrReticleShader.shader.meta │ │ ├── GvrUIOverlay.shader │ │ ├── GvrUIOverlay.shader.meta │ │ ├── GvrUIOverlayFont.shader │ │ ├── GvrUIOverlayFont.shader.meta │ │ ├── GvrUnlitTextureOverlay.shader │ │ ├── GvrUnlitTextureOverlay.shader.meta │ │ ├── GvrUnlitTransparentOverlay.shader │ │ ├── GvrUnlitTransparentOverlay.shader.meta │ │ ├── GvrUnlitTransparentOverlayColor.shader │ │ ├── GvrUnlitTransparentOverlayColor.shader.meta │ │ ├── Video.meta │ │ └── Video │ │ │ ├── VideoUnlitShader.shader │ │ │ └── VideoUnlitShader.shader.meta │ ├── Textures.meta │ └── Textures │ │ ├── ControllerTooltips.png │ │ ├── ControllerTooltips.png.meta │ │ ├── cursor_grab.png │ │ ├── cursor_grab.png.meta │ │ ├── cursor_move.png │ │ ├── cursor_move.png.meta │ │ ├── cursor_pointer.png │ │ ├── cursor_pointer.png.meta │ │ ├── cursor_text.png │ │ ├── cursor_text.png.meta │ │ ├── cursor_url.png │ │ ├── cursor_url.png.meta │ │ ├── ddcontroller.png │ │ ├── ddcontroller.png.meta │ │ ├── ddcontroller_transparent.png │ │ ├── ddcontroller_transparent.png.meta │ │ ├── dropShadow.png │ │ ├── dropShadow.png.meta │ │ ├── laserTexture.png │ │ ├── laserTexture.png.meta │ │ ├── roundRect_52px.tif │ │ └── roundRect_52px.tif.meta ├── StreamingAssets.meta └── StreamingAssets │ ├── vid_bigbuckbunny.mp4 │ └── vid_bigbuckbunny.mp4.meta ├── CONTRIBUTING.md ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md └── native_libs ├── build.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── gvr-exoplayersupport ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ ├── CMakeLists.txt │ ├── Unity │ │ ├── IUnityInterface.h │ │ └── UnityGraphics.h │ ├── external_texture.h │ ├── frame_buffer.cc │ ├── frame_buffer.h │ ├── glutils.cc │ ├── glutils.h │ ├── gvrvideo_unity.cc │ ├── jni_helper.cc │ ├── jni_helper.h │ ├── logger.h │ ├── ndk_helper │ │ ├── vecmath.cc │ │ └── vecmath.h │ ├── video_externs.h │ ├── video_player_holder.cc │ ├── video_player_holder.h │ ├── video_player_impl.cc │ ├── video_player_impl.h │ ├── video_quad_screen.cc │ ├── video_quad_screen.h │ ├── video_support_impl.cc │ └── video_support_impl.h │ ├── java │ └── com │ │ └── google │ │ └── gvr │ │ └── exoplayersupport │ │ ├── AsyncRendererBuilder.java │ │ ├── DefaultVideoPlayerFactory.java │ │ ├── DefaultVideoSupport.java │ │ ├── VideoPlayer.java │ │ ├── VideoPlayerFactory.java │ │ ├── impl │ │ └── NativeVideoCallbacks.java │ │ └── sample │ │ ├── DASHAsyncRendererBuilder.java │ │ ├── ExtractorRendererBuilder.java │ │ ├── GLUtil.java │ │ ├── GVRHlsChunkSource.java │ │ ├── HLSAsyncRendererBuilder.java │ │ ├── HlsVideoFactory.java │ │ ├── LocalVideoFactory.java │ │ ├── ObbDataSource.java │ │ ├── TextureHandle.java │ │ ├── VideoExoPlayer.java │ │ ├── VideoTexture.java │ │ ├── WidevineTestMediaDrmCallback.java │ │ ├── YouTubeDashInfo.java │ │ └── ZipResourceFile.java │ └── res │ └── raw │ └── loading_bg.png ├── gvr-keyboardsupport ├── build.gradle ├── libs │ └── gvr_android_common.aar └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── google │ │ └── gvr │ │ └── keyboardsupport │ │ ├── KeyboardFragment.java │ │ └── TransitionVRActivity.java │ └── res │ └── values │ └── strings.xml ├── gvr-permissionsupport ├── build.gradle ├── libs │ └── gvr_android_common.aar ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── google │ │ └── gvr │ │ └── permissionsupport │ │ ├── PermissionsFragment.java │ │ └── TransitionVRActivity.java │ └── res │ └── values │ └── strings.xml ├── settings.gradle └── video_plugin └── build.gradle /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | ### SPECIFIC ISSUE ENCOUNTERED 12 | 13 | 14 | ### HARDWARE/SOFTWARE VERSIONS 15 | - Unity: 16 | - Google VR SDK for Unity: 17 | - Device manufacturer, model, and O/S: 18 | - Device fingerprint: 19 | Use `adb shell getprop ro.build.fingerprint` 20 | - Device display metrics: 21 | Output of `adb shell dumpsys display | grep mBaseDisplayInfo` 22 | - Google VR Services: 23 | On Windows, use: `adb shell pm dump com.google.vr.vrcore | findstr /i "packages: versionName"` 24 | On macOS, use: `adb shell pm dump com.google.vr.vrcore | egrep -i versionName\|packages:` 25 | - Viewer manufacturer & model: 26 | - Link to Unity project that reproduces the issue: 27 | 28 | 29 | ### STEPS TO REPRODUCE THE ISSUE 30 | 1. 31 | 1. 32 | 1. 33 | 34 | ### WORKAROUNDS (IF ANY) 35 | 36 | 37 | ### ADDITIONAL COMMENTS 38 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Unity generated 2 | Builds/ 3 | Temp/ 4 | Library/ 5 | obj/ 6 | 7 | # Visual Studio / MonoDevelop generated 8 | *.csproj 9 | *.unityproj 10 | *.sln 11 | *.suo 12 | *.userprefs 13 | 14 | # Gradle generated 15 | .gradle 16 | 17 | # OS generated 18 | .DS_Store 19 | -------------------------------------------------------------------------------- /Assets/GoogleVR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01bd37f55554b4411813312753a2063c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af933ee63fa154f2587121dc2cfd5ea2 3 | folderAsset: yes 4 | timeCreated: 1535146527 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Demos.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c224bedd0850dc409ad1ee61408fee7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Demos/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e1b20bf0e56c1a4e81d959e54e2841e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Demos/Scenes/Hello6DoFControllers.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c0b832c140b8454f9966240e2cc9b45 3 | timeCreated: 1479266156 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Demos/Scenes/HelloMR.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abadaf21babd44e5998c8ed818bb7650 3 | timeCreated: 1479266156 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Demos/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94cac3c6685d69f43b98e08a99c1655d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Demos/Scripts/DemoObjectController6DoF.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2d5a7a64cb36b94fb3234899ed1afb0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Demos/Scripts/DemoSeeThroughController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24623b77a61c743eaa47d0bc1b6a818f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d5fb7f927cfda049957aba39ec1cb44 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Materials/Controller6DoF.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa5f1e7e0a10ce04795dc813f786b698 3 | timeCreated: 1523031812 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 2100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Materials/GvrSeeThroughUI.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b23799dd344d4aae9628aed7b02e3c6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b04e3f7a2593f5b4082007df12f7f730 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Models/dd6dof_controller.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Beta/Models/dd6dof_controller.fbx -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05d308b50f1d445898348cf2b9532987 3 | folderAsset: yes 4 | timeCreated: 1535757031 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Prefabs/GvrBetaControllerPointer.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 048f0870e3e4143d9a65ef712d616c2b 3 | timeCreated: 1478632992 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Prefabs/GvrBetaHeadset.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae573f8e3d9b8454ab957f3555e61af3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13dc6e2cef0de4225b76faab2828f14c 3 | folderAsset: yes 4 | timeCreated: 1535146527 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Scripts/GvrBetaControllerInput.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e10e28d2cc4e040d392ffbd22271fec0 3 | timeCreated: 1535146527 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Scripts/GvrBetaControllerState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63dd62cc4cd464485a1cb34634b6380e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Scripts/GvrBetaControllerVisualMulti.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d5f98cfdb173ab4db83e5e352f4157d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Scripts/GvrBetaHeadset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bb8269934bb74dbfa736cced96c7dfe 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Scripts/GvrBetaSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9e12e6f5292849138d69ae9652ec4c7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Scripts/GvrControllerInputDeviceExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ad1f53be83054af3bf2009537097ffe 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Scripts/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 930c22e83b0a74849a527c9ec219c917 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Scripts/Internal/GvrBetaAndroidNativeControllerInputProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c88f74ab5b2a4da485361f0518f33d1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Scripts/Internal/GvrBetaEditorControllerInputProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17819b7cdd6cd4bed942d6bac1692381 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Scripts/Internal/GvrBetaHeadsetProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 128e448f226e2478dbd01209ac6b5237 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Scripts/Internal/GvrBetaSettingsProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92fe087984da347418a1018b22a805f9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e9472438400e43cf998b6f572403a4c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Shaders/GvrSeeThroughUI.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 443ac8a88999d4e3b867c0a24f2674eb 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31b21793f3d34604cb73e670e9121e0e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Beta/Textures/Controller6DoF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Beta/Textures/Controller6DoF.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c9f6a26bef6644589977da9be4e7a54 3 | folderAsset: yes 4 | timeCreated: 1462052921 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01c8a812e961c498ba2c57ff1e77edb3 3 | folderAsset: yes 4 | timeCreated: 1479319898 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Editor/DemoInputManagerEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 509a29025635b4c31bb337addea72a7c 3 | timeCreated: 1479318538 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Editor/PermissionsDemoBuildProcessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7c28afb12456b7469919c6a64cee9c1 3 | timeCreated: 1493333870 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Environment.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0035f5afb7b8f4651b0b85476e82dd7a 3 | folderAsset: yes 4 | timeCreated: 1478024344 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Environment/CubeRoom.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c12db6ac95da443448d6aa9e4cfc66c0 3 | timeCreated: 1499380585 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Environment/CubeRoom_BakedDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Environment/CubeRoom_BakedDiffuse.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Environment/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ae1329e0a56a4c869e34ee960a5b00f 3 | folderAsset: yes 4 | timeCreated: 1479502985 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Environment/Materials/CubeRoomEnvMat.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: CubeRoomEnvMat 10 | m_Shader: {fileID: 10752, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: _EMISSION 12 | m_LightmapFlags: 1 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _MainTex: 22 | m_Texture: {fileID: 2800000, guid: 2b8cd4cf3f22749a9b8e8371a42883c2, type: 3} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | m_Floats: [] 26 | m_Colors: [] 27 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Environment/Materials/CubeRoomEnvMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ac05d4c78dbc4bd792428649b027747 3 | timeCreated: 1479502985 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Images.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25dee7b2d68744fe6a3288c0e097cbca 3 | folderAsset: yes 4 | timeCreated: 1479426907 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Images/HelloVR_AppTile_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Images/HelloVR_AppTile_bg.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Images/HelloVR_AppTile_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Images/HelloVR_AppTile_front.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Images/HelloVR_Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Images/HelloVR_Splash.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Images/VideoDemo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4a1ce4df416e4812985618226bf8749 3 | folderAsset: yes 4 | timeCreated: 1471620462 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Images/VideoDemo/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Images/VideoDemo/circle.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Images/VideoDemo/hollowknob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Images/VideoDemo/hollowknob.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Images/VideoDemo/ic_pause_white_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Images/VideoDemo/ic_pause_white_72.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Images/VideoDemo/ic_play_arrow_white_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Images/VideoDemo/ic_play_arrow_white_72.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Images/VideoDemo/ic_volume_up_white_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Images/VideoDemo/ic_volume_up_white_48.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Images/VideoDemo/loading_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Images/VideoDemo/loading_bg.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Images/ic_launcher_hello_vr_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Images/ic_launcher_hello_vr_round.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Images/logo_hello_vr_108px.svg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2e49b9842c8f44d79bac6ce9dc1baf1 3 | timeCreated: 1510962199 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c302b52124e174ebc9c49aed885323c3 3 | folderAsset: yes 4 | timeCreated: 1479418357 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Materials/HelloVR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea16135a611c24e6a8827ada2c93b9ce 3 | folderAsset: yes 4 | timeCreated: 1479426475 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Materials/HelloVR/IcosahedronBlue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: daad62324deb0cf448e5c805c8459bff 3 | timeCreated: 1478804663 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Materials/HelloVR/IcosahedronPink.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0edec395166a3244592f3532c7ce794c 3 | timeCreated: 1478804663 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Materials/HelloVR/QuadSphereBlue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07e4eb2033080474d8aa55e5a35d49ca 3 | timeCreated: 1509062502 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: -1 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Materials/HelloVR/QuadSpherePink.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5f8095b20dc2423cad63ce7379784d7 3 | timeCreated: 1509062502 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: -1 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Materials/HelloVR/SafetyRing.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9118f68ba7df646b495e4208d2233d85 3 | timeCreated: 1510963272 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Materials/HelloVR/TriSphereBlue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5801e27da69043b69f7f194b62c2716 3 | timeCreated: 1509062502 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: -1 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Materials/HelloVR/TriSpherePink.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c63bdfc3c6f1447c8bcb58360dd31d6a 3 | timeCreated: 1509062502 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: -1 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d04c9d69d2f9b423d9ca860cd588729b 3 | folderAsset: yes 4 | timeCreated: 1509061425 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Models/HelloVR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 979468c9efd0140aeac227a3fb26f52a 3 | folderAsset: yes 4 | timeCreated: 1509061446 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2df43a09cf9714acd85487c89c6371fd 3 | folderAsset: yes 4 | timeCreated: 1479319880 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Prefabs/DemoInfoPanel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 514238b2b0fc840f4b919e60b226e93b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Prefabs/DemoInputManager.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8524bbe5e592a42dc9251484a73c9c7f 3 | timeCreated: 1479274754 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Prefabs/DemoSceneManager.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87c35d808850c410ca0e398a8da84e68 3 | timeCreated: 1485218930 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Prefabs/Keyboard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a2dbfca79ae443dea4cc6f01e111e4f 3 | folderAsset: yes 4 | timeCreated: 1478817583 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Prefabs/Keyboard/KeyboardDelegateExample.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b7eeb268f8424f809fc34c33b2a6820 3 | timeCreated: 1479081998 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Prefabs/VideoDemo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52b7479757bdb4bca9e5036b244c3c93 3 | folderAsset: yes 4 | timeCreated: 1471470468 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Prefabs/VideoDemo/MenuBar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 421f38d36955b4473b99800e7cc5ee37 3 | timeCreated: 1475163586 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Prefabs/VideoDemo/VideoControls.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a62dfff2c15946c6a3caf52aef4bcf4 3 | timeCreated: 1472152474 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcc56223db7e54229a24c587c334e51d 3 | folderAsset: yes 4 | timeCreated: 1479427356 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scenes/HelloVR.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb36d2905dc634f1c9eecb35beecaca8 3 | timeCreated: 1479266156 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scenes/KeyboardDemo.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a44fd944cf574740a8f88ff7e39a487 3 | timeCreated: 1462053048 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scenes/PermissionsDemo.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d5572a3735414cc9ad53b169fe2c7e8 3 | timeCreated: 1462053048 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scenes/VideoDemo.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c79d901ffb34f428eadaa3a7269a6c7c 3 | timeCreated: 1479427319 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 388cdc51b5a45405999224aeec93edbc 3 | folderAsset: yes 4 | timeCreated: 1479426561 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/DemoInfoPanel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d21c263a13154ba69048ad7e9f4a275 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/DemoInputManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddd25f1308577456cbaa207901961126 3 | timeCreated: 1479273440 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/DemoSceneManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bec9ea3efe7849ffae666549aca3cad 3 | timeCreated: 1485218787 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/HelloVR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8da0c492ae2543a2a0198a7187320c0 3 | folderAsset: yes 4 | timeCreated: 1479426567 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/HelloVR/HeadsetDemoManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94f5d450d1bd94c97b1dc8109b633ac0 3 | timeCreated: 1498438356 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/HelloVR/HelloVRManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae2d286fc7c3e427bbde238c0ebb970b 3 | timeCreated: 1490659306 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/HelloVR/ObjectController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6d9412aff759420192d8dcf33f969bb 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/KeyboardDemo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28bcc019cfb364ff4a611197fd324537 3 | folderAsset: yes 4 | timeCreated: 1478818536 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/KeyboardDemo/KeyboardDelegateExample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff12693eea0a446d0a2183f2ffe9c711 3 | timeCreated: 1478820263 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/PermissionsDemo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34618aef1cb8e43378c9777f103319ea 3 | folderAsset: yes 4 | timeCreated: 1479427139 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/PermissionsDemo/PermissionsFlowManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e8df902e7cb54f57bd1492b46fbe33d 3 | timeCreated: 1477353933 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0b590cb0333b487384953a9bb760570 3 | folderAsset: yes 4 | timeCreated: 1471620442 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/AutoPlayVideo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e71f5afb881f443bbce909fe451d8fe 3 | timeCreated: 1471303020 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/InputEvents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86f712ff768b04bea868f2aadbe9f8bc 3 | folderAsset: yes 4 | timeCreated: 1543350224 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/InputEvents/BoolEvent.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // Copyright 2016 Google Inc. All rights reserved. 4 | // 5 | // Licensed under the Apache License, Version 2.0 (the "License"); 6 | // you may not use this file except in compliance with the License. 7 | // You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | // 17 | //----------------------------------------------------------------------- 18 | 19 | namespace GoogleVR.VideoDemo 20 | { 21 | using System; 22 | using UnityEngine; 23 | using UnityEngine.Events; 24 | 25 | /// A `UnityEvent` wrapper for boolean events. 26 | [Serializable] 27 | public class BoolEvent : UnityEvent 28 | { 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/InputEvents/BoolEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25d360aef03fb4c7ba94b2ee40251a24 3 | timeCreated: 1542148172 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/InputEvents/ButtonEvent.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // Copyright 2016 Google Inc. All rights reserved. 4 | // 5 | // Licensed under the Apache License, Version 2.0 (the "License"); 6 | // you may not use this file except in compliance with the License. 7 | // You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | // 17 | //----------------------------------------------------------------------- 18 | 19 | namespace GoogleVR.VideoDemo 20 | { 21 | using System; 22 | using UnityEngine; 23 | using UnityEngine.Events; 24 | 25 | /// 26 | /// A `UnityEvent` wrapper for Button events, for example 27 | /// `Gvr.Internal.ControllerUtils.AnyButtonUp(GvrControllerButton.App)`. 28 | /// 29 | [Serializable] 30 | public class ButtonEvent : UnityEvent 31 | { 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/InputEvents/ButtonEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f3d7e9ca47ce4799ab245e57ac7043f 3 | timeCreated: 1542148172 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/InputEvents/FloatEvent.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // Copyright 2016 Google Inc. All rights reserved. 4 | // 5 | // Licensed under the Apache License, Version 2.0 (the "License"); 6 | // you may not use this file except in compliance with the License. 7 | // You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | // 17 | //----------------------------------------------------------------------- 18 | 19 | namespace GoogleVR.VideoDemo 20 | { 21 | using System; 22 | using UnityEngine; 23 | using UnityEngine.Events; 24 | 25 | /// A `UnityEvent` wrapper for float events. 26 | [Serializable] 27 | public class FloatEvent : UnityEvent 28 | { 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/InputEvents/FloatEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b0edb9779e904e3998b1b65bcc8d6d6 3 | timeCreated: 1542148172 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/InputEvents/GameObjectEvent.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // Copyright 2016 Google Inc. All rights reserved. 4 | // 5 | // Licensed under the Apache License, Version 2.0 (the "License"); 6 | // you may not use this file except in compliance with the License. 7 | // You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | // 17 | //----------------------------------------------------------------------- 18 | 19 | namespace GoogleVR.VideoDemo 20 | { 21 | using System; 22 | using UnityEngine; 23 | using UnityEngine.Events; 24 | 25 | /// A `UnityEvent` wrapper for GameObject events. 26 | [Serializable] 27 | public class GameObjectEvent : UnityEvent 28 | { 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/InputEvents/GameObjectEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 479dd5a30665142c393a0670483e4e97 3 | timeCreated: 1542148172 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/InputEvents/TouchPadEvent.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // Copyright 2016 Google Inc. All rights reserved. 4 | // 5 | // Licensed under the Apache License, Version 2.0 (the "License"); 6 | // you may not use this file except in compliance with the License. 7 | // You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | // 17 | //----------------------------------------------------------------------- 18 | 19 | namespace GoogleVR.VideoDemo 20 | { 21 | using System; 22 | using UnityEngine; 23 | using UnityEngine.Events; 24 | 25 | /// A `UnityEvent` wrapper for TouchPad events. 26 | [Serializable] 27 | public class TouchPadEvent : UnityEvent 28 | { 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/InputEvents/TouchPadEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3725fb9950d834c28b8c8263c8c45969 3 | timeCreated: 1542148172 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/InputEvents/TransformEvent.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // Copyright 2016 Google Inc. All rights reserved. 4 | // 5 | // Licensed under the Apache License, Version 2.0 (the "License"); 6 | // you may not use this file except in compliance with the License. 7 | // You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | // 17 | //----------------------------------------------------------------------- 18 | 19 | namespace GoogleVR.VideoDemo 20 | { 21 | using System; 22 | using UnityEngine; 23 | using UnityEngine.Events; 24 | 25 | /// A `UnityEvent` wrapper for Transform events. 26 | [Serializable] 27 | public class TransformEvent : UnityEvent 28 | { 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/InputEvents/TransformEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43cd0765b09374af19eb4d7acbea02ba 3 | timeCreated: 1542148172 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/InputEvents/Vector2Event.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // Copyright 2016 Google Inc. All rights reserved. 4 | // 5 | // Licensed under the Apache License, Version 2.0 (the "License"); 6 | // you may not use this file except in compliance with the License. 7 | // You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | // 17 | //----------------------------------------------------------------------- 18 | 19 | namespace GoogleVR.VideoDemo 20 | { 21 | using System; 22 | using UnityEngine; 23 | using UnityEngine.Events; 24 | 25 | /// A `UnityEvent` wrapper for Vector2 events. 26 | [Serializable] 27 | public class Vector2Event : UnityEvent 28 | { 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/InputEvents/Vector2Event.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60f1e4636c2474e55a25e6d4ff372ee7 3 | timeCreated: 1542148172 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/InputEvents/Vector3Event.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // Copyright 2016 Google Inc. All rights reserved. 4 | // 5 | // Licensed under the Apache License, Version 2.0 (the "License"); 6 | // you may not use this file except in compliance with the License. 7 | // You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | // 17 | //----------------------------------------------------------------------- 18 | 19 | namespace GoogleVR.VideoDemo 20 | { 21 | using System; 22 | using UnityEngine; 23 | using UnityEngine.Events; 24 | 25 | /// A `UnityEvent` wrapper for Vector3 events. 26 | [Serializable] 27 | public class Vector3Event : UnityEvent 28 | { 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/InputEvents/Vector3Event.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c75c86da0ae44394be62c13431686c2 3 | timeCreated: 1542148172 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/ScrubberEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0cc7f51d6c6b140f79f7afded8b84284 3 | timeCreated: 1472155348 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/SwitchVideos.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 114ed7f3f1d114a2988b1f93a233b40e 3 | timeCreated: 1472683809 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/VideoControlsManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11ce60bdf78924133940a4a64555e784 3 | timeCreated: 1471470978 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Scripts/VideoDemo/VideoPlayerReference.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70f36fab7a81646eeb5c083264db5be0 3 | timeCreated: 1471625726 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 195ccbb7ac29241f1b390a3fb04718af 3 | folderAsset: yes 4 | timeCreated: 1479418030 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Shaders/HelloVR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a046f2daa89eb47d18fe233481b9e55e 3 | folderAsset: yes 4 | timeCreated: 1479426482 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Shaders/HelloVR/HelloVRUnlitGrayscaleToColor.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbc799bc7ede6a940b24eff19a72979c 3 | timeCreated: 1474923324 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Sounds.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d729278f721946da995826756ef4d5a 3 | folderAsset: yes 4 | timeCreated: 1479426592 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Sounds/HelloVR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 803b677f7e8af405b840c081a7856929 3 | folderAsset: yes 4 | timeCreated: 1479426602 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Sounds/HelloVR/HelloVR_Tone_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Sounds/HelloVR/HelloVR_Tone_1.wav -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Sounds/HelloVR/HelloVR_Tone_1.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7491bc024d4e4f1f9a6dd7f09558029 3 | timeCreated: 1510883027 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Sounds/HelloVR/HelloVR_Tone_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Sounds/HelloVR/HelloVR_Tone_2.wav -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Sounds/HelloVR/HelloVR_Tone_2.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1de4e67910a3493e9ba31c4745c9bfc 3 | timeCreated: 1510883027 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Sounds/HelloVR/HelloVR_Tone_3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Sounds/HelloVR/HelloVR_Tone_3.wav -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Sounds/HelloVR/HelloVR_Tone_3.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9ad5fd9c2ab042098d2625d6cde66cd 3 | timeCreated: 1510883027 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 494e6baa06c70403d83626a2cafa6c9e 3 | folderAsset: yes 4 | timeCreated: 1479418030 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Textures/HelloVR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21d86777c20e3410da0f169870d9d05c 3 | folderAsset: yes 4 | timeCreated: 1479426540 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Textures/HelloVR/Icosahedron_Blue_BakedDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Textures/HelloVR/Icosahedron_Blue_BakedDiffuse.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Textures/HelloVR/Icosahedron_Pink_BakedDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Textures/HelloVR/Icosahedron_Pink_BakedDiffuse.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Textures/HelloVR/QuadSphere_Blue_BakedDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Textures/HelloVR/QuadSphere_Blue_BakedDiffuse.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Textures/HelloVR/QuadSphere_Pink_BakedDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Textures/HelloVR/QuadSphere_Pink_BakedDiffuse.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Textures/HelloVR/SafetyRing_Alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Textures/HelloVR/SafetyRing_Alpha.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Textures/HelloVR/TriSphere_Blue_BakedDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Textures/HelloVR/TriSphere_Blue_BakedDiffuse.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Demos/Textures/HelloVR/TriSphere_Pink_BakedDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Demos/Textures/HelloVR/TriSphere_Pink_BakedDiffuse.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c98c5ffcf17d49fc88af4e1d260f2cb 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Editor/Controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08317980f07004b32aefb3c4a32e6923 3 | folderAsset: yes 4 | timeCreated: 1482368683 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Editor/Controller/GvrControllerVisualEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05d7d64713447433b86cb9a4e3d48560 3 | timeCreated: 1498249337 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Editor/Controller/GvrLaserPointerEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc6e38fe705a640ba9cc80555465b13e 3 | timeCreated: 1498249337 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Editor/Controller/GvrLaserVisualEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66fe40e11a2514648906e6825b026b85 3 | timeCreated: 1498249337 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Editor/Controller/GvrTooltipEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23485e28fa60c463f8235998a0e76e6a 3 | timeCreated: 1482187746 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Editor/EventSystem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65bc44f11433145749eaf7219d8dfdd3 3 | folderAsset: yes 4 | timeCreated: 1487103058 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Editor/EventSystem/GvrPointerScrollInputEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da538b2d940864934bfd4a6f2e6d0602 3 | timeCreated: 1487103089 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Editor/GvrBuildProcessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acad0e6b1721a4b30992f78c06434321 3 | timeCreated: 1490158482 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Editor/GvrEditorEmulatorEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f789f1d07e73f42b398b211da58efc42 3 | timeCreated: 1498601428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Editor/GvrEditorMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5eb60798954e54a7280c0cd353773edf 3 | timeCreated: 1448497144 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Editor/GvrEditorSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce0ec89649a704bd991b4db7e412794f 3 | timeCreated: 1482180802 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Editor/GvrHeadsetEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2377449ab35649b58bcd7315f345e88 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Editor/InstantPreviewEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f753bca1909314275a77fb53ced78d95 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a589de3134513e34e8b233ada87a3c70 3 | folderAsset: yes 4 | timeCreated: 1476489356 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /Assets/GoogleVR/Fonts/Roboto-Medium.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4eedafad5084240419e649245c7b2093 3 | timeCreated: 1476470356 4 | licenseType: Pro 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontNames: 13 | - Roboto 14 | fallbackFontReferences: [] 15 | customCharacters: 16 | fontRenderingMode: 0 17 | ascentCalculationMode: 1 18 | userData: 19 | assetBundleName: 20 | assetBundleVariant: 21 | -------------------------------------------------------------------------------- /Assets/GoogleVR/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ae37b2426f844468ab02f411263ae0d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7d2058154010df48a2e826948d29835 3 | folderAsset: yes 4 | timeCreated: 1477437068 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Materials/ControllerBase.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: ControllerBase 10 | m_Shader: {fileID: 4800000, guid: fdbce15836bf64163856f689fdd67b2c, type: 3} 11 | m_ShaderKeywords: _EMISSION 12 | m_LightmapFlags: 1 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _MainTex: 22 | m_Texture: {fileID: 2800000, guid: 16bedee72525148848c1c905828661fb, type: 3} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | m_Floats: [] 26 | m_Colors: 27 | - _Color: {r: 0.61764705, g: 0.61764705, b: 0.61764705, a: 1} 28 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Materials/ControllerBase.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b4f6031d569a624ba87b631c93a788a 3 | timeCreated: 1472073995 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Materials/ControllerBaseTransparent.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: ControllerBaseTransparent 10 | m_Shader: {fileID: 4800000, guid: fdbce15836bf64163856f689fdd67b2c, type: 3} 11 | m_ShaderKeywords: _EMISSION 12 | m_LightmapFlags: 1 13 | m_CustomRenderQueue: -1 14 | stringTagMap: {} 15 | m_SavedProperties: 16 | serializedVersion: 2 17 | m_TexEnvs: 18 | - first: 19 | name: _MainTex 20 | second: 21 | m_Texture: {fileID: 2800000, guid: bf90d5db643cc45a8a8ea09172b0d000, type: 3} 22 | m_Scale: {x: 1, y: 1} 23 | m_Offset: {x: 0, y: 0} 24 | m_Floats: [] 25 | m_Colors: 26 | - first: 27 | name: _Color 28 | second: {r: 1, g: 1, b: 1, a: 1} 29 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Materials/ControllerBaseTransparent.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22d5bb9dc35f641f3adaf464127b9507 3 | timeCreated: 1499785898 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Materials/ControllerLaser.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: ControllerLaser 10 | m_Shader: {fileID: 4800000, guid: 66ce34a5829a64856be634609edd8912, type: 3} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 5 13 | m_CustomRenderQueue: -1 14 | stringTagMap: {} 15 | m_SavedProperties: 16 | serializedVersion: 2 17 | m_TexEnvs: 18 | - first: 19 | name: _MainTex 20 | second: 21 | m_Texture: {fileID: 2800000, guid: e314ee0eb28e9ad4ba2950c17b95c25d, type: 3} 22 | m_Scale: {x: 1, y: 1} 23 | m_Offset: {x: 0, y: 0} 24 | m_Floats: [] 25 | m_Colors: [] 26 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Materials/ControllerLaser.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6329ec80f51d6049a5d00d86224003b 3 | timeCreated: 1472081066 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Materials/ControllerReticle.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebbccbcf1451ddf4199eab062dc6d367 3 | timeCreated: 1475515069 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Materials/ReticlePointer.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cb1460f617514a888f47071314ccdae 3 | timeCreated: 1446892072 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Materials/TooltipFont.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ff3914f115e149d49d001ed2cea77c8 3 | timeCreated: 1479426356 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Materials/TooltipImage.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f457230f725f45c4b83b007ff7ca38e 3 | timeCreated: 1479426356 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Materials/TooltipSimple.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae4e711941ecc4590a09ae58653816ee 3 | timeCreated: 1479426356 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Materials/Video.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 718625e334ab9468e9089b7b37cfccea 3 | folderAsset: yes 4 | timeCreated: 1477600849 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Materials/Video/VideoMono.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6f8966fc281944c1a0e624a9fb657e4 3 | timeCreated: 1469833028 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Materials/Video/VideoStereo.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3bbe11c576194adba41e6f574dda321 3 | timeCreated: 1469833028 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Materials/Video/VideoStereoInside.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38722f7e29e284a8bb3a91c83a5b8848 3 | timeCreated: 1470165632 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b283d0fee0429746a4f8ad2647702ca 3 | folderAsset: yes 4 | timeCreated: 1477437367 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Models/ddcontroller.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Models/ddcontroller.fbx -------------------------------------------------------------------------------- /Assets/GoogleVR/Models/ddtooltips.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Models/ddtooltips.fbx -------------------------------------------------------------------------------- /Assets/GoogleVR/Models/hemisphere_18x18.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Models/hemisphere_18x18.fbx -------------------------------------------------------------------------------- /Assets/GoogleVR/Models/sphere_36x18.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Models/sphere_36x18.fbx -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 347ef2dc1c79b4cd3bee08a70445fccb 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 480ae536df50249748e9a6534d2a1d5a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Android/AndroidManifest-6DOF.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6a4dc79e16b24f91978bbf65972aebb 3 | timeCreated: 1498446981 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Android/AndroidManifest-Cardboard.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d58d208ecab3b4c68864333c61ffac7b 3 | timeCreated: 1473365081 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Android/AndroidManifest-Daydream.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48f7ce7c2a1174ffdac9ebd5815bfa13 3 | timeCreated: 1473365498 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Android/exoplayer-r1.5.11.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/Android/exoplayer-r1.5.11.aar -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Android/exoplayer-r1.5.11.aar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58b04ce28ce724d30aa0d863e619a6bc 3 | timeCreated: 1506951432 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Android: Android 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Any: 21 | second: 22 | enabled: 0 23 | settings: {} 24 | data: 25 | first: 26 | Editor: Editor 27 | second: 28 | enabled: 0 29 | settings: 30 | DefaultValueInitialized: true 31 | userData: 32 | assetBundleName: 33 | assetBundleVariant: 34 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Android/gvr-exoplayersupport-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/Android/gvr-exoplayersupport-release.aar -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Android/gvr-exoplayersupport-release.aar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c18723f98ca9a4b82afef1048c324df6 3 | timeCreated: 1506951432 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Android: Android 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Any: 21 | second: 22 | enabled: 0 23 | settings: {} 24 | data: 25 | first: 26 | Editor: Editor 27 | second: 28 | enabled: 0 29 | settings: 30 | DefaultValueInitialized: true 31 | userData: 32 | assetBundleName: 33 | assetBundleVariant: 34 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Android/gvr-keyboard.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/Android/gvr-keyboard.aar -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Android/gvr-keyboard.aar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b15e9264b4be00b4081309189e69d16c 3 | timeCreated: 1517512149 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Android: Android 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Any: 21 | second: 22 | enabled: 0 23 | settings: {} 24 | data: 25 | first: 26 | Editor: Editor 27 | second: 28 | enabled: 0 29 | settings: 30 | DefaultValueInitialized: true 31 | userData: 32 | assetBundleName: 33 | assetBundleVariant: 34 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Android/gvr-keyboardsupport-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/Android/gvr-keyboardsupport-release.aar -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Android/gvr-keyboardsupport-release.aar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abfc5232453744fb49d723562dace4c9 3 | timeCreated: 1506951432 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Android: Android 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Any: 21 | second: 22 | enabled: 0 23 | settings: {} 24 | data: 25 | first: 26 | Editor: Editor 27 | second: 28 | enabled: 0 29 | settings: 30 | DefaultValueInitialized: true 31 | userData: 32 | assetBundleName: 33 | assetBundleVariant: 34 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Android/gvr-permissionsupport-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/Android/gvr-permissionsupport-release.aar -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Android/gvr-permissionsupport-release.aar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86e690da1921442f6ab8af8891453583 3 | timeCreated: 1506951432 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Android: Android 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Any: 21 | second: 22 | enabled: 0 23 | settings: {} 24 | data: 25 | first: 26 | Editor: Editor 27 | second: 28 | enabled: 0 29 | settings: 30 | DefaultValueInitialized: true 31 | userData: 32 | assetBundleName: 33 | assetBundleVariant: 34 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Android/gvr.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/Android/gvr.aar -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Android/gvr.aar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bea8d7578c4bd412b85536ce494761c5 3 | timeCreated: 1508991741 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Android: Android 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Any: 21 | second: 22 | enabled: 0 23 | settings: {} 24 | data: 25 | first: 26 | Editor: Editor 27 | second: 28 | enabled: 0 29 | settings: 30 | DefaultValueInitialized: true 31 | userData: 32 | assetBundleName: 33 | assetBundleVariant: 34 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Android/proguard-gvr.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6cef2ddf786f4c10a3c9424db54acf1 3 | timeCreated: 1507333197 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Google.ProtocolBuffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/Google.ProtocolBuffers.dll -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/Google.ProtocolBuffers.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb0b9a42141e349a6a47f93165aeca3f 3 | timeCreated: 1462046662 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | Editor: 15 | enabled: 0 16 | settings: 17 | DefaultValueInitialized: true 18 | WindowsStoreApps: 19 | enabled: 0 20 | settings: 21 | CPU: AnyCPU 22 | userData: 23 | assetBundleName: 24 | assetBundleVariant: 25 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 584f6b53f763e409390610a85304e249 3 | folderAsset: yes 4 | timeCreated: 1449672488 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86/instant_preview_shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/x86/instant_preview_shared.dll -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86/instant_preview_shared.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cfd74634de364e7e844df8d06ed60d9 3 | timeCreated: 1503969906 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Android: 12 | enabled: 0 13 | settings: 14 | CPU: AnyCPU 15 | Any: 16 | enabled: 0 17 | settings: {} 18 | Editor: 19 | enabled: 1 20 | settings: 21 | CPU: x86 22 | DefaultValueInitialized: true 23 | OS: Windows 24 | Linux: 25 | enabled: 0 26 | settings: 27 | CPU: x86 28 | Linux64: 29 | enabled: 0 30 | settings: 31 | CPU: None 32 | LinuxUniversal: 33 | enabled: 0 34 | settings: 35 | CPU: x86 36 | OSXIntel: 37 | enabled: 0 38 | settings: 39 | CPU: AnyCPU 40 | OSXIntel64: 41 | enabled: 0 42 | settings: 43 | CPU: None 44 | OSXUniversal: 45 | enabled: 0 46 | settings: 47 | CPU: x86 48 | Win: 49 | enabled: 0 50 | settings: 51 | CPU: AnyCPU 52 | Win64: 53 | enabled: 0 54 | settings: 55 | CPU: None 56 | userData: 57 | assetBundleName: 58 | assetBundleVariant: 59 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86/instant_preview_unity_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/x86/instant_preview_unity_plugin.dll -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86/instant_preview_unity_plugin.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28d5dac5d3722404cbb8900e0cd82eb0 3 | timeCreated: 1503969906 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Android: 12 | enabled: 0 13 | settings: 14 | CPU: AnyCPU 15 | Any: 16 | enabled: 0 17 | settings: {} 18 | Editor: 19 | enabled: 1 20 | settings: 21 | CPU: x86 22 | DefaultValueInitialized: true 23 | OS: Windows 24 | Linux: 25 | enabled: 0 26 | settings: 27 | CPU: x86 28 | Linux64: 29 | enabled: 0 30 | settings: 31 | CPU: None 32 | LinuxUniversal: 33 | enabled: 0 34 | settings: 35 | CPU: x86 36 | OSXIntel: 37 | enabled: 0 38 | settings: 39 | CPU: AnyCPU 40 | OSXIntel64: 41 | enabled: 0 42 | settings: 43 | CPU: None 44 | OSXUniversal: 45 | enabled: 0 46 | settings: 47 | CPU: x86 48 | Win: 49 | enabled: 0 50 | settings: 51 | CPU: AnyCPU 52 | Win64: 53 | enabled: 0 54 | settings: 55 | CPU: None 56 | userData: 57 | assetBundleName: 58 | assetBundleVariant: 59 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/x86/libeay32.dll -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86/libeay32.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a6fdbf12fe8d4d9b81bc1ca40d8ab12 3 | timeCreated: 1503969907 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Android: 12 | enabled: 0 13 | settings: 14 | CPU: AnyCPU 15 | Any: 16 | enabled: 0 17 | settings: {} 18 | Editor: 19 | enabled: 1 20 | settings: 21 | CPU: x86 22 | DefaultValueInitialized: true 23 | OS: Windows 24 | Linux: 25 | enabled: 0 26 | settings: 27 | CPU: x86 28 | Linux64: 29 | enabled: 0 30 | settings: 31 | CPU: None 32 | LinuxUniversal: 33 | enabled: 0 34 | settings: 35 | CPU: x86 36 | OSXIntel: 37 | enabled: 0 38 | settings: 39 | CPU: AnyCPU 40 | OSXIntel64: 41 | enabled: 0 42 | settings: 43 | CPU: None 44 | OSXUniversal: 45 | enabled: 0 46 | settings: 47 | CPU: x86 48 | Win: 49 | enabled: 0 50 | settings: 51 | CPU: AnyCPU 52 | Win64: 53 | enabled: 0 54 | settings: 55 | CPU: None 56 | userData: 57 | assetBundleName: 58 | assetBundleVariant: 59 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/x86/ssleay32.dll -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86/ssleay32.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b6f93de72fcd41e887181f363442d6f 3 | timeCreated: 1503969907 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Android: 12 | enabled: 0 13 | settings: 14 | CPU: AnyCPU 15 | Any: 16 | enabled: 0 17 | settings: {} 18 | Editor: 19 | enabled: 1 20 | settings: 21 | CPU: x86 22 | DefaultValueInitialized: true 23 | OS: Windows 24 | Linux: 25 | enabled: 0 26 | settings: 27 | CPU: x86 28 | Linux64: 29 | enabled: 0 30 | settings: 31 | CPU: None 32 | LinuxUniversal: 33 | enabled: 0 34 | settings: 35 | CPU: x86 36 | OSXIntel: 37 | enabled: 0 38 | settings: 39 | CPU: AnyCPU 40 | OSXIntel64: 41 | enabled: 0 42 | settings: 43 | CPU: None 44 | OSXUniversal: 45 | enabled: 0 46 | settings: 47 | CPU: x86 48 | Win: 49 | enabled: 0 50 | settings: 51 | CPU: AnyCPU 52 | Win64: 53 | enabled: 0 54 | settings: 55 | CPU: None 56 | userData: 57 | assetBundleName: 58 | assetBundleVariant: 59 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86/zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/x86/zlib.dll -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86/zlib.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc4616b32e59e4b29af4ffd55e2b22f2 3 | timeCreated: 1503969907 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Android: 12 | enabled: 0 13 | settings: 14 | CPU: AnyCPU 15 | Any: 16 | enabled: 0 17 | settings: {} 18 | Editor: 19 | enabled: 1 20 | settings: 21 | CPU: x86 22 | DefaultValueInitialized: true 23 | OS: Windows 24 | Linux: 25 | enabled: 0 26 | settings: 27 | CPU: x86 28 | Linux64: 29 | enabled: 0 30 | settings: 31 | CPU: None 32 | LinuxUniversal: 33 | enabled: 0 34 | settings: 35 | CPU: x86 36 | OSXIntel: 37 | enabled: 0 38 | settings: 39 | CPU: AnyCPU 40 | OSXIntel64: 41 | enabled: 0 42 | settings: 43 | CPU: None 44 | OSXUniversal: 45 | enabled: 0 46 | settings: 47 | CPU: x86 48 | Win: 49 | enabled: 0 50 | settings: 51 | CPU: AnyCPU 52 | Win64: 53 | enabled: 0 54 | settings: 55 | CPU: None 56 | userData: 57 | assetBundleName: 58 | assetBundleVariant: 59 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 006f50925eb084fb7a542a990aee6ee1 3 | folderAsset: yes 4 | timeCreated: 1449672488 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/instant_preview_shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/x86_64/instant_preview_shared.dll -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/instant_preview_shared.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 249b97667d64740af9354546d1ff65b9 3 | timeCreated: 1503969906 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Android: 12 | enabled: 0 13 | settings: 14 | CPU: AnyCPU 15 | Any: 16 | enabled: 0 17 | settings: {} 18 | Editor: 19 | enabled: 1 20 | settings: 21 | CPU: x86_64 22 | DefaultValueInitialized: true 23 | OS: Windows 24 | Linux: 25 | enabled: 0 26 | settings: 27 | CPU: None 28 | Linux64: 29 | enabled: 0 30 | settings: 31 | CPU: x86_64 32 | LinuxUniversal: 33 | enabled: 0 34 | settings: 35 | CPU: x86_64 36 | OSXIntel: 37 | enabled: 0 38 | settings: 39 | CPU: None 40 | OSXIntel64: 41 | enabled: 0 42 | settings: 43 | CPU: AnyCPU 44 | OSXUniversal: 45 | enabled: 0 46 | settings: 47 | CPU: x86_64 48 | Win: 49 | enabled: 0 50 | settings: 51 | CPU: None 52 | Win64: 53 | enabled: 0 54 | settings: 55 | CPU: AnyCPU 56 | userData: 57 | assetBundleName: 58 | assetBundleVariant: 59 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb05b49a78ed748bea54269e59bd3184 3 | folderAsset: yes 4 | timeCreated: 1523356692 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2709622b8586a45e282dbc93c7e026f9 3 | folderAsset: yes 4 | timeCreated: 1523356692 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.bundle/Contents/MacOS/instant_preview_unity_plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.bundle/Contents/MacOS/instant_preview_unity_plugin -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.bundle/Contents/MacOS/instant_preview_unity_plugin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c384529221944e61942c06a628045d5 3 | timeCreated: 1523356692 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.bundle/Contents/MacOS/libgpr.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.bundle/Contents/MacOS/libgpr.dylib -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.bundle/Contents/MacOS/libgpr.dylib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea514fdbb66cd470da9d21468feb7f40 3 | timeCreated: 1523356692 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.bundle/Contents/MacOS/libgrpc++.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.bundle/Contents/MacOS/libgrpc++.dylib -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.bundle/Contents/MacOS/libgrpc++.dylib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7936e2329e93145e5b5b9b0525a04b0e 3 | timeCreated: 1523356692 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.bundle/Contents/MacOS/libgrpc.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.bundle/Contents/MacOS/libgrpc.dylib -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.bundle/Contents/MacOS/libgrpc.dylib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0d398507678c4380b80f9941f2fbba5 3 | timeCreated: 1523356692 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.bundle/Contents/MacOS/libinstant_preview_shared.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.bundle/Contents/MacOS/libinstant_preview_shared.dylib -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.bundle/Contents/MacOS/libinstant_preview_shared.dylib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60ec0b27224234d6f9c3f74349800b0c 3 | timeCreated: 1523356692 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.dll -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/instant_preview_unity_plugin.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16e6b86de4a9e4f16b8a25b413d684d7 3 | timeCreated: 1503969906 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Android: 12 | enabled: 0 13 | settings: 14 | CPU: AnyCPU 15 | Any: 16 | enabled: 0 17 | settings: {} 18 | Editor: 19 | enabled: 1 20 | settings: 21 | CPU: x86_64 22 | DefaultValueInitialized: true 23 | OS: Windows 24 | Linux: 25 | enabled: 0 26 | settings: 27 | CPU: None 28 | Linux64: 29 | enabled: 0 30 | settings: 31 | CPU: x86_64 32 | LinuxUniversal: 33 | enabled: 0 34 | settings: 35 | CPU: x86_64 36 | OSXIntel: 37 | enabled: 0 38 | settings: 39 | CPU: None 40 | OSXIntel64: 41 | enabled: 0 42 | settings: 43 | CPU: AnyCPU 44 | OSXUniversal: 45 | enabled: 0 46 | settings: 47 | CPU: x86_64 48 | Win: 49 | enabled: 0 50 | settings: 51 | CPU: None 52 | Win64: 53 | enabled: 0 54 | settings: 55 | CPU: AnyCPU 56 | userData: 57 | assetBundleName: 58 | assetBundleVariant: 59 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/x86_64/libeay32.dll -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/libeay32.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d9b7ae7a11da4dc79be5a40ae8b09dd 3 | timeCreated: 1503969907 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Android: 12 | enabled: 0 13 | settings: 14 | CPU: AnyCPU 15 | Any: 16 | enabled: 0 17 | settings: {} 18 | Editor: 19 | enabled: 1 20 | settings: 21 | CPU: x86_64 22 | DefaultValueInitialized: true 23 | OS: Windows 24 | Linux: 25 | enabled: 0 26 | settings: 27 | CPU: None 28 | Linux64: 29 | enabled: 0 30 | settings: 31 | CPU: x86_64 32 | LinuxUniversal: 33 | enabled: 0 34 | settings: 35 | CPU: x86_64 36 | OSXIntel: 37 | enabled: 0 38 | settings: 39 | CPU: None 40 | OSXIntel64: 41 | enabled: 0 42 | settings: 43 | CPU: AnyCPU 44 | OSXUniversal: 45 | enabled: 0 46 | settings: 47 | CPU: x86_64 48 | Win: 49 | enabled: 0 50 | settings: 51 | CPU: None 52 | Win64: 53 | enabled: 0 54 | settings: 55 | CPU: AnyCPU 56 | userData: 57 | assetBundleName: 58 | assetBundleVariant: 59 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/x86_64/ssleay32.dll -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/ssleay32.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43017829bfcfd4575b426022d3cdd3f9 3 | timeCreated: 1503969906 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Android: 12 | enabled: 0 13 | settings: 14 | CPU: AnyCPU 15 | Any: 16 | enabled: 0 17 | settings: {} 18 | Editor: 19 | enabled: 1 20 | settings: 21 | CPU: x86_64 22 | DefaultValueInitialized: true 23 | OS: Windows 24 | Linux: 25 | enabled: 0 26 | settings: 27 | CPU: None 28 | Linux64: 29 | enabled: 0 30 | settings: 31 | CPU: x86_64 32 | LinuxUniversal: 33 | enabled: 0 34 | settings: 35 | CPU: x86_64 36 | OSXIntel: 37 | enabled: 0 38 | settings: 39 | CPU: None 40 | OSXIntel64: 41 | enabled: 0 42 | settings: 43 | CPU: AnyCPU 44 | OSXUniversal: 45 | enabled: 0 46 | settings: 47 | CPU: x86_64 48 | Win: 49 | enabled: 0 50 | settings: 51 | CPU: None 52 | Win64: 53 | enabled: 0 54 | settings: 55 | CPU: AnyCPU 56 | userData: 57 | assetBundleName: 58 | assetBundleVariant: 59 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Plugins/x86_64/zlib.dll -------------------------------------------------------------------------------- /Assets/GoogleVR/Plugins/x86_64/zlib.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de6f5ee813f7b4d22a413d932a0316bf 3 | timeCreated: 1503969907 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Android: 12 | enabled: 0 13 | settings: 14 | CPU: AnyCPU 15 | Any: 16 | enabled: 0 17 | settings: {} 18 | Editor: 19 | enabled: 1 20 | settings: 21 | CPU: x86_64 22 | DefaultValueInitialized: true 23 | OS: Windows 24 | Linux: 25 | enabled: 0 26 | settings: 27 | CPU: None 28 | Linux64: 29 | enabled: 0 30 | settings: 31 | CPU: x86_64 32 | LinuxUniversal: 33 | enabled: 0 34 | settings: 35 | CPU: x86_64 36 | OSXIntel: 37 | enabled: 0 38 | settings: 39 | CPU: None 40 | OSXIntel64: 41 | enabled: 0 42 | settings: 43 | CPU: AnyCPU 44 | OSXUniversal: 45 | enabled: 0 46 | settings: 47 | CPU: x86_64 48 | Win: 49 | enabled: 0 50 | settings: 51 | CPU: None 52 | Win64: 53 | enabled: 0 54 | settings: 55 | CPU: AnyCPU 56 | userData: 57 | assetBundleName: 58 | assetBundleVariant: 59 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80e6cdf429de247a792161c31b9b2ce2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/Cardboard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5a72cff6d5e743fb9aeee6a9fee8f20 3 | folderAsset: yes 4 | timeCreated: 1505757940 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/Cardboard/GvrReticlePointer.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60270cf52a5e94998a5a335989159738 3 | timeCreated: 1446890072 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/Controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddd8d323db35b4889b40373e0f22d614 3 | folderAsset: yes 4 | timeCreated: 1462054133 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/Controller/GvrControllerMain.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ca80f4596fa44b87912a0592346d260 3 | timeCreated: 1462054136 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/Controller/GvrControllerPointer.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34c21f523e72f45509a4e37ed0293c3b 3 | timeCreated: 1478632992 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/Controller/Tooltips.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d86886405ad043d2acf12c2ef732620 3 | folderAsset: yes 4 | timeCreated: 1505757881 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/Controller/Tooltips/GvrControllerTooltipsSimple.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e5b693d0947f4a8b85a00d3965ba64c 3 | timeCreated: 1497972904 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/Controller/Tooltips/GvrControllerTooltipsTemplate.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f86870dc8a5b2476bb66abe6e43dfb0f 3 | timeCreated: 1495732127 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/EventSystem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2df99f75b699d4c44850f4c4fecc87a1 3 | folderAsset: yes 4 | timeCreated: 1448497093 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/EventSystem/GvrEventSystem.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 463285ecd6702471a909ba810832bf0e 3 | timeCreated: 1481866398 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/GvrEditorEmulator.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 970dd4b9371394fb4890965f608d46fd 3 | timeCreated: 1467065150 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/Headset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e94ff8ce3fa244838b6256ea0ca1bbbd 3 | folderAsset: yes 4 | timeCreated: 1506022733 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/Headset/GvrHeadset.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d638298e697ca4e9b91853efadd0e6da 3 | timeCreated: 1498436996 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/InstantPreview.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6864d54269094ce5a5f7af9dabbbd4f 3 | folderAsset: yes 4 | timeCreated: 1504030934 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/InstantPreview/GvrInstantPreviewMain.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce7abbbeb276a1547bd8ce1069fdabb7 3 | timeCreated: 1494615578 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: -1 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/Keyboard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0dda5c845a3f45b388c74576bfe18d4 3 | folderAsset: yes 4 | timeCreated: 1493941988 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/Keyboard/GvrKeyboardCanvas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4cf01cab04054926935acc7cb25b7f5 3 | timeCreated: 1479081996 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Prefabs/Keyboard/GvrKeyboardManager.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c99596fcbe574b168ae0faa3afe8546 3 | timeCreated: 1479082001 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/README: -------------------------------------------------------------------------------- 1 | Google VR SDK for Unity 2 | 3 | This SDK provides Android and iOS developers with the easiest way to add 4 | Google VR support to their Unity projects. 5 | 6 | The latest version of this SDK, as well as version-specific release notes, 7 | are available from https://github.com/googlevr/gvr-unity-sdk/releases. 8 | -------------------------------------------------------------------------------- /Assets/GoogleVR/README.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de961e46abe24453a81bf1c8576885b3 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f01aa5c8e7de4973aa7785e6b4dc993 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Cardboard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67702360fbb854c77b3e76f699e6a909 3 | folderAsset: yes 4 | timeCreated: 1505758129 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Cardboard/GvrReticlePointer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7dcc90c2e60c4011896c7f21fc1f557 3 | timeCreated: 1446847641 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42e8338a3e200400c8c73016c4c88273 3 | folderAsset: yes 4 | timeCreated: 1462043669 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/ArmModel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c17a9ff7fad4e4cff9684ee77be2fcce 3 | folderAsset: yes 4 | timeCreated: 1495576167 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/ArmModel/GvrArmModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7dda4bb2d5509e44e978d2bf56e25d7c 3 | timeCreated: 1471566115 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/ArmModel/GvrBaseArmModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b621d217eade547b4841c4471106b6e5 3 | timeCreated: 1495573504 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/ArmModel/IGvrArmModelReceiver.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // Copyright 2017 Google Inc. All rights reserved. 4 | // 5 | // Licensed under the Apache License, Version 2.0 (the "License"); 6 | // you may not use this file except in compliance with the License. 7 | // You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | // 17 | //----------------------------------------------------------------------- 18 | 19 | /// Interface declaring the use of the arm model. 20 | public interface IGvrArmModelReceiver 21 | { 22 | /// Gets or sets the arm model reference. 23 | /// The arm model reference. 24 | GvrBaseArmModel ArmModel { get; set; } 25 | } 26 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/ArmModel/IGvrArmModelReceiver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb01f40fa958548a5b1f92a685e6d46d 3 | timeCreated: 1495576213 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/GvrControllerInput.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41251d5f89d5546bb9d8ba907686b71f 3 | timeCreated: 1495645608 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: -31123 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/GvrControllerInputDevice.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b912427c85634a3fa13020a8d93c38a 3 | timeCreated: 1519780588 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/GvrControllerReticleVisual.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5cd7f7fcfc8a4c1fbc201ccc579556d 3 | timeCreated: 1495649159 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/GvrControllerVisual.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa952cbcc0eb13d4ca558b6da550ff55 3 | timeCreated: 1472074640 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/GvrLaserPointer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51b65678ccdd949e9a58874d2880c0ef 3 | timeCreated: 1472486489 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/GvrLaserVisual.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4ee199cdc1304b2090f019e4f488674 3 | timeCreated: 1495649159 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/GvrRecenterOnlyController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5d8d09b9e5d2437aa022780a2ce8c83 3 | timeCreated: 1487015053 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/GvrTrackedController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 311793381eb9d45149dc1a422000a9fd 3 | timeCreated: 1481762795 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/IGvrControllerInputDeviceReceiver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a4fdc21aee934d82baa564e797da921 3 | timeCreated: 1519951901 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bee8a214bb054df5965a78f7323ab8a 3 | folderAsset: yes 4 | timeCreated: 1462043669 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal/ControllerProviderFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f9210011b71142d5966eec2db6cc696 3 | timeCreated: 1462043669 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal/ControllerProviders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ae60fb379a944fc3a8be4ccdfbc0139 3 | folderAsset: yes 4 | timeCreated: 1462043669 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal/ControllerProviders/AndroidNativeShimControllerProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e968996b071c460f9b80785694ce6c4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal/ControllerProviders/DummyControllerProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f791be37caef48c79f72011276ab16a 3 | timeCreated: 1462043669 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal/ControllerProviders/EditorControllerProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0a32f2191dec4e1b8e05acab6002be6 3 | timeCreated: 1496354837 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal/ControllerProviders/EmulatorControllerProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ca644865f5f4479fb50471605078cf0 3 | timeCreated: 1462051657 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal/ControllerProviders/MouseControllerProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8b9c789363a44b1e87727b1c4d085f6 3 | timeCreated: 1496352344 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal/ControllerState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9159532a8a3d946aa9df74e771243e5b 3 | timeCreated: 1462043669 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal/ControllerUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8358cf789a848412fbb10ba05c4f3fce 3 | timeCreated: 1524508137 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal/Emulator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f26e421513d645d28448658551a7f41 3 | folderAsset: yes 4 | timeCreated: 1462051657 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal/Emulator/EmulatorClientSocket.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bf1f92fb4ae24291b71e77c1ccac323 3 | timeCreated: 1462051657 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal/Emulator/EmulatorConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a229fefd8ee7448b0b700f6000ebdec3 3 | timeCreated: 1462051657 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal/Emulator/EmulatorDataTypes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76d2b695633884daf905c07095c8a01c 3 | timeCreated: 1462051657 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal/Emulator/EmulatorManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c42ca6bb02b364893b127c681c158442 3 | timeCreated: 1462051658 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal/Emulator/Generated.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e358c972c4684473840b3ae647a0a45 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal/Emulator/Generated/PhoneEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a6b456eb0cd540a489e0f82c377b187 3 | timeCreated: 1462046540 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Internal/IControllerProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a546592901a23411d99a5fef0ada01e7 3 | timeCreated: 1462043673 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Tooltips.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35e4e3026fbcb4882ae3e3ec165feee9 3 | folderAsset: yes 4 | timeCreated: 1505758045 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Tooltips/GvrControllerTooltipsSimple.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef63f87a26b474e1c88f77dfc4f3aa3a 3 | timeCreated: 1497972948 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Controller/Tooltips/GvrTooltip.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c52851ea0de74a228fa29a84de008ba 3 | timeCreated: 1481935272 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3eff84475c3a4453f9b3f655b1b89332 3 | folderAsset: yes 4 | timeCreated: 1477613910 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/GvrBasePointer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41c83891d500f43ca90ce70315712c84 3 | timeCreated: 1472600806 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/GvrBasePointerRaycaster.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b05767d6e8b854cd0987b344898cc15d 3 | timeCreated: 1478543740 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/GvrExecuteEventsExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a443597ee157fe49a30c4310f1fb2eb 3 | timeCreated: 1475082615 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/GvrPointerEventData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd2cb616496014a37b6820203c567a77 3 | timeCreated: 1534452710 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/GvrPointerEventDataExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9387b16b3e4094244adb0bf7dc9ca17a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/GvrPointerGraphicRaycaster.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 739800cd36aba44e9b04ce977e5784bd 3 | timeCreated: 1478217778 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/GvrPointerPhysicsRaycaster.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb5dd43baba2d4dc1bab789615567e3d 3 | timeCreated: 1478196044 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/GvrPointerScrollInput.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23744ffc3b678488e858089d1a2973d9 3 | timeCreated: 1487096177 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/GvrScrollSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5db1ab7348db34ecbac8c834c5d3425f 3 | timeCreated: 1496793989 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/GvrXREventsSubscriber.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12a8088f6fe474f31bffbd957940f5fe 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/IGvrPointerHoverHandler.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // Copyright 2016 Google Inc. All rights reserved. 4 | // 5 | // Licensed under the Apache License, Version 2.0 (the "License"); 6 | // you may not use this file except in compliance with the License. 7 | // You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | // 17 | //----------------------------------------------------------------------- 18 | 19 | using UnityEngine.EventSystems; 20 | 21 | /// Interface to implement if you wish to receive `OnGvrPointerHover` callbacks. 22 | public interface IGvrPointerHoverHandler : IEventSystemHandler 23 | { 24 | /// Called when pointer is hovering over `GameObject`. 25 | /// The event data associated with the triggering event. 26 | void OnGvrPointerHover(PointerEventData eventData); 27 | } 28 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/IGvrPointerHoverHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7441953e05443d4fa517d1ce7382b0c 3 | timeCreated: 1475082809 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/IGvrScrollSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4a605c315b944e7f84ed1dbe9ff6921 3 | timeCreated: 1496856692 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/InputModule.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1679b0015de44ffdbabd6546471eab0 3 | folderAsset: yes 4 | timeCreated: 1492665005 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/InputModule/GvrAllEventsTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca0157c63fb794df89c6735fc602eca2 3 | timeCreated: 1493228030 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/InputModule/GvrEventExecutor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a93ebe04d36b49c388adce4ac442226 3 | timeCreated: 1493142648 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/InputModule/GvrPointerInputModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcd4baceb58cc40c98e500572bede6a6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/InputModule/GvrPointerInputModuleImpl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2e5fe232b3b94de2a12eb364ebc371e 3 | timeCreated: 1492661146 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/InputModule/IGvrEventExecutor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 171f0a30d9ead4516a8fa319cfebe270 3 | timeCreated: 1493142648 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/EventSystem/InputModule/IGvrInputModuleController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 118ed627eb676472d803284d1a988bbd 3 | timeCreated: 1492665020 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/GvrCardboardHelpers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb5f458261eac491b9379eb30aec0947 3 | timeCreated: 1494387741 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/GvrEditorEmulator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41679d3338266415f88d226e6bf3d0be 3 | timeCreated: 1435273491 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/GvrSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c485d86d5e69340f09123a723b06bc87 3 | timeCreated: 1474311726 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/GvrUnitySdkVersion.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12bd1ba026e3d49a285ef666388aa4e9 3 | timeCreated: 1476406456 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0e283536b9df40a9bfa60689a99a69d 3 | folderAsset: yes 4 | timeCreated: 1506022906 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Enums.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c79f631d47c5044f989f53cb700ad2f1 3 | folderAsset: yes 4 | timeCreated: 1544743399 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Enums/GvrErrorType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb2c08af66d984d78bd1c1f328f04831 3 | timeCreated: 1544743399 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Enums/GvrEventType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 767c082e8145b436291264365921ef41 3 | timeCreated: 1544743399 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Enums/GvrRecenterEventType.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // Copyright 2018 Google LLC. All rights reserved. 4 | // 5 | // Licensed under the Apache License, Version 2.0 (the "License"); 6 | // you may not use this file except in compliance with the License. 7 | // You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | // 17 | //----------------------------------------------------------------------- 18 | 19 | /// Maps to `gvr_recenter_event_type` in the C API. 20 | public enum GvrRecenterEventType 21 | { 22 | /// This value is not in the C API. 23 | Invalid = -1, 24 | 25 | /// Headset removal / re-attach recenter. 26 | RecenterEventRestart = 1, 27 | 28 | /// Controller-initiated recenter. 29 | RecenterEventAligned = 2, 30 | } 31 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Enums/GvrRecenterEventType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 825c8a439883d4c5eb00f7a498b52cf0 3 | timeCreated: 1544743399 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Enums/GvrRecenterFlags.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // Copyright 2018 Google LLC. All rights reserved. 4 | // 5 | // Licensed under the Apache License, Version 2.0 (the "License"); 6 | // you may not use this file except in compliance with the License. 7 | // You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | // 17 | //----------------------------------------------------------------------- 18 | 19 | /// @cond 20 | /// Placeholder. No C spec for recenter flags yet. 21 | public enum GvrRecenterFlags 22 | { 23 | /// A default value indicating that no flags are set. 24 | None = 0, 25 | } 26 | 27 | /// @endcond 28 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Enums/GvrRecenterFlags.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32b6801e15389450c8d629370a9fff54 3 | timeCreated: 1544743399 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Enums/GvrSafetyRegionType.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // Copyright 2018 Google LLC. All rights reserved. 4 | // 5 | // Licensed under the Apache License, Version 2.0 (the "License"); 6 | // you may not use this file except in compliance with the License. 7 | // You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | // 17 | //----------------------------------------------------------------------- 18 | 19 | /// Maps to `gvr_safety_region_type` in the C API. 20 | public enum GvrSafetyRegionType 21 | { 22 | /// A default value indicating that there is no safety region. 23 | None = 0, 24 | 25 | /// A Cylinder-shaped safety region. 26 | Cylinder = 1, 27 | } 28 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Enums/GvrSafetyRegionType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ca78f1700d24467da98b9a732966abd 3 | timeCreated: 1544743399 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/GvrHeadset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecd9463bbd7994be09b972947a085067 3 | timeCreated: 1498190966 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: -31122 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af43d6d4ab8ba4d05ab0e1676c8ce0d1 3 | folderAsset: yes 4 | timeCreated: 1506022906 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Internal/HeadsetProviderFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a8761daaa87949d9bfee83827f1cf81 3 | timeCreated: 1498369166 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Internal/HeadsetProviders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11025f606deb84fb9b904f2ed08d3f5d 3 | folderAsset: yes 4 | timeCreated: 1506022906 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Internal/HeadsetProviders/AndroidNativeHeadsetEnums.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4768e786f437540fd9f7d0c0d5778312 3 | timeCreated: 1498382144 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Internal/HeadsetProviders/AndroidNativeHeadsetProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e39841bba8ebf4707aff759a1690a400 3 | timeCreated: 1498369167 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Internal/HeadsetProviders/DummyHeadsetProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fff2ffa71f4754593a63b4ebb799955e 3 | timeCreated: 1498369167 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Internal/HeadsetProviders/EditorHeadsetProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19a9f6c7cb74d44bd9bbc87397789f7c 3 | timeCreated: 1498369166 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Internal/HeadsetState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 127c2783105b84d52adbb2499339f572 3 | timeCreated: 1498369166 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Headset/Internal/IHeadsetProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5000c7de28ac497c8564ecb8d1f005d 3 | timeCreated: 1498369167 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/InstantPreview.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc23bd978efd04f4b9a73ad961330108 3 | folderAsset: yes 4 | timeCreated: 1504030934 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/InstantPreview/InstantPreview.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Scripts/InstantPreview/InstantPreview.apk -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/InstantPreview/InstantPreview.apk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc278786e6540af428ccbf7825495004 3 | timeCreated: 1500315262 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/InstantPreview/InstantPreviewHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b78ffabb50d1e94ca164106f5444e34 3 | timeCreated: 1494616992 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/InstantPreview/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fc02c297d8ab4c70ac67ba9af275f04 3 | folderAsset: yes 4 | timeCreated: 1539977634 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/InstantPreview/Internal/InstantPreview.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7528488988f9d48478da328909125dea 3 | timeCreated: 1494615574 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/InstantPreview/Internal/InstantPreviewControllerProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c36f3afb2cb4ef840bf3183652900afe 3 | timeCreated: 1494615575 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25f0e1b4ce071466f852c31034622e1e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Internal/EditorCameraOriginDict.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02b299a09f800499f93a260fc5647d38 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Keyboard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfb58d4ed8f634ab6bddca7304737c01 3 | folderAsset: yes 4 | timeCreated: 1478817584 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Keyboard/GvrKeyboard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 573e2b04dc4734d68a2b6747421ce0bc 3 | timeCreated: 1478820921 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Keyboard/GvrKeyboardDelegateBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3590c93395a39449ca11509317375cea 3 | timeCreated: 1478820262 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Keyboard/GvrKeyboardIntent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75e29b2b7f39fc5489e792b0f3338c79 3 | timeCreated: 1494440249 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Keyboard/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 492fc075af2fa4639a072bc0017695da 3 | folderAsset: yes 4 | timeCreated: 1478821396 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Keyboard/Internal/IKeyboardProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f16e78d5a8cbe946b9dbaad22815581 3 | timeCreated: 1491935011 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Keyboard/Internal/KeyboardProviderFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 696c86fab86049947bd12e68a9b724cf 3 | timeCreated: 1491935011 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Keyboard/Internal/KeyboardProviders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49ac567412c5f8f4ea760a6ae6c0e6f5 3 | folderAsset: yes 4 | timeCreated: 1491935236 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Keyboard/Internal/KeyboardProviders/AndroidNativeKeyboardProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 494e0fcfce3cb4d1c973863b3ad4e5d0 3 | timeCreated: 1478821396 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Keyboard/Internal/KeyboardProviders/DummyKeyboardProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9fcd2a047ec9c440a2bfeace305c425 3 | timeCreated: 1491941207 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Keyboard/Internal/KeyboardProviders/EmulatorKeyboardProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f73feeef531a54f2a8cf5b05a8c06e58 3 | timeCreated: 1478821396 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Keyboard/Internal/KeyboardState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5baa0455970b442238015283920cc587 3 | timeCreated: 1479086112 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Permissions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d8c43a259d16481c824f6f184a3bea5 3 | folderAsset: yes 4 | timeCreated: 1478805319 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Permissions/GvrPermissionsRequester.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0dc366f6bd074945a86579cd29111b7 3 | timeCreated: 1477353933 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Pose3D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6dc4d56dabb6444a8fda878f2e8acc1 3 | timeCreated: 1428963852 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/PropertyDrawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd73e9e1044b04a2d9721171987200ee 3 | folderAsset: yes 4 | timeCreated: 1496357018 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/PropertyDrawers/GvrInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4b523c05131b4a8cb07cc3780329acc 3 | timeCreated: 1545086442 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/PropertyDrawers/GvrInfoDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c173d28b2a4224c52a4c8ea503f4e2b9 3 | timeCreated: 1496357031 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cd51b6aee4e94f098d0046b5590e1c3 3 | folderAsset: yes 4 | timeCreated: 1448497037 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/UI/GvrDropdown.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbdf93500b5014ec9872a59cb683089a 3 | timeCreated: 1484681912 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a88ac6fe99ae24c61bbdcdee3d49e08b 3 | folderAsset: yes 4 | timeCreated: 1471565344 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Utilities/GvrActivityHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a89c2f792b6ed4b3c8e3d82ed9b3c4cc 3 | timeCreated: 1478903803 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Utilities/GvrDaydreamApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4d57836d4e064f449f3e2f03330e9ce 3 | timeCreated: 1490648002 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Utilities/GvrIntent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9961197a3979a4fa684159098ac5881f 3 | timeCreated: 1473201821 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Utilities/GvrMathHelpers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2057fd0fa21f34bc2ba2dd2a4a2a38b5 3 | timeCreated: 1493226132 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Utilities/GvrUIHelpers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00f93e3df109d4a69834d44deb072725 3 | timeCreated: 1483744183 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Utilities/GvrVRHelpers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0dea43be37504c45ab74cf9fcfbf34a 3 | timeCreated: 1493226132 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Utilities/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 369f50a224e4c40f480cab4df8170c47 3 | folderAsset: yes 4 | timeCreated: 1539977634 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Utilities/Internal/GvrCursorHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6ecee1e7b5ef4412ba89d59a49afd69 3 | timeCreated: 1506962278 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Utilities/Internal/SuppressMemoryAllocationErrorAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 376a69755f4024896aac10f1916f8182 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Video.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7813c08c71b5d4a07a2248e43db3fd27 3 | folderAsset: yes 4 | timeCreated: 1478806417 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Scripts/Video/GvrVideoPlayerTexture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 410d5a91205334dda9fd1bf3d325809a 3 | timeCreated: 1469747977 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec97cbaf487a0514caf8ebaf70d65c60 3 | folderAsset: yes 4 | timeCreated: 1477437270 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Shaders/GvrAdditiveOverlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66ce34a5829a64856be634609edd8912 3 | timeCreated: 1479169225 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Shaders/GvrController.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdbce15836bf64163856f689fdd67b2c 3 | timeCreated: 1497972574 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Shaders/GvrControllerReticle.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57e34a0b7bd8740c5922ce5840ba3ee8 3 | timeCreated: 1499380370 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Shaders/GvrReticleShader.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3b352fc2ba734605a3df75466e600f0 3 | timeCreated: 1446884502 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Shaders/GvrUIOverlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36d276bd7b313441fbe34aadce7598ca 3 | timeCreated: 1479426244 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Shaders/GvrUIOverlayFont.shader: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Google Inc. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | Shader "GoogleVR/UI/Overlay Font" { 16 | Properties { 17 | [PerRendererData] _MainTex ("Font Texture", 2D) = "white" {} 18 | _Color ("Tint", Color) = (1,1,1,1) 19 | 20 | _StencilComp ("Stencil Comparison", Float) = 8 21 | _Stencil ("Stencil ID", Float) = 0 22 | _StencilOp ("Stencil Operation", Float) = 0 23 | _StencilWriteMask ("Stencil Write Mask", Float) = 255 24 | _StencilReadMask ("Stencil Read Mask", Float) = 255 25 | 26 | _ColorMask ("Color Mask", Float) = 15 27 | 28 | [Toggle(UNITY_UI_ALPHACLIP)] _UseUIAlphaClip ("Use Alpha Clip", Float) = 0 29 | } 30 | 31 | FallBack "GoogleVR/UI/Overlay" 32 | } 33 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Shaders/GvrUIOverlayFont.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c259eeb26e96b4f1d8eeb8871bcfdac5 3 | timeCreated: 1479426244 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Shaders/GvrUnlitTextureOverlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adb9b18ac2466473a850d8acd17654a1 3 | timeCreated: 1479438500 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Shaders/GvrUnlitTransparentOverlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d94b17868379452aad02b04eb7b0e6e 3 | timeCreated: 1478211415 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Shaders/GvrUnlitTransparentOverlayColor.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06aa46b8e43675d43b204c3638e59767 3 | timeCreated: 1475685719 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Shaders/Video.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13fdc04e72eec47a0b731dd2eb1e055b 3 | folderAsset: yes 4 | timeCreated: 1472591370 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Shaders/Video/VideoUnlitShader.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b50a67a5a86e4093bf89c85cbc2c700 3 | timeCreated: 1496431929 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09b96904f815a204ea830cf701fbd0f0 3 | folderAsset: yes 4 | timeCreated: 1477437173 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleVR/Textures/ControllerTooltips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Textures/ControllerTooltips.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Textures/cursor_grab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Textures/cursor_grab.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Textures/cursor_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Textures/cursor_move.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Textures/cursor_pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Textures/cursor_pointer.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Textures/cursor_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Textures/cursor_text.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Textures/cursor_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Textures/cursor_url.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Textures/ddcontroller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Textures/ddcontroller.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Textures/ddcontroller_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Textures/ddcontroller_transparent.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Textures/dropShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Textures/dropShadow.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Textures/laserTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Textures/laserTexture.png -------------------------------------------------------------------------------- /Assets/GoogleVR/Textures/roundRect_52px.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/GoogleVR/Textures/roundRect_52px.tif -------------------------------------------------------------------------------- /Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25d4e082d954d49f199adb7a1a9d50ce 3 | folderAsset: yes 4 | timeCreated: 1477620677 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/vid_bigbuckbunny.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/Assets/StreamingAssets/vid_bigbuckbunny.mp4 -------------------------------------------------------------------------------- /Assets/StreamingAssets/vid_bigbuckbunny.mp4.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 316f0cd4ce9644a82a78f8ce4505461f 3 | timeCreated: 1471831179 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How to Contribute 2 | 3 | We'd love to accept your patches and contributions to the source code included 4 | in this project. There are just a few small guidelines you need to follow. 5 | 6 | ## Contributor License Agreement 7 | 8 | Contributions to this project must be accompanied by a Contributor License 9 | Agreement. You (or your employer) retain the copyright to your contribution; 10 | this simply gives us permission to use and redistribute your contributions as 11 | part of the project. Head over to to see 12 | your current agreements on file or to sign a new one. 13 | 14 | You generally only need to submit a CLA once, so if you've already submitted one 15 | (even if it was for a different project), you probably don't need to do it 16 | again. 17 | 18 | ## Code reviews 19 | 20 | Although we do not use the normal GitHub pull request process to incorporate 21 | contributions, it's okay to send us pull requests. Once we have received your 22 | CLA we will review and consider your contribution for inclusion in a future 23 | release of the SDK. 24 | 25 | ## Community Guidelines 26 | 27 | This project follows 28 | [Google's Open Source Community 29 | Guidelines](https://opensource.google.com/conduct/). 30 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | Default Speaker Mode: 2 6 | Doppler Factor: 1 7 | Rolloff Scale: 1 8 | m_DSPBufferSize: 0 9 | m_DisableAudio: 0 10 | m_ObjectHideFlags: 0 11 | m_RealVoiceCount: 32 12 | m_SampleRate: 0 13 | m_SpatializerPlugin: GVR Audio Spatializer 14 | m_VirtualVoiceCount: 512 15 | m_VirtualizeEffects: 1 16 | m_Volume: 1 17 | 18 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_EnablePCM: 1 18 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 19 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_ExternalVersionControlSupport: Visible Meta Files 8 | m_SerializationMode: 2 9 | m_WebSecurityEmulationEnabled: 0 10 | m_WebSecurityEmulationHostUrl: http://www.mydomain.com/mygame.unity3d 11 | m_DefaultBehaviorMode: 0 12 | m_SpritePackerMode: 2 13 | m_SpritePackerPaddingPower: 1 14 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd 15 | m_ProjectGenerationRootNamespace: 16 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.6.0f3 2 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | m_Enabled: 0 7 | m_TestMode: 0 8 | m_TestEventUrl: 9 | m_TestConfigUrl: 10 | m_TestInitMode: 0 11 | CrashReportingSettings: 12 | m_EventUrl: https://perf-events.cloud.unity3d.com/api/events/crashes 13 | m_Enabled: 0 14 | m_CaptureEditorExceptions: 1 15 | UnityPurchasingSettings: 16 | m_Enabled: 0 17 | m_TestMode: 0 18 | UnityAnalyticsSettings: 19 | m_Enabled: 0 20 | m_InitializeOnStartup: 1 21 | m_TestMode: 0 22 | m_TestEventUrl: 23 | m_TestConfigUrl: 24 | UnityAdsSettings: 25 | m_Enabled: 0 26 | m_InitializeOnStartup: 1 27 | m_TestMode: 0 28 | m_EnabledPlatforms: 4294967295 29 | m_IosGameId: 30 | m_AndroidGameId: 31 | PerformanceReportingSettings: 32 | m_Enabled: 0 33 | -------------------------------------------------------------------------------- /native_libs/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | google() 6 | jcenter() 7 | } 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:3.3.1' 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | google() 18 | jcenter() 19 | flatDir { 20 | dirs 'libs' 21 | } 22 | } 23 | } 24 | 25 | task clean(type: Delete) { 26 | delete rootProject.buildDir 27 | } 28 | -------------------------------------------------------------------------------- /native_libs/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/native_libs/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /native_libs/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Sep 22 10:57:37 PDT 2016 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip 7 | -------------------------------------------------------------------------------- /native_libs/gvr-exoplayersupport/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can edit the include path and order by changing the proguardFiles 3 | # directive in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # Add any project specific keep options here: 9 | -dontshrink 10 | -dontoptimize 11 | -dontpreverify 12 | -verbose 13 | 14 | # If your project uses WebView with JS, uncomment the following 15 | # and specify the fully qualified class name to the JavaScript interface 16 | # class: 17 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 18 | # public *; 19 | #} 20 | 21 | # Keep all classes in com.google.gvr.exoplayersupport 22 | -keep com.google.gvr.exoplayersupport.* {*;} 23 | 24 | -------------------------------------------------------------------------------- /native_libs/gvr-exoplayersupport/src/main/cpp/glutils.h: -------------------------------------------------------------------------------- 1 | /* Copyright 2016 Google Inc. All rights reserved. 2 | * 3 | * Licensed under the Apache License, Version 2.0 (the "License"); 4 | * you may not use this file except in compliance with the License. 5 | * You may obtain a copy of the License at 6 | * 7 | * http://www.apache.org/licenses/LICENSE-2.0 8 | * 9 | * Unless required by applicable law or agreed to in writing, software 10 | * distributed under the License is distributed on an "AS IS" BASIS, 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | * See the License for the specific language governing permissions and 13 | * limitations under the License. 14 | */ 15 | #ifndef VR_GVR_DEMOS_VIDEO_PLUGIN_GLUTILS_H_ 16 | #define VR_GVR_DEMOS_VIDEO_PLUGIN_GLUTILS_H_ 17 | 18 | #include 19 | 20 | #include "ndk_helper/vecmath.h" 21 | 22 | #define GL_TEXTURE_EXTERNAL_OES 0x8D65 23 | 24 | namespace gvrvideo { 25 | 26 | // Helper function to compile a shader. 27 | GLuint CreateShader(GLenum type, const char *text); 28 | 29 | // Helper function to check for errors and log them. 30 | int CheckGLError(const char *label); 31 | } // namespace gvrvideo 32 | 33 | #endif // VR_GVR_DEMOS_VIDEO_PLUGIN_GLUTILS_H_ 34 | -------------------------------------------------------------------------------- /native_libs/gvr-exoplayersupport/src/main/cpp/logger.h: -------------------------------------------------------------------------------- 1 | /* Copyright 2016 Google Inc. All rights reserved. 2 | * 3 | * Licensed under the Apache License, Version 2.0 (the "License"); 4 | * you may not use this file except in compliance with the License. 5 | * You may obtain a copy of the License at 6 | * 7 | * http://www.apache.org/licenses/LICENSE-2.0 8 | * 9 | * Unless required by applicable law or agreed to in writing, software 10 | * distributed under the License is distributed on an "AS IS" BASIS, 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | * See the License for the specific language governing permissions and 13 | * limitations under the License. 14 | */ 15 | #ifndef VR_GVR_DEMOS_VIDEO_PLUGIN_LOGGER_H_ 16 | #define VR_GVR_DEMOS_VIDEO_PLUGIN_LOGGER_H_ 17 | 18 | #define LOGD(category, ...) \ 19 | ((void)__android_log_print(ANDROID_LOG_DEBUG, category, __VA_ARGS__)) 20 | 21 | #undef LOGE 22 | #define LOGE(category, ...) \ 23 | ((void)__android_log_print(ANDROID_LOG_ERROR, category, __VA_ARGS__)) 24 | 25 | #undef LOGI 26 | #define LOGI(category, ...) \ 27 | ((void)__android_log_print(ANDROID_LOG_INFO, category, __VA_ARGS__)) 28 | 29 | #undef LOGW 30 | #define LOGW(category, ...) \ 31 | ((void)__android_log_print(ANDROID_LOG_WARN, category, __VA_ARGS__)) 32 | 33 | #endif // VR_GVR_DEMOS_VIDEO_PLUGIN_LOGGER_H_ 34 | -------------------------------------------------------------------------------- /native_libs/gvr-exoplayersupport/src/main/java/com/google/gvr/exoplayersupport/AsyncRendererBuilder.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2016 Google Inc. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | package com.google.gvr.exoplayersupport; 17 | 18 | /** Interface to handling building different rendering pipelines. */ 19 | public interface AsyncRendererBuilder { 20 | /** 21 | * Initialize the pipeline of renderers. 22 | * 23 | * @param player - the video player object. 24 | * @param targetResolution - the target height for the initial video stream. The stream selected 25 | * will be the highest resolution available with a height less than or equal to the 26 | * targetResolution value. 27 | */ 28 | void init(VideoPlayer player, int targetResolution); 29 | 30 | /** Cancel building the pipeline. */ 31 | void cancel(); 32 | } 33 | -------------------------------------------------------------------------------- /native_libs/gvr-exoplayersupport/src/main/res/raw/loading_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/native_libs/gvr-exoplayersupport/src/main/res/raw/loading_bg.png -------------------------------------------------------------------------------- /native_libs/gvr-keyboardsupport/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | android { 4 | compileSdkVersion 24 5 | defaultConfig { 6 | minSdkVersion 19 7 | targetSdkVersion 24 8 | versionCode 1 9 | versionName "1.0" 10 | } 11 | } 12 | 13 | dependencies { 14 | implementation (name: 'gvr_android_common', ext:'aar') 15 | } 16 | -------------------------------------------------------------------------------- /native_libs/gvr-keyboardsupport/libs/gvr_android_common.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/native_libs/gvr-keyboardsupport/libs/gvr_android_common.aar -------------------------------------------------------------------------------- /native_libs/gvr-keyboardsupport/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /native_libs/gvr-keyboardsupport/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Keyboard Support 3 | 4 | -------------------------------------------------------------------------------- /native_libs/gvr-permissionsupport/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | android { 4 | compileSdkVersion 24 5 | defaultConfig { 6 | minSdkVersion 19 7 | targetSdkVersion 24 8 | versionCode 1 9 | versionName "1.0" 10 | } 11 | } 12 | 13 | dependencies { 14 | implementation (name: 'gvr_android_common', ext:'aar') 15 | } 16 | -------------------------------------------------------------------------------- /native_libs/gvr-permissionsupport/libs/gvr_android_common.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlevr/gvr-unity-sdk/f999ed727a1d238c246ba4a504b77d55b59c9e9a/native_libs/gvr-permissionsupport/libs/gvr_android_common.aar -------------------------------------------------------------------------------- /native_libs/gvr-permissionsupport/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/bbilodeau/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /native_libs/gvr-permissionsupport/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /native_libs/gvr-permissionsupport/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Permissions 3 | 4 | -------------------------------------------------------------------------------- /native_libs/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':gvr-exoplayersupport' 2 | include ':gvr-permissionsupport' 3 | include ':gvr-keyboardsupport' 4 | -------------------------------------------------------------------------------- /native_libs/video_plugin/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.model.native' 2 | 3 | model { 4 | android { 5 | compileSdkVersion = 24 6 | buildToolsVersion = '24.0.2' 7 | 8 | defaultConfig { 9 | minSdkVersion.apiLevel = 19 10 | targetSdkVersion.apiLevel = 24 11 | versionCode = 1 12 | versionName = '1.0' 13 | } 14 | ndk { 15 | platformVersion = '19' 16 | moduleName = 'gvrvideo' 17 | stl = 'c++_static' 18 | abiFilters.addAll(['armeabi-v7a', 'x86']) 19 | cppFlags.addAll(['-I' + file('src/main/jni/ndk_helper')]) 20 | cppFlags.addAll(['-std=c++11']) 21 | ldLibs.addAll(['android', 'log', "EGL", "GLESv2"]) 22 | } 23 | ndk { 24 | platformVersion = '21' 25 | moduleName = 'gvrvideo' 26 | stl = 'c++_static' 27 | abiFilters.addAll(['arm64-v8a']) 28 | cppFlags.addAll(['-I' + file('src/main/jni/ndk_helper')]) 29 | cppFlags.addAll(['-std=c++11']) 30 | ldLibs.addAll(['android', 'log', "EGL", "GLESv2"]) 31 | } 32 | } 33 | } 34 | --------------------------------------------------------------------------------