├── .gitattributes ├── .gitignore ├── .vs └── VRDesignLab │ └── v14 │ └── .suo ├── Assets ├── Application.meta ├── Application │ ├── App Boot Strap.prefab │ ├── App Boot Strap.prefab.meta │ ├── AppBootStrap.cs │ ├── AppBootStrap.cs.meta │ ├── AppCentral.cs │ ├── AppCentral.cs.meta │ ├── AttachCamera.prefab │ ├── AttachCamera.prefab.meta │ ├── Camera Prefab.prefab │ ├── Camera Prefab.prefab.meta │ ├── Directional light.prefab │ ├── Directional light.prefab.meta │ ├── FPSCounter.prefab │ ├── FPSCounter.prefab.meta │ ├── Level Manager.meta │ ├── Level Manager │ │ ├── Camera Fade Screen.prefab │ │ ├── Camera Fade Screen.prefab.meta │ │ ├── CameraFadeScreen.cs │ │ ├── CameraFadeScreen.cs.meta │ │ ├── CameraFadeScreen_mat.mat │ │ ├── CameraFadeScreen_mat.mat.meta │ │ ├── Level Manager.prefab │ │ ├── Level Manager.prefab.meta │ │ ├── LevelManager.cs │ │ ├── LevelManager.cs.meta │ │ ├── LevelMenu.meta │ │ └── LevelMenu │ │ │ ├── LevelMenu.cs │ │ │ ├── LevelMenu.cs.meta │ │ │ ├── LevelMenu.prefab │ │ │ ├── LevelMenu.prefab.meta │ │ │ ├── LevelMenuItem.cs │ │ │ ├── LevelMenuItem.cs.meta │ │ │ ├── LevelMenuItem.prefab │ │ │ ├── LevelMenuItem.prefab.meta │ │ │ ├── MenuItem_mat.mat │ │ │ └── MenuItem_mat.mat.meta │ ├── Reticle.prefab │ ├── Reticle.prefab.meta │ ├── ScreenFader.meta │ ├── ScreenFader │ │ ├── Material-ScreenFader.mat │ │ ├── Material-ScreenFader.mat.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── Prefab-ScreenFader.prefab │ │ │ └── Prefab-ScreenFader.prefab.meta │ │ ├── ScreenFader.cs │ │ └── ScreenFader.cs.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── AnimationUpdater.cs │ │ ├── AnimationUpdater.cs.meta │ │ ├── AttachCamera.cs │ │ ├── AttachCamera.cs.meta │ │ ├── CameraMount.cs │ │ ├── CameraMount.cs.meta │ │ ├── CanvasBillboard.cs │ │ ├── CanvasBillboard.cs.meta │ │ ├── FaceCameraScript.cs │ │ ├── FaceCameraScript.cs.meta │ │ ├── FixWorldRotation.cs │ │ ├── FixWorldRotation.cs.meta │ │ ├── LightStack.cs │ │ ├── LightStack.cs.meta │ │ ├── MeshUtilities.cs │ │ ├── MeshUtilities.cs.meta │ │ ├── TextureBillboard.cs │ │ ├── TextureBillboard.cs.meta │ │ ├── Utilities.cs │ │ └── Utilities.cs.meta │ ├── SignMaterial.mat │ ├── SignMaterial.mat.meta │ ├── fpsCounter.cs │ └── fpsCounter.cs.meta ├── Audio.meta ├── Audio │ ├── ui_menu_click.wav │ └── ui_menu_click.wav.meta ├── Cardboard.meta ├── Cardboard │ ├── Distortion.meta │ ├── Distortion │ │ ├── CardboardDistortion.cginc │ │ └── CardboardDistortion.cginc.meta │ ├── Editor.meta │ ├── Editor │ │ ├── CardboardAudioListenerEditor.cs │ │ ├── CardboardAudioListenerEditor.cs.meta │ │ ├── CardboardAudioRoomEditor.cs │ │ ├── CardboardAudioRoomEditor.cs.meta │ │ ├── CardboardAudioSourceEditor.cs │ │ ├── CardboardAudioSourceEditor.cs.meta │ │ ├── CardboardEditor.cs │ │ ├── CardboardEditor.cs.meta │ │ ├── CardboardGazeEditor.cs │ │ ├── CardboardGazeEditor.cs.meta │ │ ├── CardboardMenu.cs │ │ ├── CardboardMenu.cs.meta │ │ ├── CardboardSetup.cs │ │ ├── CardboardSetup.cs.meta │ │ ├── StereoControllerEditor.cs │ │ └── StereoControllerEditor.cs.meta │ ├── LICENSE │ ├── LICENSE.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Audio.meta │ │ ├── Audio │ │ │ ├── CardboardAudioRoom.prefab │ │ │ ├── CardboardAudioRoom.prefab.meta │ │ │ ├── CardboardAudioSource.prefab │ │ │ └── CardboardAudioSource.prefab.meta │ │ ├── CardboardAdapter.prefab │ │ ├── CardboardAdapter.prefab.meta │ │ ├── CardboardCamera.prefab │ │ ├── CardboardCamera.prefab.meta │ │ ├── CardboardHead.prefab │ │ ├── CardboardHead.prefab.meta │ │ ├── CardboardMain.prefab │ │ ├── CardboardMain.prefab.meta │ │ ├── Prefabs.md │ │ ├── Prefabs.md.meta │ │ ├── UI.meta │ │ └── UI │ │ │ ├── CardboardReticle.prefab │ │ │ └── CardboardReticle.prefab.meta │ ├── README │ ├── README.meta │ ├── Resources.meta │ ├── Resources │ │ ├── CardboardAudioMixer.mixer │ │ ├── CardboardAudioMixer.mixer.meta │ │ ├── RadialUndistortionEffect.shader │ │ ├── RadialUndistortionEffect.shader.meta │ │ ├── SkyboxMesh.shader │ │ ├── SkyboxMesh.shader.meta │ │ ├── SolidColor.shader │ │ ├── SolidColor.shader.meta │ │ ├── UI.meta │ │ ├── UI │ │ │ ├── CardboardReticleMaterial.mat │ │ │ ├── CardboardReticleMaterial.mat.meta │ │ │ ├── CardboardReticleShader.shader │ │ │ └── CardboardReticleShader.shader.meta │ │ ├── UnlitTexture.shader │ │ └── UnlitTexture.shader.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── Audio.meta │ │ ├── Audio │ │ ├── CardboardAudio.cs │ │ ├── CardboardAudio.cs.meta │ │ ├── CardboardAudioListener.cs │ │ ├── CardboardAudioListener.cs.meta │ │ ├── CardboardAudioRoom.cs │ │ ├── CardboardAudioRoom.cs.meta │ │ ├── CardboardAudioSource.cs │ │ └── CardboardAudioSource.cs.meta │ │ ├── Cardboard.cs │ │ ├── Cardboard.cs.meta │ │ ├── CardboardEye.cs │ │ ├── CardboardEye.cs.meta │ │ ├── CardboardHead.cs │ │ ├── CardboardHead.cs.meta │ │ ├── CardboardPostRender.cs │ │ ├── CardboardPostRender.cs.meta │ │ ├── CardboardPreRender.cs │ │ ├── CardboardPreRender.cs.meta │ │ ├── CardboardProfile.cs │ │ ├── CardboardProfile.cs.meta │ │ ├── GazeInputModule.cs │ │ ├── GazeInputModule.cs.meta │ │ ├── Pose3D.cs │ │ ├── Pose3D.cs.meta │ │ ├── RadialUndistortionEffect.cs │ │ ├── RadialUndistortionEffect.cs.meta │ │ ├── StereoController.cs │ │ ├── StereoController.cs.meta │ │ ├── StereoRenderEffect.cs │ │ ├── StereoRenderEffect.cs.meta │ │ ├── UI.meta │ │ ├── UI │ │ ├── CardboardGaze.cs │ │ ├── CardboardGaze.cs.meta │ │ ├── CardboardReticle.cs │ │ ├── CardboardReticle.cs.meta │ │ ├── ICardboardGazePointer.cs │ │ ├── ICardboardGazePointer.cs.meta │ │ ├── ICardboardGazeResponder.cs │ │ └── ICardboardGazeResponder.cs.meta │ │ ├── VRDevices.meta │ │ └── VRDevices │ │ ├── BaseAndroidDevice.cs │ │ ├── BaseAndroidDevice.cs.meta │ │ ├── BaseCardboardDevice.cs │ │ ├── BaseCardboardDevice.cs.meta │ │ ├── BaseVRDevice.cs │ │ ├── BaseVRDevice.cs.meta │ │ ├── CardboardAndroidDevice.cs │ │ ├── CardboardAndroidDevice.cs.meta │ │ ├── CardboardiOSDevice.cs │ │ ├── CardboardiOSDevice.cs.meta │ │ ├── UnityEditorDevice.cs │ │ └── UnityEditorDevice.cs.meta ├── Crosshair.meta ├── Crosshair │ ├── AnimateTiledTexture.cs │ ├── AnimateTiledTexture.cs.meta │ ├── Crosshair3D.cs │ ├── Crosshair3D.cs.meta │ ├── CrosshairSpriteSheet.png │ ├── CrosshairSpriteSheet.png.meta │ ├── EventDelegate.cs │ ├── EventDelegate.cs.meta │ ├── crosshair_3d_Sprite_mat.mat │ └── crosshair_3d_Sprite_mat.mat.meta ├── Environment.meta ├── Environment │ ├── ForestPrefab.prefab │ ├── ForestPrefab.prefab.meta │ ├── Materials.meta │ ├── Materials │ │ ├── GridEmissive.png │ │ ├── GridEmissive.png.meta │ │ ├── Material-ClickTarget.mat │ │ ├── Material-ClickTarget.mat.meta │ │ ├── Material-ParticleFlames.mat │ │ ├── Material-ParticleFlames.mat.meta │ │ ├── NavyGrid.mat │ │ ├── NavyGrid.mat.meta │ │ ├── ParticleFlames.png │ │ ├── ParticleFlames.png.meta │ │ ├── SwatchNavyAlbedo.png │ │ ├── SwatchNavyAlbedo.png.meta │ │ ├── lambert1.mat │ │ └── lambert1.mat.meta │ ├── Models.meta │ ├── Models │ │ ├── ClickTarget.fbx │ │ ├── ClickTarget.fbx.meta │ │ ├── Ground.fbx │ │ ├── Ground.fbx.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── Ground.mat │ │ │ ├── Ground.mat.meta │ │ │ ├── Leaves.mat │ │ │ ├── Leaves.mat.meta │ │ │ ├── Tree.mat │ │ │ └── Tree.mat.meta │ │ ├── Tree.fbx │ │ └── Tree.fbx.meta │ ├── Mountains.fbx │ ├── Mountains.fbx.meta │ ├── MountainsPrefab.prefab │ ├── MountainsPrefab.prefab.meta │ ├── ParticleFlames.prefab │ └── ParticleFlames.prefab.meta ├── Lab1.meta ├── Lab1 │ ├── Balloon Spawner.meta │ ├── Balloon Spawner │ │ ├── Balloon Spawner.prefab │ │ ├── Balloon Spawner.prefab.meta │ │ ├── BalloonClick.cs │ │ ├── BalloonClick.cs.meta │ │ ├── BalloonLoPolyPrefab.prefab │ │ ├── BalloonLoPolyPrefab.prefab.meta │ │ ├── BalloonSpawner.cs │ │ └── BalloonSpawner.cs.meta │ ├── Balloon.meta │ ├── Balloon │ │ ├── ChangeColor.cs │ │ ├── ChangeColor.cs.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── red_rubber.mat │ │ │ ├── red_rubber.mat.meta │ │ │ ├── string1.mat │ │ │ └── string1.mat.meta │ │ ├── SplitMeshIntoTriangles.cs │ │ ├── SplitMeshIntoTriangles.cs.meta │ │ ├── balloon_LowPoly.FBX │ │ └── balloon_LowPoly.FBX.meta │ ├── Cards.meta │ ├── Cards │ │ ├── Card1_mat.mat │ │ ├── Card1_mat.mat.meta │ │ ├── Card2_mat.mat │ │ ├── Card2_mat.mat.meta │ │ ├── Lab1_Card2.png │ │ ├── Lab1_Card2.png.meta │ │ ├── Lab1_Cards1.png │ │ └── Lab1_Cards1.png.meta │ ├── Cork_Pop_Wav_76843.wav │ ├── Cork_Pop_Wav_76843.wav.meta │ ├── Lab1Controller.cs │ └── Lab1Controller.cs.meta ├── Lab101.meta ├── Lab101 │ ├── ClickTarget.cs │ ├── ClickTarget.cs.meta │ ├── ClickTargetPrefab.prefab │ ├── ClickTargetPrefab.prefab.meta │ ├── Lab101Controller.cs │ └── Lab101Controller.cs.meta ├── Lab2.meta ├── Lab2 │ ├── GoodLine_mat.mat │ ├── GoodLine_mat.mat.meta │ ├── Lab2 Controller.prefab │ ├── Lab2 Controller.prefab.meta │ ├── Lab2Controller.cs │ ├── Lab2Controller.cs.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Tree_Texture.mat │ │ └── Tree_Texture.mat.meta │ ├── SignWithRing.cs │ ├── SignWithRing.cs.meta │ ├── Signs.meta │ ├── Signs │ │ ├── Lab2HalfMeter.png │ │ ├── Lab2HalfMeter.png.meta │ │ ├── Lab2Intro.png │ │ ├── Lab2Intro.png.meta │ │ ├── Lab2OneMeter.png │ │ ├── Lab2OneMeter.png.meta │ │ ├── Lab2OnePointFiveMeters.png │ │ ├── Lab2OnePointFiveMeters.png.meta │ │ ├── Lab2SixMeters.png │ │ ├── Lab2SixMeters.png.meta │ │ ├── Lab2ThreeMeters.png │ │ ├── Lab2ThreeMeters.png.meta │ │ ├── Lab2TwelveMeters.png │ │ ├── Lab2TwelveMeters.png.meta │ │ ├── Lab2TwoMeters.png │ │ └── Lab2TwoMeters.png.meta │ ├── Tree_LoPoly.fbm.meta │ ├── Tree_LoPoly.fbm │ │ ├── Tree_Texture.png │ │ └── Tree_Texture.png.meta │ ├── Tree_LoPoly.fbx │ ├── Tree_LoPoly.fbx.meta │ ├── WarnLine_mat.mat │ └── WarnLine_mat.mat.meta ├── Lab3.meta ├── Lab3 │ ├── IcePhysics.physicMaterial │ ├── IcePhysics.physicMaterial.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Lab3_Blue.mat │ │ ├── Lab3_Blue.mat.meta │ │ ├── Lab3_Metal.mat │ │ ├── Lab3_Metal.mat.meta │ │ ├── Lab3_Red.mat │ │ ├── Lab3_Red.mat.meta │ │ ├── Lab3_Wood.mat │ │ └── Lab3_Wood.mat.meta │ ├── Model.meta │ ├── Model │ │ ├── Model_Cart.FBX │ │ ├── Model_Cart.FBX.meta │ │ ├── Model_Track_Bump.FBX │ │ ├── Model_Track_Bump.FBX.meta │ │ ├── Model_Track_End.FBX │ │ ├── Model_Track_End.FBX.meta │ │ ├── Model_Track_Straight.FBX │ │ ├── Model_Track_Straight.FBX.meta │ │ ├── Model_Track_Turn90.FBX │ │ └── Model_Track_Turn90.FBX.meta │ ├── Model_Cart.FBX │ ├── Model_Cart.FBX.meta │ ├── Model_Track_Bump.FBX │ ├── Model_Track_Bump.FBX.meta │ ├── Model_Track_End.FBX │ ├── Model_Track_End.FBX.meta │ ├── Model_Track_Straight.FBX │ ├── Model_Track_Straight.FBX.meta │ ├── Model_Track_Turn90.FBX │ ├── Model_Track_Turn90.FBX.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Model_Cart_blue.prefab │ │ ├── Model_Cart_blue.prefab.meta │ │ ├── Model_Cart_red.prefab │ │ ├── Model_Cart_red.prefab.meta │ │ ├── Model_Track_Bump.prefab │ │ ├── Model_Track_Bump.prefab.meta │ │ ├── Model_Track_End.prefab │ │ ├── Model_Track_End.prefab.meta │ │ ├── Model_Track_Straight.prefab │ │ ├── Model_Track_Straight.prefab.meta │ │ ├── Model_Track_Turn90.prefab │ │ ├── Model_Track_Turn90.prefab.meta │ │ ├── Sign_Bumpy.prefab │ │ ├── Sign_Bumpy.prefab.meta │ │ ├── Sign_Smooth.prefab │ │ └── Sign_Smooth.prefab.meta │ ├── Script.meta │ └── Script │ │ ├── CartClick.cs │ │ ├── CartClick.cs.meta │ │ ├── CartSign.cs │ │ ├── CartSign.cs.meta │ │ ├── CartTargetable.cs │ │ ├── CartTargetable.cs.meta │ │ ├── RunWithPath.cs │ │ ├── RunWithPath.cs.meta │ │ ├── TrackPiece.cs │ │ └── TrackPiece.cs.meta ├── Lab4.meta ├── Lab4 │ ├── Cube Spawner Cube.prefab │ ├── Cube Spawner Cube.prefab.meta │ ├── Cube Spawner.prefab │ ├── Cube Spawner.prefab.meta │ ├── CubeSpawner.cs │ ├── CubeSpawner.cs.meta │ ├── CubeSpawnerCube.cs │ ├── CubeSpawnerCube.cs.meta │ ├── CubeSpawner_mat.mat │ ├── CubeSpawner_mat.mat.meta │ ├── Floor.prefab │ ├── Floor.prefab.meta │ ├── FloorLined_mat.mat │ ├── FloorLined_mat.mat.meta │ ├── Floor_mat.mat │ ├── Floor_mat.mat.meta │ ├── Lab4 Card.png │ ├── Lab4 Card.png.meta │ ├── Lab4Controller.cs │ ├── Lab4Controller.cs.meta │ ├── Models.meta │ └── Models │ │ ├── Flag.fbx │ │ ├── Flag.fbx.meta │ │ ├── Materials.meta │ │ └── Materials │ │ ├── Flag.mat │ │ ├── Flag.mat.meta │ │ ├── Pole.mat │ │ └── Pole.mat.meta ├── Lab5.meta ├── Lab5 │ ├── Lab5 Instructions.png │ ├── Lab5 Instructions.png.meta │ ├── Lab5Controller.cs │ ├── Lab5Controller.cs.meta │ ├── Lab5Instructions_mat.mat │ ├── Lab5Instructions_mat.mat.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Lab5Billboard_Instructions.prefab │ │ └── Lab5Billboard_Instructions.prefab.meta │ ├── TrackingOff.png │ ├── TrackingOff.png.meta │ ├── TrackingOff_mat.mat │ └── TrackingOff_mat.mat.meta ├── LookDown Menu.meta ├── LookDown Menu │ ├── ButtonRevealPlane.cs │ ├── ButtonRevealPlane.cs.meta │ ├── Look Down Menu.prefab │ ├── Look Down Menu.prefab.meta │ ├── LookButton.cs │ ├── LookButton.cs.meta │ ├── Materials.meta │ ├── Materials │ │ ├── CenterButton_mat.mat │ │ ├── CenterButton_mat.mat.meta │ │ ├── LeftButton_mat.mat │ │ ├── LeftButton_mat.mat.meta │ │ ├── RightButton_mat.mat │ │ └── RightButton_mat.mat.meta │ ├── Textures.meta │ └── Textures │ │ ├── HomeIcon.png │ │ ├── HomeIcon.png.meta │ │ ├── NextIcon.png │ │ ├── NextIcon.png.meta │ │ ├── RefreshIcon.png │ │ └── RefreshIcon.png.meta ├── Lookdown Notifier.meta ├── Lookdown Notifier │ ├── DownPointer.png │ ├── DownPointer.png.meta │ ├── DownPointer_mat.mat │ ├── DownPointer_mat.mat.meta │ ├── LookDown Notifier.prefab │ ├── LookDown Notifier.prefab.meta │ ├── LookDownNotifier.cs │ ├── LookDownNotifier.cs.meta │ ├── LookDownTexture.png │ ├── LookDownTexture.png.meta │ ├── Sign_mat.mat │ └── Sign_mat.mat.meta ├── Plugins.meta ├── Plugins │ ├── Android.meta │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── AndroidManifest.xml.meta │ │ ├── assets.meta │ │ ├── assets │ │ │ ├── oculussig_caf0d001 │ │ │ └── oculussig_caf0d001.meta │ │ ├── cardboard_android_common.aar │ │ ├── cardboard_android_common.aar.meta │ │ ├── cardboard_audio.jar │ │ ├── cardboard_audio.jar.meta │ │ ├── libs.meta │ │ ├── libs │ │ │ ├── armeabi-v7a.meta │ │ │ ├── armeabi-v7a │ │ │ │ ├── libaudiopluginvrunity.so │ │ │ │ ├── libaudiopluginvrunity.so.meta │ │ │ │ ├── libvrunity.so │ │ │ │ └── libvrunity.so.meta │ │ │ ├── x86.meta │ │ │ └── x86 │ │ │ │ ├── libaudiopluginvrunity.so │ │ │ │ ├── libaudiopluginvrunity.so.meta │ │ │ │ ├── libvrunity.so │ │ │ │ └── libvrunity.so.meta │ │ ├── unityvractivity.aar │ │ ├── unityvractivity.aar.meta │ │ ├── unityvractivity.jar │ │ └── unityvractivity.jar.meta │ ├── Pixelplacement.meta │ ├── Pixelplacement │ │ ├── iTween.meta │ │ └── iTween │ │ │ ├── iTween.cs │ │ │ └── iTween.cs.meta │ ├── iOS.meta │ ├── iOS │ │ ├── CardboardAppController.h │ │ ├── CardboardAppController.h.meta │ │ ├── CardboardAppController.mm │ │ ├── CardboardAppController.mm.meta │ │ ├── CardboardSDK.bundle.meta │ │ ├── CardboardSDK.bundle │ │ │ ├── Assets.car │ │ │ ├── Assets.car.meta │ │ │ ├── Info.plist │ │ │ ├── Info.plist.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── ar.lproj.meta │ │ │ │ ├── ar.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── ca.lproj.meta │ │ │ │ ├── ca.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── cs.lproj.meta │ │ │ │ ├── cs.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── da.lproj.meta │ │ │ │ ├── da.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── de.lproj.meta │ │ │ │ ├── de.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── el.lproj.meta │ │ │ │ ├── el.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── en.lproj.meta │ │ │ │ ├── en.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── en_AU.lproj.meta │ │ │ │ ├── en_AU.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── en_GB.lproj.meta │ │ │ │ ├── en_GB.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── en_IN.lproj.meta │ │ │ │ ├── en_IN.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── es.lproj.meta │ │ │ │ ├── es.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── es_MX.lproj.meta │ │ │ │ ├── es_MX.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── fi.lproj.meta │ │ │ │ ├── fi.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── fr.lproj.meta │ │ │ │ ├── fr.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── he.lproj.meta │ │ │ │ ├── he.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── hi.lproj.meta │ │ │ │ ├── hi.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── hr.lproj.meta │ │ │ │ ├── hr.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── hu.lproj.meta │ │ │ │ ├── hu.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── id.lproj.meta │ │ │ │ ├── id.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── it.lproj.meta │ │ │ │ ├── it.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── ja.lproj.meta │ │ │ │ ├── ja.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── ko.lproj.meta │ │ │ │ ├── ko.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── nb.lproj.meta │ │ │ │ ├── nb.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── nl.lproj.meta │ │ │ │ ├── nl.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── pl.lproj.meta │ │ │ │ ├── pl.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── pt.lproj.meta │ │ │ │ ├── pt.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── pt_PT.lproj.meta │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── ro.lproj.meta │ │ │ │ ├── ro.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── ru.lproj.meta │ │ │ │ ├── ru.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── sk.lproj.meta │ │ │ │ ├── sk.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── sv.lproj.meta │ │ │ │ ├── sv.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── th.lproj.meta │ │ │ │ ├── th.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── tr.lproj.meta │ │ │ │ ├── tr.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── uk.lproj.meta │ │ │ │ ├── uk.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── vi.lproj.meta │ │ │ │ ├── vi.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── zh_CN.lproj.meta │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── zh_HK.lproj.meta │ │ │ │ ├── zh_HK.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ │ ├── zh_TW.lproj.meta │ │ │ │ └── zh_TW.lproj │ │ │ │ │ ├── CardboardSDK.strings │ │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── SyncConfigViewController~ipad.nib.meta │ │ │ ├── SyncConfigViewController~ipad.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects-8.0+.nib.meta │ │ │ │ ├── objects.nib │ │ │ │ ├── objects.nib.meta │ │ │ │ ├── runtime.nib │ │ │ │ └── runtime.nib.meta │ │ │ ├── SyncConfigViewController~iphone.nib.meta │ │ │ ├── SyncConfigViewController~iphone.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects-8.0+.nib.meta │ │ │ │ ├── objects.nib │ │ │ │ ├── objects.nib.meta │ │ │ │ ├── runtime.nib │ │ │ │ └── runtime.nib.meta │ │ │ ├── ar.lproj.meta │ │ │ ├── ar.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── arrowBack.png │ │ │ ├── arrowBack.png.meta │ │ │ ├── arrowRight.png │ │ │ ├── arrowRight.png.meta │ │ │ ├── ca.lproj.meta │ │ │ ├── ca.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── cardboardLogotype.png │ │ │ ├── cardboardLogotype.png.meta │ │ │ ├── continueButton.png │ │ │ ├── continueButton.png.meta │ │ │ ├── cs.lproj.meta │ │ │ ├── cs.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── da.lproj.meta │ │ │ ├── da.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── de.lproj.meta │ │ │ ├── de.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── el.lproj.meta │ │ │ ├── el.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── en.lproj.meta │ │ │ ├── en.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── en_AU.lproj.meta │ │ │ ├── en_AU.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── en_GB.lproj.meta │ │ │ ├── en_GB.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── en_IN.lproj.meta │ │ │ ├── en_IN.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── es.lproj.meta │ │ │ ├── es.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── es_MX.lproj.meta │ │ │ ├── es_MX.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── fi.lproj.meta │ │ │ ├── fi.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── fr.lproj.meta │ │ │ ├── fr.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── gearButton.png │ │ │ ├── gearButton.png.meta │ │ │ ├── he.lproj.meta │ │ │ ├── he.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── hi.lproj.meta │ │ │ ├── hi.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── hr.lproj.meta │ │ │ ├── hr.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── hu.lproj.meta │ │ │ ├── hu.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── ic_arrow_back_white@1x.png │ │ │ ├── ic_arrow_back_white@1x.png.meta │ │ │ ├── ic_arrow_back_white@2x.png │ │ │ ├── ic_arrow_back_white@2x.png.meta │ │ │ ├── ic_arrow_back_white@3x.png │ │ │ ├── ic_arrow_back_white@3x.png.meta │ │ │ ├── ic_settings_white@1x.png │ │ │ ├── ic_settings_white@1x.png.meta │ │ │ ├── ic_settings_white@2x.png │ │ │ ├── ic_settings_white@2x.png.meta │ │ │ ├── ic_settings_white@3x.png │ │ │ ├── ic_settings_white@3x.png.meta │ │ │ ├── id.lproj.meta │ │ │ ├── id.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── it.lproj.meta │ │ │ ├── it.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── iw.lproj.meta │ │ │ ├── iw.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── ja.lproj.meta │ │ │ ├── ja.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── ko.lproj.meta │ │ │ ├── ko.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── nb.lproj.meta │ │ │ ├── nb.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── nl.lproj.meta │ │ │ ├── nl.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── onboardingBackground.jpg │ │ │ ├── onboardingBackground.jpg.meta │ │ │ ├── pl.lproj.meta │ │ │ ├── pl.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── pt.lproj.meta │ │ │ ├── pt.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── pt_PT.lproj.meta │ │ │ ├── pt_PT.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── qrSample.png │ │ │ ├── qrSample.png.meta │ │ │ ├── qrSample@1x.png │ │ │ ├── qrSample@1x.png.meta │ │ │ ├── qrSample@2x.png │ │ │ ├── qrSample@2x.png.meta │ │ │ ├── qrSample@3x.png │ │ │ ├── qrSample@3x.png.meta │ │ │ ├── ro.lproj.meta │ │ │ ├── ro.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── rotateInstructions.mp4 │ │ │ ├── rotateInstructions.mp4.meta │ │ │ ├── rotateInstructions.png │ │ │ ├── rotateInstructions.png.meta │ │ │ ├── ru.lproj.meta │ │ │ ├── ru.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── sk.lproj.meta │ │ │ ├── sk.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── sv.lproj.meta │ │ │ ├── sv.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── th.lproj.meta │ │ │ ├── th.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── tickmarks.png │ │ │ ├── tickmarks.png.meta │ │ │ ├── tr.lproj.meta │ │ │ ├── tr.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── uk.lproj.meta │ │ │ ├── uk.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── vi.lproj.meta │ │ │ ├── vi.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── zh_CN.lproj.meta │ │ │ ├── zh_CN.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── zh_HK.lproj.meta │ │ │ ├── zh_HK.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ │ ├── zh_TW.lproj.meta │ │ │ └── zh_TW.lproj │ │ │ │ ├── CardboardSDK.strings │ │ │ │ └── CardboardSDK.strings.meta │ │ ├── GoogleKitCore.bundle.meta │ │ ├── GoogleKitCore.bundle │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── ar.lproj.meta │ │ │ │ ├── ar.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── bg.lproj.meta │ │ │ │ ├── bg.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── ca.lproj.meta │ │ │ │ ├── ca.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── cs.lproj.meta │ │ │ │ ├── cs.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── da.lproj.meta │ │ │ │ ├── da.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── de.lproj.meta │ │ │ │ ├── de.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── el.lproj.meta │ │ │ │ ├── el.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── en.lproj.meta │ │ │ │ ├── en.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── en_AU.lproj.meta │ │ │ │ ├── en_AU.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── en_GB.lproj.meta │ │ │ │ ├── en_GB.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── en_IN.lproj.meta │ │ │ │ ├── en_IN.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── es.lproj.meta │ │ │ │ ├── es.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── es_419.lproj.meta │ │ │ │ ├── es_419.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── es_MX.lproj.meta │ │ │ │ ├── es_MX.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── fa.lproj.meta │ │ │ │ ├── fa.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── fi.lproj.meta │ │ │ │ ├── fi.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── fr.lproj.meta │ │ │ │ ├── fr.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── fr_CA.lproj.meta │ │ │ │ ├── fr_CA.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── he.lproj.meta │ │ │ │ ├── he.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── hi.lproj.meta │ │ │ │ ├── hi.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── hr.lproj.meta │ │ │ │ ├── hr.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── hu.lproj.meta │ │ │ │ ├── hu.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── hy.lproj.meta │ │ │ │ ├── hy.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── id.lproj.meta │ │ │ │ ├── id.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── it.lproj.meta │ │ │ │ ├── it.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── iw.lproj.meta │ │ │ │ ├── iw.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── ja.lproj.meta │ │ │ │ ├── ja.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── ka.lproj.meta │ │ │ │ ├── ka.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── kk.lproj.meta │ │ │ │ ├── kk.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── km.lproj.meta │ │ │ │ ├── km.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── ko.lproj.meta │ │ │ │ ├── ko.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── lo.lproj.meta │ │ │ │ ├── lo.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── lt.lproj.meta │ │ │ │ ├── lt.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── mn.lproj.meta │ │ │ │ ├── mn.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── ms.lproj.meta │ │ │ │ ├── ms.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── nb.lproj.meta │ │ │ │ ├── nb.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── nl.lproj.meta │ │ │ │ ├── nl.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── no.lproj.meta │ │ │ │ ├── no.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── pl.lproj.meta │ │ │ │ ├── pl.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── pt.lproj.meta │ │ │ │ ├── pt.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── pt_BR.lproj.meta │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── pt_PT.lproj.meta │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── ro.lproj.meta │ │ │ │ ├── ro.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── ru.lproj.meta │ │ │ │ ├── ru.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── sk.lproj.meta │ │ │ │ ├── sk.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── sq.lproj.meta │ │ │ │ ├── sq.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── sr.lproj.meta │ │ │ │ ├── sr.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── sv.lproj.meta │ │ │ │ ├── sv.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── th.lproj.meta │ │ │ │ ├── th.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── tr.lproj.meta │ │ │ │ ├── tr.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── uk.lproj.meta │ │ │ │ ├── uk.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── vi.lproj.meta │ │ │ │ ├── vi.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── zh_CN.lproj.meta │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── zh_HK.lproj.meta │ │ │ │ ├── zh_HK.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ │ ├── zh_TW.lproj.meta │ │ │ │ └── zh_TW.lproj │ │ │ │ │ ├── GoogleKitCore.strings │ │ │ │ │ └── GoogleKitCore.strings.meta │ │ │ ├── button_blue.png │ │ │ ├── button_blue.png.meta │ │ │ ├── button_blue@2x.png │ │ │ ├── button_blue@2x.png.meta │ │ │ ├── button_blue@3x.png │ │ │ ├── button_blue@3x.png.meta │ │ │ ├── button_blue_highlighted.png │ │ │ ├── button_blue_highlighted.png.meta │ │ │ ├── button_blue_highlighted@2x.png │ │ │ ├── button_blue_highlighted@2x.png.meta │ │ │ ├── button_blue_highlighted@3x.png │ │ │ ├── button_blue_highlighted@3x.png.meta │ │ │ ├── button_dark.png │ │ │ ├── button_dark.png.meta │ │ │ ├── button_dark@2x.png │ │ │ ├── button_dark@2x.png.meta │ │ │ ├── button_dark@3x.png │ │ │ ├── button_dark@3x.png.meta │ │ │ ├── button_dark_highlighted.png │ │ │ ├── button_dark_highlighted.png.meta │ │ │ ├── button_dark_highlighted@2x.png │ │ │ ├── button_dark_highlighted@2x.png.meta │ │ │ ├── button_dark_highlighted@3x.png │ │ │ ├── button_dark_highlighted@3x.png.meta │ │ │ ├── button_light.png │ │ │ ├── button_light.png.meta │ │ │ ├── button_light@2x.png │ │ │ ├── button_light@2x.png.meta │ │ │ ├── button_light@3x.png │ │ │ ├── button_light@3x.png.meta │ │ │ ├── button_light_highlighted.png │ │ │ ├── button_light_highlighted.png.meta │ │ │ ├── button_light_highlighted@2x.png │ │ │ ├── button_light_highlighted@2x.png.meta │ │ │ ├── button_light_highlighted@3x.png │ │ │ ├── button_light_highlighted@3x.png.meta │ │ │ ├── button_red.png │ │ │ ├── button_red.png.meta │ │ │ ├── button_red@2x.png │ │ │ ├── button_red@2x.png.meta │ │ │ ├── button_red@3x.png │ │ │ ├── button_red@3x.png.meta │ │ │ ├── button_red_highlighted.png │ │ │ ├── button_red_highlighted.png.meta │ │ │ ├── button_red_highlighted@2x.png │ │ │ ├── button_red_highlighted@2x.png.meta │ │ │ ├── button_red_highlighted@3x.png │ │ │ ├── button_red_highlighted@3x.png.meta │ │ │ ├── cell_background_selected_dark.png │ │ │ ├── cell_background_selected_dark.png.meta │ │ │ ├── cell_background_selected_dark@2x.png │ │ │ ├── cell_background_selected_dark@2x.png.meta │ │ │ ├── cell_disclosure_accessory.png │ │ │ ├── cell_disclosure_accessory.png.meta │ │ │ ├── cell_disclosure_accessory@2x.png │ │ │ ├── cell_disclosure_accessory@2x.png.meta │ │ │ ├── cell_disclosure_accessory@3x.png │ │ │ ├── cell_disclosure_accessory@3x.png.meta │ │ │ ├── cell_divider.png │ │ │ ├── cell_divider.png.meta │ │ │ ├── cell_divider@2x.png │ │ │ ├── cell_divider@2x.png.meta │ │ │ ├── checkbox.png │ │ │ ├── checkbox.png.meta │ │ │ ├── checkbox@2x.png │ │ │ ├── checkbox@2x.png.meta │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_checked.png.meta │ │ │ ├── checkbox_checked@2x.png │ │ │ ├── checkbox_checked@2x.png.meta │ │ │ ├── checkmark.png │ │ │ ├── checkmark.png.meta │ │ │ ├── checkmark@2x.png │ │ │ ├── checkmark@2x.png.meta │ │ │ ├── vertical_divider.png │ │ │ ├── vertical_divider.png.meta │ │ │ ├── vertical_divider@2x.png │ │ │ └── vertical_divider@2x.png.meta │ │ ├── GoogleKitDialogs.bundle.meta │ │ ├── GoogleKitDialogs.bundle │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── ar.lproj.meta │ │ │ │ ├── ar.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── bg.lproj.meta │ │ │ │ ├── bg.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── ca.lproj.meta │ │ │ │ ├── ca.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── cs.lproj.meta │ │ │ │ ├── cs.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── da.lproj.meta │ │ │ │ ├── da.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── de.lproj.meta │ │ │ │ ├── de.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── el.lproj.meta │ │ │ │ ├── el.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── en.lproj.meta │ │ │ │ ├── en.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── en_AU.lproj.meta │ │ │ │ ├── en_AU.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── en_GB.lproj.meta │ │ │ │ ├── en_GB.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── en_IN.lproj.meta │ │ │ │ ├── en_IN.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── es.lproj.meta │ │ │ │ ├── es.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── es_419.lproj.meta │ │ │ │ ├── es_419.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── es_MX.lproj.meta │ │ │ │ ├── es_MX.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── fa.lproj.meta │ │ │ │ ├── fa.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── fi.lproj.meta │ │ │ │ ├── fi.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── fr.lproj.meta │ │ │ │ ├── fr.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── fr_CA.lproj.meta │ │ │ │ ├── fr_CA.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── he.lproj.meta │ │ │ │ ├── he.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── hi.lproj.meta │ │ │ │ ├── hi.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── hr.lproj.meta │ │ │ │ ├── hr.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── hu.lproj.meta │ │ │ │ ├── hu.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── hy.lproj.meta │ │ │ │ ├── hy.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── id.lproj.meta │ │ │ │ ├── id.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── it.lproj.meta │ │ │ │ ├── it.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── iw.lproj.meta │ │ │ │ ├── iw.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── ja.lproj.meta │ │ │ │ ├── ja.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── ka.lproj.meta │ │ │ │ ├── ka.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── kk.lproj.meta │ │ │ │ ├── kk.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── km.lproj.meta │ │ │ │ ├── km.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── ko.lproj.meta │ │ │ │ ├── ko.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── lo.lproj.meta │ │ │ │ ├── lo.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── lt.lproj.meta │ │ │ │ ├── lt.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── mn.lproj.meta │ │ │ │ ├── mn.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── ms.lproj.meta │ │ │ │ ├── ms.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── nb.lproj.meta │ │ │ │ ├── nb.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── nl.lproj.meta │ │ │ │ ├── nl.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── no.lproj.meta │ │ │ │ ├── no.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── pl.lproj.meta │ │ │ │ ├── pl.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── pt.lproj.meta │ │ │ │ ├── pt.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── pt_BR.lproj.meta │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── pt_PT.lproj.meta │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── ro.lproj.meta │ │ │ │ ├── ro.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── ru.lproj.meta │ │ │ │ ├── ru.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── sk.lproj.meta │ │ │ │ ├── sk.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── sq.lproj.meta │ │ │ │ ├── sq.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── sr.lproj.meta │ │ │ │ ├── sr.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── sv.lproj.meta │ │ │ │ ├── sv.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── th.lproj.meta │ │ │ │ ├── th.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── tr.lproj.meta │ │ │ │ ├── tr.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── uk.lproj.meta │ │ │ │ ├── uk.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── vi.lproj.meta │ │ │ │ ├── vi.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── zh_CN.lproj.meta │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── zh_HK.lproj.meta │ │ │ │ ├── zh_HK.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ │ ├── zh_TW.lproj.meta │ │ │ │ └── zh_TW.lproj │ │ │ │ │ ├── GoogleKitDialogs.strings │ │ │ │ │ └── GoogleKitDialogs.strings.meta │ │ │ ├── arrow_bottom.png │ │ │ ├── arrow_bottom.png.meta │ │ │ ├── arrow_bottom@2x.png │ │ │ ├── arrow_bottom@2x.png.meta │ │ │ ├── arrow_left.png │ │ │ ├── arrow_left.png.meta │ │ │ ├── arrow_left@2x.png │ │ │ ├── arrow_left@2x.png.meta │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right.png.meta │ │ │ ├── arrow_right@2x.png │ │ │ ├── arrow_right@2x.png.meta │ │ │ ├── arrow_top.png │ │ │ ├── arrow_top.png.meta │ │ │ ├── arrow_top@2x.png │ │ │ ├── arrow_top@2x.png.meta │ │ │ ├── background.png │ │ │ ├── background.png.meta │ │ │ ├── background@2x.png │ │ │ ├── background@2x.png.meta │ │ │ ├── bottom.png │ │ │ ├── bottom.png.meta │ │ │ ├── bottom@2x.png │ │ │ ├── bottom@2x.png.meta │ │ │ ├── corner_bottom_left.png │ │ │ ├── corner_bottom_left.png.meta │ │ │ ├── corner_bottom_left@2x.png │ │ │ ├── corner_bottom_left@2x.png.meta │ │ │ ├── corner_bottom_right.png │ │ │ ├── corner_bottom_right.png.meta │ │ │ ├── corner_bottom_right@2x.png │ │ │ ├── corner_bottom_right@2x.png.meta │ │ │ ├── corner_top_left.png │ │ │ ├── corner_top_left.png.meta │ │ │ ├── corner_top_left@2x.png │ │ │ ├── corner_top_left@2x.png.meta │ │ │ ├── corner_top_right.png │ │ │ ├── corner_top_right.png.meta │ │ │ ├── corner_top_right@2x.png │ │ │ ├── corner_top_right@2x.png.meta │ │ │ ├── ic_check.png │ │ │ ├── ic_check.png.meta │ │ │ ├── ic_check@2x.png │ │ │ ├── ic_check@2x.png.meta │ │ │ ├── ic_check@3x.png │ │ │ ├── ic_check@3x.png.meta │ │ │ ├── ic_close.png │ │ │ ├── ic_close.png.meta │ │ │ ├── ic_close@2x.png │ │ │ ├── ic_close@2x.png.meta │ │ │ ├── ic_close@3x.png │ │ │ ├── ic_close@3x.png.meta │ │ │ ├── ic_comment.png │ │ │ ├── ic_comment.png.meta │ │ │ ├── ic_comment@2x.png │ │ │ ├── ic_comment@2x.png.meta │ │ │ ├── ic_comment@3x.png │ │ │ ├── ic_comment@3x.png.meta │ │ │ ├── ic_delete.png │ │ │ ├── ic_delete.png.meta │ │ │ ├── ic_delete@2x.png │ │ │ ├── ic_delete@2x.png.meta │ │ │ ├── ic_delete@3x.png │ │ │ ├── ic_delete@3x.png.meta │ │ │ ├── ic_email.png │ │ │ ├── ic_email.png.meta │ │ │ ├── ic_email@2x.png │ │ │ ├── ic_email@2x.png.meta │ │ │ ├── ic_email@3x.png │ │ │ ├── ic_email@3x.png.meta │ │ │ ├── ic_file_download.png │ │ │ ├── ic_file_download.png.meta │ │ │ ├── ic_file_download@2x.png │ │ │ ├── ic_file_download@2x.png.meta │ │ │ ├── ic_file_download@3x.png │ │ │ ├── ic_file_download@3x.png.meta │ │ │ ├── ic_info.png │ │ │ ├── ic_info.png.meta │ │ │ ├── ic_info@2x.png │ │ │ ├── ic_info@2x.png.meta │ │ │ ├── ic_info@3x.png │ │ │ ├── ic_info@3x.png.meta │ │ │ ├── ic_link.png │ │ │ ├── ic_link.png.meta │ │ │ ├── ic_link@2x.png │ │ │ ├── ic_link@2x.png.meta │ │ │ ├── ic_link@3x.png │ │ │ ├── ic_link@3x.png.meta │ │ │ ├── ic_message.png │ │ │ ├── ic_message.png.meta │ │ │ ├── ic_message@2x.png │ │ │ ├── ic_message@2x.png.meta │ │ │ ├── ic_message@3x.png │ │ │ ├── ic_message@3x.png.meta │ │ │ ├── ic_mode_edit.png │ │ │ ├── ic_mode_edit.png.meta │ │ │ ├── ic_mode_edit@2x.png │ │ │ ├── ic_mode_edit@2x.png.meta │ │ │ ├── ic_mode_edit@3x.png │ │ │ ├── ic_mode_edit@3x.png.meta │ │ │ ├── ic_open_in_browser.png │ │ │ ├── ic_open_in_browser.png.meta │ │ │ ├── ic_open_in_browser@2x.png │ │ │ ├── ic_open_in_browser@2x.png.meta │ │ │ ├── ic_open_in_browser@3x.png │ │ │ ├── ic_open_in_browser@3x.png.meta │ │ │ ├── ic_photo_camera.png │ │ │ ├── ic_photo_camera.png.meta │ │ │ ├── ic_photo_camera@2x.png │ │ │ ├── ic_photo_camera@2x.png.meta │ │ │ ├── ic_photo_camera@3x.png │ │ │ ├── ic_photo_camera@3x.png.meta │ │ │ ├── ic_photo_library.png │ │ │ ├── ic_photo_library.png.meta │ │ │ ├── ic_photo_library@2x.png │ │ │ ├── ic_photo_library@2x.png.meta │ │ │ ├── ic_photo_library@3x.png │ │ │ ├── ic_photo_library@3x.png.meta │ │ │ ├── ic_post_gplus.png │ │ │ ├── ic_post_gplus.png.meta │ │ │ ├── ic_post_gplus@2x.png │ │ │ ├── ic_post_gplus@2x.png.meta │ │ │ ├── ic_post_gplus@3x.png │ │ │ ├── ic_post_gplus@3x.png.meta │ │ │ ├── ic_print.png │ │ │ ├── ic_print.png.meta │ │ │ ├── ic_print@2x.png │ │ │ ├── ic_print@2x.png.meta │ │ │ ├── ic_print@3x.png │ │ │ ├── ic_print@3x.png.meta │ │ │ ├── ic_report_problem.png │ │ │ ├── ic_report_problem.png.meta │ │ │ ├── ic_report_problem@2x.png │ │ │ ├── ic_report_problem@2x.png.meta │ │ │ ├── ic_report_problem@3x.png │ │ │ ├── ic_report_problem@3x.png.meta │ │ │ ├── ic_report_problem_red.png │ │ │ ├── ic_report_problem_red.png.meta │ │ │ ├── ic_report_problem_red@2x.png │ │ │ ├── ic_report_problem_red@2x.png.meta │ │ │ ├── ic_report_problem_red@3x.png │ │ │ ├── ic_report_problem_red@3x.png.meta │ │ │ ├── left.png │ │ │ ├── left.png.meta │ │ │ ├── left@2x.png │ │ │ ├── left@2x.png.meta │ │ │ ├── right.png │ │ │ ├── right.png.meta │ │ │ ├── right@2x.png │ │ │ ├── right@2x.png.meta │ │ │ ├── top.png │ │ │ ├── top.png.meta │ │ │ ├── top@2x.png │ │ │ └── top@2x.png.meta │ │ ├── GoogleKitHUD.bundle.meta │ │ ├── GoogleKitHUD.bundle │ │ │ ├── Resources.meta │ │ │ └── Resources │ │ │ │ ├── ar.lproj.meta │ │ │ │ ├── ar.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── bg.lproj.meta │ │ │ │ ├── bg.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── ca.lproj.meta │ │ │ │ ├── ca.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── cs.lproj.meta │ │ │ │ ├── cs.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── da.lproj.meta │ │ │ │ ├── da.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── de.lproj.meta │ │ │ │ ├── de.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── el.lproj.meta │ │ │ │ ├── el.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── en.lproj.meta │ │ │ │ ├── en.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── en_AU.lproj.meta │ │ │ │ ├── en_AU.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── en_GB.lproj.meta │ │ │ │ ├── en_GB.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── en_IN.lproj.meta │ │ │ │ ├── en_IN.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── es.lproj.meta │ │ │ │ ├── es.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── es_419.lproj.meta │ │ │ │ ├── es_419.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── es_MX.lproj.meta │ │ │ │ ├── es_MX.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── fa.lproj.meta │ │ │ │ ├── fa.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── fi.lproj.meta │ │ │ │ ├── fi.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── fr.lproj.meta │ │ │ │ ├── fr.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── fr_CA.lproj.meta │ │ │ │ ├── fr_CA.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── he.lproj.meta │ │ │ │ ├── he.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── hi.lproj.meta │ │ │ │ ├── hi.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── hr.lproj.meta │ │ │ │ ├── hr.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── hu.lproj.meta │ │ │ │ ├── hu.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── hy.lproj.meta │ │ │ │ ├── hy.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── id.lproj.meta │ │ │ │ ├── id.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── it.lproj.meta │ │ │ │ ├── it.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── iw.lproj.meta │ │ │ │ ├── iw.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── ja.lproj.meta │ │ │ │ ├── ja.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── ka.lproj.meta │ │ │ │ ├── ka.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── kk.lproj.meta │ │ │ │ ├── kk.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── km.lproj.meta │ │ │ │ ├── km.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── ko.lproj.meta │ │ │ │ ├── ko.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── lo.lproj.meta │ │ │ │ ├── lo.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── lt.lproj.meta │ │ │ │ ├── lt.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── mn.lproj.meta │ │ │ │ ├── mn.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── ms.lproj.meta │ │ │ │ ├── ms.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── nb.lproj.meta │ │ │ │ ├── nb.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── nl.lproj.meta │ │ │ │ ├── nl.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── no.lproj.meta │ │ │ │ ├── no.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── pl.lproj.meta │ │ │ │ ├── pl.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── pt.lproj.meta │ │ │ │ ├── pt.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── pt_BR.lproj.meta │ │ │ │ ├── pt_BR.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── pt_PT.lproj.meta │ │ │ │ ├── pt_PT.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── ro.lproj.meta │ │ │ │ ├── ro.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── ru.lproj.meta │ │ │ │ ├── ru.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── sk.lproj.meta │ │ │ │ ├── sk.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── sq.lproj.meta │ │ │ │ ├── sq.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── sr.lproj.meta │ │ │ │ ├── sr.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── sv.lproj.meta │ │ │ │ ├── sv.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── th.lproj.meta │ │ │ │ ├── th.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── tr.lproj.meta │ │ │ │ ├── tr.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── uk.lproj.meta │ │ │ │ ├── uk.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── vi.lproj.meta │ │ │ │ ├── vi.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── zh_CN.lproj.meta │ │ │ │ ├── zh_CN.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── zh_HK.lproj.meta │ │ │ │ ├── zh_HK.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ │ │ ├── zh_TW.lproj.meta │ │ │ │ └── zh_TW.lproj │ │ │ │ ├── GoogleKitHUD.strings │ │ │ │ └── GoogleKitHUD.strings.meta │ │ ├── MaterialTypography.bundle.meta │ │ ├── MaterialTypography.bundle │ │ │ ├── Roboto-Black.ttf │ │ │ ├── Roboto-Black.ttf.meta │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ ├── Roboto-BlackItalic.ttf.meta │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Bold.ttf.meta │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ ├── Roboto-BoldItalic.ttf.meta │ │ │ ├── Roboto-Italic.ttf │ │ │ ├── Roboto-Italic.ttf.meta │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Light.ttf.meta │ │ │ ├── Roboto-LightItalic.ttf │ │ │ ├── Roboto-LightItalic.ttf.meta │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Medium.ttf.meta │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ ├── Roboto-MediumItalic.ttf.meta │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Regular.ttf.meta │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── Roboto-Thin.ttf.meta │ │ │ ├── Roboto-ThinItalic.ttf │ │ │ └── Roboto-ThinItalic.ttf.meta │ │ ├── libvrunity.a │ │ └── libvrunity.a.meta │ ├── x86.meta │ ├── x86 │ │ ├── audiopluginvrunity.dll │ │ └── audiopluginvrunity.dll.meta │ ├── x86_64.meta │ └── x86_64 │ │ ├── audiopluginvrunity.bundle │ │ ├── audiopluginvrunity.bundle.meta │ │ ├── audiopluginvrunity.dll │ │ └── audiopluginvrunity.dll.meta ├── Scenes.meta ├── Scenes │ ├── VRDL_Lab1.unity │ ├── VRDL_Lab1.unity.meta │ ├── VRDL_Lab101.unity │ ├── VRDL_Lab101.unity.meta │ ├── VRDL_Lab2.unity │ ├── VRDL_Lab2.unity.meta │ ├── VRDL_Lab3.unity │ ├── VRDL_Lab3.unity.meta │ ├── VRDL_Lab4.unity │ ├── VRDL_Lab4.unity.meta │ ├── VRDL_Lab5.unity │ ├── VRDL_Lab5.unity.meta │ ├── VRDL_Start.unity │ └── VRDL_Start.unity.meta ├── Skybox.meta ├── Skybox │ ├── PolyWorld Skies.meta │ └── PolyWorld Skies │ │ ├── Textures.meta │ │ ├── Textures │ │ ├── VRDL_SkyJ_BK.bmp │ │ ├── VRDL_SkyJ_BK.bmp.meta │ │ ├── VRDL_SkyJ_DN.bmp │ │ ├── VRDL_SkyJ_DN.bmp.meta │ │ ├── VRDL_SkyJ_FR.bmp │ │ ├── VRDL_SkyJ_FR.bmp.meta │ │ ├── VRDL_SkyJ_LF.bmp │ │ ├── VRDL_SkyJ_LF.bmp.meta │ │ ├── VRDL_SkyJ_RT.bmp │ │ ├── VRDL_SkyJ_RT.bmp.meta │ │ ├── VRDL_SkyJ_UP.bmp │ │ └── VRDL_SkyJ_UP.bmp.meta │ │ ├── VRDL_SkyJ.mat │ │ └── VRDL_SkyJ.mat.meta ├── Start Level.meta ├── Start Level │ ├── Icon Button Bar.meta │ ├── Icon Button Bar │ │ ├── Foundation Texture.png │ │ ├── Foundation Texture.png.meta │ │ ├── Foundation_mat.mat │ │ ├── Foundation_mat.mat.meta │ │ ├── Icon Button Bar.prefab │ │ ├── Icon Button Bar.prefab.meta │ │ ├── IconButton.cs │ │ ├── IconButton.cs.meta │ │ ├── IconButtonBar.cs │ │ ├── IconButtonBar.cs.meta │ │ ├── ImmersionTexture.png │ │ ├── ImmersionTexture.png.meta │ │ ├── Immersion_mat.mat │ │ └── Immersion_mat.mat.meta │ ├── Procedural Room.prefab │ ├── Procedural Room.prefab.meta │ ├── ProceduralRoom.cs │ ├── ProceduralRoom.cs.meta │ ├── Wall.prefab │ ├── Wall.prefab.meta │ ├── Wall_mat.mat │ ├── Wall_mat.mat.meta │ ├── Welcome Room.prefab │ ├── Welcome Room.prefab.meta │ ├── Welcome Sign.png │ ├── Welcome Sign.png.meta │ ├── WelcomeRoom.cs │ ├── WelcomeRoom.cs.meta │ ├── WelcomeSign.prefab │ ├── WelcomeSign.prefab.meta │ ├── Welcome_mat.mat │ └── Welcome_mat.mat.meta ├── Terrain.meta └── Terrain │ ├── Materials.meta │ ├── Materials │ ├── bush.mat │ ├── bush.mat.meta │ ├── rockTexture.mat │ └── rockTexture.mat.meta │ ├── Medium_Rock.fbm.meta │ ├── Medium_Rock.fbm │ ├── rockTexture.png │ └── rockTexture.png.meta │ ├── Medium_Rock.fbx │ ├── Medium_Rock.fbx.meta │ ├── New Terrain.asset │ ├── New Terrain.asset.meta │ ├── Textures.meta │ ├── Textures │ ├── grassTexture.png │ ├── grassTexture.png.meta │ ├── groundTexture.png │ ├── groundTexture.png.meta │ ├── pathTexture.png │ ├── pathTexture.png.meta │ ├── rockTexture.png │ ├── rockTexture.png.meta │ ├── sandTexture.png │ └── sandTexture.png.meta │ ├── simple-bush.fbx │ └── simple-bush.fbx.meta ├── Photoshop ├── Lab_Cards_01.psd ├── LookDownPSD.psd ├── LookDownTexture.psd ├── TrackingOff.psd └── Welcome Sign.psd ├── 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 └── ToDo.md /.vs/VRDesignLab/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/.vs/VRDesignLab/v14/.suo -------------------------------------------------------------------------------- /Assets/Application.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f260b07637e83d14dba918d56cc9cfe8 3 | folderAsset: yes 4 | timeCreated: 1444967118 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Application/App Boot Strap.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf8b73224e6f5b94c8583673e2ff2720 3 | timeCreated: 1445316652 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Application/AttachCamera.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 701ed126e4b0cc34fb46a6a0f404585b 3 | timeCreated: 1449542617 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Application/Camera Prefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9471d7f0772f7b648a1919e6ca45bef6 3 | timeCreated: 1447716857 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Application/Directional light.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e50b6ce7e447bc49aded7cc6e086348 3 | timeCreated: 1452795506 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Application/FPSCounter.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 796566aff86d6b446ad4868499e5713b 3 | timeCreated: 1452024776 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Application/Level Manager.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39b2cf870862d354f854e50a0369d122 3 | folderAsset: yes 4 | timeCreated: 1445294280 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Application/Level Manager/Camera Fade Screen.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91a69e975ed1010438ede2fe6bd13222 3 | timeCreated: 1445294982 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Application/Level Manager/CameraFadeScreen_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fa26bcb8a1ec424e8b83a1ba9ad3c2d 3 | timeCreated: 1445294262 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Application/Level Manager/Level Manager.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60f5a633470fd544ba424f4b7494c6f6 3 | timeCreated: 1445293184 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Application/Level Manager/LevelMenu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b9da148b2431994692d00321c538cbb 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Application/Level Manager/LevelMenu/LevelMenu.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41a7a74760fa713478efd7b57f8b885f 3 | timeCreated: 1445020747 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Application/Level Manager/LevelMenu/LevelMenuItem.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3bd38b300b551b41aab700e5713370c 3 | timeCreated: 1445020745 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Application/Level Manager/LevelMenu/MenuItem_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2169a960e68f3df4a86a10e8aa54cca4 3 | timeCreated: 1445020835 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Application/Reticle.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a7cee75c254f2049acccd20cfd1e6d9 3 | timeCreated: 1444677022 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Application/ScreenFader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27b83826bf34ce24480435d1fdff486e 3 | folderAsset: yes 4 | timeCreated: 1449952289 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Application/ScreenFader/Material-ScreenFader.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2384d38278373734c9b558767183204d 3 | timeCreated: 1449952584 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Application/ScreenFader/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd8373f33d3f28641992b98d2d5afc70 3 | folderAsset: yes 4 | timeCreated: 1449951538 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Application/ScreenFader/Resources/Prefab-ScreenFader.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b06a51e7862578439f2a7d0143aa3ed 3 | timeCreated: 1449951641 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Application/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fd732a4970f57e48b6b395a86c90592 3 | folderAsset: yes 4 | timeCreated: 1445632411 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Application/SignMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58925ab42d6359643a186abca851033e 3 | timeCreated: 1447977474 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Audio.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73fb2025d74534347b886e3d78459a00 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Audio/ui_menu_click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Audio/ui_menu_click.wav -------------------------------------------------------------------------------- /Assets/Cardboard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10cafb178fa376a47a77cd13c47f6cea 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Distortion.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62f21f05848ab49dab5437386c77527a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Cardboard/Distortion/CardboardDistortion.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c745b211b2a34eb290d759affc53a92 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Cardboard/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d37bf0e5456f5847b182534298f05cf 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Editor/CardboardEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed7a9fc9a5d44422b99d0a825d3cbf1e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Editor/CardboardGazeEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2769c4679c39b43a89bf80af54430bb3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Editor/StereoControllerEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05c5a7cf1f7ca4a0db9fef203f559380 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ae37b2426f844468ab02f411263ae0d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Cardboard/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 530a34624c260014781fe4ebb870b5d6 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Prefabs/Audio.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65c9280a868094fdcaeff383bdf40780 3 | folderAsset: yes 4 | timeCreated: 1453250329 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Prefabs/Audio/CardboardAudioRoom.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c162c5667f1844e798189ae778eafc76 3 | timeCreated: 1448878013 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Prefabs/Audio/CardboardAudioSource.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82b70a42d67ea49d4a2e3bd826e9a512 3 | timeCreated: 1448877677 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Prefabs/CardboardAdapter.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2caa624e4c89492dbb6df8d93901ef9 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Cardboard/Prefabs/CardboardCamera.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 147a0ee7cc2314633a42ba43dde568c8 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Cardboard/Prefabs/CardboardHead.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 691bf3e71b387435bb6304e28d671b2f 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Cardboard/Prefabs/CardboardMain.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8b03d395f5734e98af91ccf44f9bf47 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Cardboard/Prefabs/Prefabs.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f8c22db860c74992b7504478c45c8d3 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Cardboard/Prefabs/UI.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/Cardboard/Prefabs/UI/CardboardReticle.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60270cf52a5e94998a5a335989159738 3 | timeCreated: 1446890072 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/README.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de961e46abe24453a81bf1c8576885b3 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Cardboard/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5cce34e4c5954a0b8bdf30ff6a18430 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Cardboard/Resources/CardboardAudioMixer.mixer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca71259be6348485abbe393157796cb8 3 | timeCreated: 1454001091 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Resources/RadialUndistortionEffect.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 666b803d917634f0fa8bc0cbfbbf1604 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Cardboard/Resources/SkyboxMesh.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c22be0408cec74248b876d70c820053c 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Cardboard/Resources/SolidColor.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: beaebe8e7b47e4c0b93b51fad8fb14a2 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Cardboard/Resources/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3504b0d5b2f32448eb6c3831d9866d31 3 | folderAsset: yes 4 | timeCreated: 1448497029 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Resources/UI/CardboardReticleMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cb1460f617514a888f47071314ccdae 3 | timeCreated: 1446892072 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Resources/UnlitTexture.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67ee2e53086414fbbab2a5edbd544629 3 | timeCreated: 1457591523 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ace905318a0077843a18bb69abfcc5e5 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/Audio.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 373d3ea6bc95c4fc78ad9bd3da8dec22 3 | folderAsset: yes 4 | timeCreated: 1448875499 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/Cardboard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a40b544b8c3553c40852ae7ad35a9343 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/CardboardEye.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c9cfdc6c389e2742aa40f991195d828 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/CardboardHead.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1578549c7fcc4f6fa1b063992091672 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/CardboardPostRender.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3995cc6db284649a793472ad14b220f6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/CardboardPreRender.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20fb7fbcfb2e642bba6211eb9ea19962 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/CardboardProfile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cc48090f46d244bba130fef5ad58876 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/GazeInputModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1bb4e1b2a0a04d2ea3b96ff7e05685c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/StereoController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6788e8e1b3f7447db6657ef0959d3ce 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/StereoRenderEffect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89c49a017c128489588ad11b3fd1a2dc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/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/Cardboard/Scripts/UI/CardboardGaze.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e330faaee40a44914a7a28f410e83c9d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/UI/ICardboardGazeResponder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23a40d4116adb4e0e910b575a8dddd1e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/VRDevices.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5474aa4d9e44b54589ee1af4cb241e1 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Crosshair.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c443f72e989ca854589e3ed20b003b39 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Crosshair/Crosshair3D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb5ef86653ef94b7db287c234f437cd8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Crosshair/CrosshairSpriteSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Crosshair/CrosshairSpriteSheet.png -------------------------------------------------------------------------------- /Assets/Crosshair/crosshair_3d_Sprite_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df07d8b13f259d04580e12e170596d71 3 | timeCreated: 1444673605 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Environment.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5717b29e23e8ef747b013bc01dd1fa72 3 | folderAsset: yes 4 | timeCreated: 1446537643 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Environment/ForestPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e4cf7fad9fd2b84bb5df27f0748ae5b 3 | timeCreated: 1448425430 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Environment/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f76c6d1a9ed0ed34fa0a1e1e63e59320 3 | folderAsset: yes 4 | timeCreated: 1446537643 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Environment/Materials/GridEmissive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Environment/Materials/GridEmissive.png -------------------------------------------------------------------------------- /Assets/Environment/Materials/Material-ClickTarget.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09e772165adbd2441b49cced5448eb96 3 | timeCreated: 1450030738 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Environment/Materials/Material-ParticleFlames.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc57fc0d8435a8547957481d39714afa 3 | timeCreated: 1450022350 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Environment/Materials/NavyGrid.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76ff537c8e1a84345868e6aeee938ab3 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Environment/Materials/ParticleFlames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Environment/Materials/ParticleFlames.png -------------------------------------------------------------------------------- /Assets/Environment/Materials/SwatchNavyAlbedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Environment/Materials/SwatchNavyAlbedo.png -------------------------------------------------------------------------------- /Assets/Environment/Materials/lambert1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fe488010ee37574c99fa1742b8b7ba4 3 | timeCreated: 1444758470 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Environment/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d82145d52f801084bae0e78ca9ab90b6 3 | folderAsset: yes 4 | timeCreated: 1448419286 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Environment/Models/ClickTarget.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Environment/Models/ClickTarget.fbx -------------------------------------------------------------------------------- /Assets/Environment/Models/Ground.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Environment/Models/Ground.fbx -------------------------------------------------------------------------------- /Assets/Environment/Models/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 527d193873dde664290c1a4ab80699c1 3 | folderAsset: yes 4 | timeCreated: 1448419316 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Environment/Models/Materials/Ground.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32a9557a29413cd4cbc0f5477440feea 3 | timeCreated: 1448425130 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Environment/Models/Materials/Leaves.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f1fabdab67a9a44295208a4d278b7cf 3 | timeCreated: 1448425130 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Environment/Models/Materials/Tree.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4c68087f713ced4bb6ac4fd28bed1a3 3 | timeCreated: 1448425130 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Environment/Models/Tree.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Environment/Models/Tree.fbx -------------------------------------------------------------------------------- /Assets/Environment/Mountains.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Environment/Mountains.fbx -------------------------------------------------------------------------------- /Assets/Environment/MountainsPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5467f9f00201d324784c2e519f54b5a5 3 | timeCreated: 1448144796 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Environment/ParticleFlames.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c795600b8ed3e754096cdd866680f8f5 3 | timeCreated: 1450022312 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab1.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfb214d228973354cb51d2e14e5b517c 3 | folderAsset: yes 4 | timeCreated: 1445377087 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab1/Balloon Spawner.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52c823ba028195c4ab931a736699831a 3 | folderAsset: yes 4 | timeCreated: 1444334555 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab1/Balloon Spawner/Balloon Spawner.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 576db7119f0ad55479cc8f7085b16f26 3 | timeCreated: 1444417561 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab1/Balloon Spawner/BalloonLoPolyPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 642ea1b218f8a4940b84007eb67992e6 3 | timeCreated: 1444414909 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab1/Balloon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 564bacaee27e283408569b6b15f0c6ee 3 | folderAsset: yes 4 | timeCreated: 1444328615 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab1/Balloon/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 823d545c7d5137040beb6625207caff3 3 | folderAsset: yes 4 | timeCreated: 1444328615 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab1/Balloon/Materials/red_rubber.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b3f46135c68f464aa10827244731a2f 3 | timeCreated: 1444328615 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab1/Balloon/Materials/string1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f61018c33b75544382c128a6754547f 3 | timeCreated: 1444414857 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab1/Balloon/balloon_LowPoly.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab1/Balloon/balloon_LowPoly.FBX -------------------------------------------------------------------------------- /Assets/Lab1/Cards.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 536ef48f1e5349445a4c6cdb97b85337 3 | folderAsset: yes 4 | timeCreated: 1446534903 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab1/Cards/Card1_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a0a38169c726584fb88c26d7807fac1 3 | timeCreated: 1446534933 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab1/Cards/Card2_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5d727110c1385f41ac4fbe2149f3a67 3 | timeCreated: 1446536038 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab1/Cards/Lab1_Card2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab1/Cards/Lab1_Card2.png -------------------------------------------------------------------------------- /Assets/Lab1/Cards/Lab1_Cards1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab1/Cards/Lab1_Cards1.png -------------------------------------------------------------------------------- /Assets/Lab1/Cork_Pop_Wav_76843.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab1/Cork_Pop_Wav_76843.wav -------------------------------------------------------------------------------- /Assets/Lab101.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 950b3905d1d93ab45b4a094f182779bb 3 | folderAsset: yes 4 | timeCreated: 1448510824 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab101/ClickTargetPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b534fc36202b217489724a0eed1307a2 3 | timeCreated: 1450021898 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab101/Lab101Controller.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class Lab101Controller : MonoBehaviour { } -------------------------------------------------------------------------------- /Assets/Lab2.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5cde6dee648e5c44bf7937046e3fc9d 3 | folderAsset: yes 4 | timeCreated: 1445496250 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab2/GoodLine_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8defec2c0e8ff8340a71d9d7a7dcddcc 3 | timeCreated: 1446172136 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab2/Lab2 Controller.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d5920a2837c509409389899cd8516d1 3 | timeCreated: 1445921678 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab2/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 152b486e0269026498ff596975c4ecf2 3 | folderAsset: yes 4 | timeCreated: 1445898032 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab2/Materials/Tree_Texture.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eda4fb761ca3f874d891c840413758f5 3 | timeCreated: 1445902159 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab2/Signs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f83ecadcf4c9e7245bce2df37cada54e 3 | folderAsset: yes 4 | timeCreated: 1447837921 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab2/Signs/Lab2HalfMeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab2/Signs/Lab2HalfMeter.png -------------------------------------------------------------------------------- /Assets/Lab2/Signs/Lab2Intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab2/Signs/Lab2Intro.png -------------------------------------------------------------------------------- /Assets/Lab2/Signs/Lab2OneMeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab2/Signs/Lab2OneMeter.png -------------------------------------------------------------------------------- /Assets/Lab2/Signs/Lab2OnePointFiveMeters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab2/Signs/Lab2OnePointFiveMeters.png -------------------------------------------------------------------------------- /Assets/Lab2/Signs/Lab2SixMeters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab2/Signs/Lab2SixMeters.png -------------------------------------------------------------------------------- /Assets/Lab2/Signs/Lab2ThreeMeters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab2/Signs/Lab2ThreeMeters.png -------------------------------------------------------------------------------- /Assets/Lab2/Signs/Lab2TwelveMeters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab2/Signs/Lab2TwelveMeters.png -------------------------------------------------------------------------------- /Assets/Lab2/Signs/Lab2TwoMeters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab2/Signs/Lab2TwoMeters.png -------------------------------------------------------------------------------- /Assets/Lab2/Tree_LoPoly.fbm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94773a3ffa90b1342a6ca4a73a636051 3 | folderAsset: yes 4 | timeCreated: 1445902159 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab2/Tree_LoPoly.fbm/Tree_Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab2/Tree_LoPoly.fbm/Tree_Texture.png -------------------------------------------------------------------------------- /Assets/Lab2/Tree_LoPoly.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab2/Tree_LoPoly.fbx -------------------------------------------------------------------------------- /Assets/Lab2/WarnLine_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 703ff5645be3b3a4f9addb583b259e90 3 | timeCreated: 1445912863 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d97c915dd419fa4882fc042bc170623 3 | folderAsset: yes 4 | timeCreated: 1448368575 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab3/IcePhysics.physicMaterial.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66da01e4bd9914f4b842815ac6fe765b 3 | timeCreated: 1449130132 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab3/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8ad61870a6eace48a99c5e54871602a 3 | folderAsset: yes 4 | timeCreated: 1448368575 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab3/Materials/Lab3_Blue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bb3c16f207955544baefe4f9b93aca4 3 | timeCreated: 1448368576 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab3/Materials/Lab3_Metal.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff8ede0b5a824a94482d34970d2e5677 3 | timeCreated: 1448368576 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab3/Materials/Lab3_Red.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1cde0e8e8f4bdd4c9ad6c54278369c4 3 | timeCreated: 1448368667 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab3/Materials/Lab3_Wood.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f57c7a014ed42643b80257c1bc0b885 3 | timeCreated: 1448368576 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab3/Model.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 467b7bfc11a0d344b96bfc4e569e0283 3 | folderAsset: yes 4 | timeCreated: 1449572346 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab3/Model/Model_Cart.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab3/Model/Model_Cart.FBX -------------------------------------------------------------------------------- /Assets/Lab3/Model/Model_Track_Bump.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab3/Model/Model_Track_Bump.FBX -------------------------------------------------------------------------------- /Assets/Lab3/Model/Model_Track_End.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab3/Model/Model_Track_End.FBX -------------------------------------------------------------------------------- /Assets/Lab3/Model/Model_Track_Straight.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab3/Model/Model_Track_Straight.FBX -------------------------------------------------------------------------------- /Assets/Lab3/Model/Model_Track_Turn90.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab3/Model/Model_Track_Turn90.FBX -------------------------------------------------------------------------------- /Assets/Lab3/Model_Cart.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab3/Model_Cart.FBX -------------------------------------------------------------------------------- /Assets/Lab3/Model_Track_Bump.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab3/Model_Track_Bump.FBX -------------------------------------------------------------------------------- /Assets/Lab3/Model_Track_End.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab3/Model_Track_End.FBX -------------------------------------------------------------------------------- /Assets/Lab3/Model_Track_Straight.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab3/Model_Track_Straight.FBX -------------------------------------------------------------------------------- /Assets/Lab3/Model_Track_Turn90.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab3/Model_Track_Turn90.FBX -------------------------------------------------------------------------------- /Assets/Lab3/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61a3824538284824f95e8aa22e7a3985 3 | folderAsset: yes 4 | timeCreated: 1448368605 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab3/Prefabs/Model_Cart_blue.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb044fdf8cf1cda4eb0e7f8635ef8f8a 3 | timeCreated: 1448368630 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab3/Prefabs/Model_Cart_red.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1dac83e70eb33ac47b09842b7b2d0201 3 | timeCreated: 1448368712 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab3/Prefabs/Model_Track_Bump.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85fe6728d6c3e014c81d5ec9464dcd13 3 | timeCreated: 1448368718 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab3/Prefabs/Model_Track_End.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf5dba1760e400d4baacb697927cb3bb 3 | timeCreated: 1448368720 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab3/Prefabs/Model_Track_Straight.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 527d010a13bb90d46944a4c3698608d2 3 | timeCreated: 1448368713 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab3/Prefabs/Model_Track_Turn90.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b1f713e5dbecdd498a52a986500ac03 3 | timeCreated: 1448368715 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab3/Prefabs/Sign_Bumpy.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b343f04a5b96e445a0a42b47225ff7a 3 | timeCreated: 1449945833 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab3/Prefabs/Sign_Smooth.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4bf199883a6a8e48851ce922b646e73 3 | timeCreated: 1449947563 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab3/Script.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cebfd0f71292d5147afe402829b09a62 3 | folderAsset: yes 4 | timeCreated: 1449572346 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab4.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6d4d20db4826f04180e70461bc0af26 3 | folderAsset: yes 4 | timeCreated: 1445496258 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab4/Cube Spawner Cube.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03db93dae7412c6479fc5e4154b367e4 3 | timeCreated: 1445136228 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab4/Cube Spawner.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69563a1c891be2241b64c5439799be92 3 | timeCreated: 1445203376 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab4/CubeSpawner_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 046348bb826431a4797ee597cd6ed377 3 | timeCreated: 1445135216 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab4/Floor.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c717f29e9c5e5e49920ddc7d3655bb2 3 | timeCreated: 1445496972 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab4/FloorLined_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f0b23d48b6d27c40a3e23bc2a60417a 3 | timeCreated: 1445500179 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab4/Floor_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82ea6fe1e40ff4e46af64f5669f0164a 3 | timeCreated: 1445497464 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab4/Lab4 Card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab4/Lab4 Card.png -------------------------------------------------------------------------------- /Assets/Lab4/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6b0e41e4cf5b644faaa6d9d850c5b31 3 | folderAsset: yes 4 | timeCreated: 1448434465 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab4/Models/Flag.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab4/Models/Flag.fbx -------------------------------------------------------------------------------- /Assets/Lab4/Models/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5d87efe338ca17418cc8dfbce104078 3 | folderAsset: yes 4 | timeCreated: 1448435805 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab4/Models/Materials/Flag.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 498df35c5bae39b4189327adfe1485d9 3 | timeCreated: 1448435805 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab4/Models/Materials/Pole.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4f3c542e24284d44ae4cc7f4e15c6cf 3 | timeCreated: 1448435805 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab5.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5413141577091d24fb12978b286d6396 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab5/Lab5 Instructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab5/Lab5 Instructions.png -------------------------------------------------------------------------------- /Assets/Lab5/Lab5Instructions_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be2771e1e34e0ba41b443df409a4f583 3 | timeCreated: 1447739452 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab5/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23ca148d1a6aa07428251ce2103888c5 3 | folderAsset: yes 4 | timeCreated: 1449859206 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lab5/Prefabs/Lab5Billboard_Instructions.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6ae583752fcbbc47b4ca96e5ecf1e18 3 | timeCreated: 1449856882 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lab5/TrackingOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lab5/TrackingOff.png -------------------------------------------------------------------------------- /Assets/Lab5/TrackingOff_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5649c8c27e9bee6499bb9a82755941bf 3 | timeCreated: 1447728548 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LookDown Menu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19f1f0b6eb5bb114782b17508ff101f2 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LookDown Menu/Look Down Menu.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 173d081ad8063114b8029dfd6abc2a30 3 | timeCreated: 1444717532 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LookDown Menu/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9d1bbea9943f124bb0a450df9236478 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LookDown Menu/Materials/CenterButton_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d93c8010725a3f64cab2799fb696dec0 3 | timeCreated: 1444423631 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LookDown Menu/Materials/LeftButton_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b012a8261b3be149b181efd474c442b 3 | timeCreated: 1444423594 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LookDown Menu/Materials/RightButton_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4860b3b0797c35a4e8b58fef16f3c63d 3 | timeCreated: 1444423632 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LookDown Menu/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91ea0ac458d37d74e85c8952b66c2b36 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LookDown Menu/Textures/HomeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/LookDown Menu/Textures/HomeIcon.png -------------------------------------------------------------------------------- /Assets/LookDown Menu/Textures/NextIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/LookDown Menu/Textures/NextIcon.png -------------------------------------------------------------------------------- /Assets/LookDown Menu/Textures/RefreshIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/LookDown Menu/Textures/RefreshIcon.png -------------------------------------------------------------------------------- /Assets/Lookdown Notifier.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a812dbd13b9fe247b168943dead715c 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lookdown Notifier/DownPointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lookdown Notifier/DownPointer.png -------------------------------------------------------------------------------- /Assets/Lookdown Notifier/DownPointer_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4a7271c7a73dbe4683c4f8dd2aa47ce 3 | timeCreated: 1444974015 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lookdown Notifier/LookDown Notifier.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4a285bf34c4daf43a4f4a313f097c9e 3 | timeCreated: 1444973943 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lookdown Notifier/LookDownTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Lookdown Notifier/LookDownTexture.png -------------------------------------------------------------------------------- /Assets/Lookdown Notifier/Sign_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 805155377f0152a4eb1b1dfb39cded29 3 | timeCreated: 1444982382 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 388ed9d07b44b3949866bdca00a54173 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf1dd78d77e484645af276d153564f0f 3 | folderAsset: yes 4 | timeCreated: 1447298628 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/AndroidManifest.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 994f4c39b39b64b46bf40f48893781d0 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71bc38ea6796e764a9a56f95997ee46d 3 | folderAsset: yes 4 | timeCreated: 1447298628 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/assets/oculussig_caf0d001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/Android/assets/oculussig_caf0d001 -------------------------------------------------------------------------------- /Assets/Plugins/Android/assets/oculussig_caf0d001.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ca78a2b99f93f34a87904a13ebef9d1 3 | timeCreated: 1447298628 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/cardboard_android_common.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/Android/cardboard_android_common.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/cardboard_audio.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/Android/cardboard_audio.jar -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8767ca087a272463ca7af00d2fd5c333 3 | folderAsset: yes 4 | timeCreated: 1447301236 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3be1384c3bee40c68a495a5633290b3 3 | folderAsset: yes 4 | timeCreated: 1447301236 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a/libaudiopluginvrunity.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/Android/libs/armeabi-v7a/libaudiopluginvrunity.so -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a/libvrunity.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/Android/libs/armeabi-v7a/libvrunity.so -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a7d6f6b84c0a4d88ad77d0d76d7f4db 3 | folderAsset: yes 4 | timeCreated: 1447301236 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86/libaudiopluginvrunity.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/Android/libs/x86/libaudiopluginvrunity.so -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86/libvrunity.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/Android/libs/x86/libvrunity.so -------------------------------------------------------------------------------- /Assets/Plugins/Android/unityvractivity.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/Android/unityvractivity.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/unityvractivity.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/Android/unityvractivity.jar -------------------------------------------------------------------------------- /Assets/Plugins/Pixelplacement.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37713fd26e3cba64186700d80e10325d 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Pixelplacement/iTween.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 358a7def5bd340640a8fbf855c4a1a46 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1499ffe1661e4473ebe2332b41a68256 3 | folderAsset: yes 4 | timeCreated: 1447301236 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Assets.car -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Assets.car.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a1519599ab4343e388bade390870ae0 3 | timeCreated: 1461190623 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Info.plist -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Info.plist.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68b29364e37624d98916a33d9f4eaf35 3 | timeCreated: 1461190623 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b63b4bdc5b4354816ba175aa2526da26 3 | folderAsset: yes 4 | timeCreated: 1447301236 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ar.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ar.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ar.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb15d18880cfa4e1b86691eeaa3220df 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ca.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ca.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ca.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a401493203134270a38b259c6a13348 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/cs.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/cs.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/cs.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e24e4181828d4df8b14e51afd0c09a1 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/da.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/da.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/da.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53f77080098f74984830e3f051e92d1d 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/de.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/de.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/de.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89b43bdf32deb4f98b5e0613384ec1b9 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/el.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/el.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/el.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab749fa1f64bd4aed9815118cf52f298 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/en.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/en.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/en.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1508e47551deb4613bd914acd484833f 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/en_AU.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/en_AU.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/en_AU.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68f2a5f5694df40f4a18369f4252d600 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/en_GB.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/en_GB.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/en_GB.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27e383f5117ab4c54b2fd2e7a69760dc 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/en_IN.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/en_IN.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/en_IN.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd269b337da4949d296ed3dc55ad4f37 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/es.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/es.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/es.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85b684739d93748258c05eb0af89a997 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/es_MX.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/es_MX.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/es_MX.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24cb91515b9f94cc5b34a3591ce9bbca 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/fi.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/fi.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/fi.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b19f1625c9ca9433c91a06f3dbcd81b6 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/fr.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/fr.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/fr.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9115d3b0e415477e9d8fe76d000e732 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/he.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/he.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/he.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d26edef508ef947c0a8818703fe3fcfa 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/hi.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/hi.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/hi.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5abb81697ff7b4adfba128683eb41dd1 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/hr.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/hr.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/hr.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 842e88e25c1ec44a9aab0c18cd9ff276 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/hu.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/hu.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/hu.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c18863e73a3e045cbbd4bcac3bfd8b8a 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/id.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/id.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/id.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9419699c514ed4046b9715e290d7e140 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/it.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/it.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/it.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d391f155b32944eab98394c602933e1 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ja.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ja.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ja.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36abe235fedde4f5289cba4362826a3c 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ko.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ko.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ko.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97780c5a4df7f4f1483fc26da402ec5c 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/nb.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/nb.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/nb.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec5cbb02cf5c14455a39aee8b3c1fcef 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/nl.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/nl.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/nl.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13cfc40f723014f09af223152f5f5b32 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/pl.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/pl.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/pl.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6cf5b1f49d3141b7a87b4fed07b4aab 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/pt.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/pt.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/pt.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d6f63998dc384bc2933e798a6b29de2 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/pt_PT.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/pt_PT.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/pt_PT.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5ac9e3f22fd54723a8e00e4a6c6618b 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ro.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ro.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ro.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c68180a202484f1b8a3e89b3ed07b87 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ru.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ru.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/ru.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32141d2291e42497c86e8459c50f1ff6 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/sk.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/sk.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/sk.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ada8b1371d4b427db97f83cfa00f5e4 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/sv.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/sv.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/sv.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d68dfab543ac4357bec7b4e4c32076c 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/th.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/th.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/th.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22e73ec9c761a4e1e8bd691be8ca39ca 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/tr.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/tr.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/tr.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04e9bae7e2b9f439ea252e439b2ddbcc 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/uk.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/uk.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/uk.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d81767eade264b49930ca0c1e682b03 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/vi.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/vi.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/vi.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ddb688a15c33403a909185791aa1ea3 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/zh_CN.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/zh_CN.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/zh_CN.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86e1d05b9649e464fb98bb41f8379866 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/zh_HK.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/zh_HK.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/zh_HK.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27075ccde516a43149bfd507faa9e457 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/zh_TW.lproj/CardboardSDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/Resources/zh_TW.lproj/CardboardSDK.strings -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/Resources/zh_TW.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2baa75037a0a48d49486627a6f5a4f6 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~ipad.nib/objects-8.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~ipad.nib/objects-8.0+.nib -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~ipad.nib/objects-8.0+.nib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f9a7c188d63e465cadde22f8dbf1c30 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~ipad.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~ipad.nib/objects.nib -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~ipad.nib/objects.nib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b03e3d1a16c2451dbdbec27349169b1 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~ipad.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~ipad.nib/runtime.nib -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~ipad.nib/runtime.nib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4971403d3d2c04a11a2ab63ed0701c52 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~iphone.nib/objects-8.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~iphone.nib/objects-8.0+.nib -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~iphone.nib/objects-8.0+.nib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff6e71d255d014c259cb9224fb097ae5 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~iphone.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~iphone.nib/objects.nib -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~iphone.nib/objects.nib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec26e5fd039694e6695cf6a9a362afe2 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~iphone.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~iphone.nib/runtime.nib -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/SyncConfigViewController~iphone.nib/runtime.nib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30704ecccfd0f463593390289b8357f7 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/ar.lproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f1ec71dbff5c42d38cfe08ebd6dd0d8 3 | folderAsset: yes 4 | timeCreated: 1461190623 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/ar.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2de111456dc849409f12de9d21247ee 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/arrowBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/arrowBack.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/arrowRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/arrowRight.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/ca.lproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a88238f41d96f4919962bb4e196b7f49 3 | folderAsset: yes 4 | timeCreated: 1461190623 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/ca.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bf1ade5ac7664cf99458d2255027c8e 3 | timeCreated: 1461190623 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/cardboardLogotype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/cardboardLogotype.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/continueButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/continueButton.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/cs.lproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7842d5ba61eba438093a20bfdd71c2d4 3 | folderAsset: yes 4 | timeCreated: 1461190623 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/cs.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bafc627eae8d94482a451d325995006e 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/da.lproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee93573a510c74961990649039d52bd0 3 | folderAsset: yes 4 | timeCreated: 1461190623 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/da.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21750d85af4f24799b7dd97257310fc9 3 | timeCreated: 1461190623 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/de.lproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b2d65829f079494495959a02712de63 3 | folderAsset: yes 4 | timeCreated: 1461190623 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/de.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58901ccde8ae24ae985abe2477738c31 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/el.lproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e55466f51d21c45d78c94864fe2cd165 3 | folderAsset: yes 4 | timeCreated: 1461190623 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/el.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14e056400d0434530aabd02db4abbe1c 3 | timeCreated: 1461190623 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/en.lproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff34db9a449da4d6ab72788ec36d29b1 3 | folderAsset: yes 4 | timeCreated: 1461190623 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/en.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c3a35ef42660459298ce3d8f93e027e 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/en_AU.lproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cc5cdccca76648419c8716447911e81 3 | folderAsset: yes 4 | timeCreated: 1461190623 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/en_AU.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d31586240e29a48b8a1f8cde0a59a14f 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/en_GB.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9da4fa5ff0d634f7fbe96e759cc24272 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/en_IN.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12e71cda54d2b46058240c9c42debad9 3 | timeCreated: 1461190623 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/es.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96ecae77dbbe04bc38dcf7d2ebca445e 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/es_MX.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc23019d964ce4dab952dfc64d8a91bb 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/fi.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94feacac3a42e40368e2af58787db6cf 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/fr.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 622ac61bc49ab45928e1d480871e76df 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/gearButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/gearButton.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/he.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4d2d190f81184b0b99cd41b2ead68d3 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/hi.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a678111ec75f4ad79d4fa0541ce11fa 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/hr.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e578538c12994c14aa24ef37ede6d76 3 | timeCreated: 1461190623 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/hu.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 868f96e978e2f4471a546459e8583fc7 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/ic_arrow_back_white@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/ic_arrow_back_white@1x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/ic_arrow_back_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/ic_arrow_back_white@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/ic_arrow_back_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/ic_arrow_back_white@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/ic_settings_white@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/ic_settings_white@1x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/ic_settings_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/ic_settings_white@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/ic_settings_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/ic_settings_white@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/id.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe7f68e863d804576a017cc663dbc2c0 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/it.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2902f5262aa6946159a4feff5fa71947 3 | timeCreated: 1461190623 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/iw.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fec8a351ebaa2413eafd98ba1079ff3f 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/ja.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c54d78f5d7fdd4bc7960d389f121da33 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/ko.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcbea641d40eb43c1a167432f7dadf97 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/nb.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72dfa9cbb56ff4f778bf687e21b25017 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/nl.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f9fe96c750d84591bbb96e14b4f199c 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/onboardingBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/onboardingBackground.jpg -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/pl.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55b606c053c07441db2da304551447ce 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/pt.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64797e7030b704ec7b39277bc1cf6af6 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/pt_PT.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b5cdc9e905374552a8c0c6c014cac25 3 | timeCreated: 1461190623 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/qrSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/qrSample.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/qrSample@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/qrSample@1x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/qrSample@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/qrSample@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/qrSample@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/qrSample@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/ro.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 671d02f07bfc74b10b870e9af2000256 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/rotateInstructions.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/rotateInstructions.mp4 -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/rotateInstructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/rotateInstructions.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/ru.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05fa191c30f52406cbb64088b91a5757 3 | timeCreated: 1461190623 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/sk.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 581d1b75fecc342818f9e2478a2a5c48 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/sv.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d55fbbafd26474e79bd5e9d4f3eb09b7 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/th.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9940be57d077e457ea1905f1862c627a 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/tickmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/CardboardSDK.bundle/tickmarks.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/tr.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcd344602028d4d1a90f04b7779b8ccf 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/uk.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a35fa8b83d0a543c8884cace07a81276 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/vi.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d6e7e8ba99aa44b6860421a51f74a8e 3 | timeCreated: 1461190623 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/zh_CN.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71bdca05aedf4488e838e691873bb0d5 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/zh_HK.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5bba7359d7e954590ac59c9c3d9a221d 3 | timeCreated: 1461190624 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardSDK.bundle/zh_TW.lproj/CardboardSDK.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26f60e4f684fc402781e03c59da178e6 3 | timeCreated: 1461190623 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_blue.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_blue@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_blue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_blue@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_blue_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_blue_highlighted.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_blue_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_blue_highlighted@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_blue_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_blue_highlighted@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_dark.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_dark@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_dark@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_dark_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_dark_highlighted.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_dark_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_dark_highlighted@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_dark_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_dark_highlighted@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_light.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_light@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_light@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_light_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_light_highlighted.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_light_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_light_highlighted@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_light_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_light_highlighted@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_red.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_red@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_red@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_red@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_red_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_red_highlighted.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_red_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_red_highlighted@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/button_red_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/button_red_highlighted@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/cell_background_selected_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/cell_background_selected_dark.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/cell_background_selected_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/cell_background_selected_dark@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/cell_disclosure_accessory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/cell_disclosure_accessory.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/cell_disclosure_accessory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/cell_disclosure_accessory@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/cell_disclosure_accessory@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/cell_disclosure_accessory@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/cell_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/cell_divider.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/cell_divider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/cell_divider@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/checkbox.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/checkbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/checkbox@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/checkbox_checked.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/checkbox_checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/checkbox_checked@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/checkmark.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/checkmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/checkmark@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/vertical_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/vertical_divider.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitCore.bundle/vertical_divider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitCore.bundle/vertical_divider@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/arrow_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/arrow_bottom.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/arrow_bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/arrow_bottom@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/arrow_left.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/arrow_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/arrow_left@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/arrow_right.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/arrow_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/arrow_right@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/arrow_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/arrow_top.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/arrow_top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/arrow_top@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/background.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/background@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/bottom.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/bottom@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/corner_bottom_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/corner_bottom_left.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/corner_bottom_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/corner_bottom_left@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/corner_bottom_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/corner_bottom_right.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/corner_bottom_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/corner_bottom_right@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/corner_top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/corner_top_left.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/corner_top_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/corner_top_left@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/corner_top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/corner_top_right.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/corner_top_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/corner_top_right@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_check.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_check@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_check@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_check@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_close.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_close@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_close@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_comment.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_comment@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_comment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_comment@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_delete.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_delete@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_delete@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_email.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_email@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_email@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_email@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_email@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_file_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_file_download.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_file_download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_file_download@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_file_download@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_file_download@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_info.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_info@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_info@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_link.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_link@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_link@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_link@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_message.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_message@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_message@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_message@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_message@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_mode_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_mode_edit.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_mode_edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_mode_edit@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_mode_edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_mode_edit@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_open_in_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_open_in_browser.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_open_in_browser@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_open_in_browser@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_open_in_browser@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_open_in_browser@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_photo_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_photo_camera.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_photo_camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_photo_camera@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_photo_camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_photo_camera@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_photo_library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_photo_library.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_photo_library@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_photo_library@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_photo_library@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_photo_library@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_post_gplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_post_gplus.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_post_gplus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_post_gplus@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_post_gplus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_post_gplus@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_print.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_print@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_print@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_print@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_print@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_report_problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_report_problem.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_report_problem@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_report_problem@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_report_problem@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_report_problem@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_report_problem_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_report_problem_red.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_report_problem_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_report_problem_red@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_report_problem_red@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/ic_report_problem_red@3x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/left.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/left@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/right.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/right@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/top.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitDialogs.bundle/top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/GoogleKitDialogs.bundle/top@2x.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/ar.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "انقر نقرًا مزدوجًا للتجاهل."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/bg.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Докоснете двукратно за отхвърляне."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/cs.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Poklepáním oznámení zavřete."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/da.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Tryk to gange for at annullere."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/de.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Zum Schließen zweimal tippen"; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/el.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Πατήστε δύο φορές για απόρριψη."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/en.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Double-tap to dismiss."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/en_AU.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Double tap to dismiss."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/en_GB.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Double tap to dismiss."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/en_IN.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Double tap to dismiss."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/es.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Toca dos veces para descartar."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/es_MX.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Presiona dos veces para ignorar."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/fa.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "برای رد کردن دو بار ضربه بزنید."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/fi.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Hylkää kaksoisnapauttamalla."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/fr.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Appuyez deux fois pour masquer."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/fr_CA.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Touchez deux fois pour masquer."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/he.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "הקש פעמיים לסגירה."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/hi.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "खारिज करने के लिए डबल–टैप करें."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/hr.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Dvaput dodirnite za odbacivanje."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/hu.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Koppintson duplán a bezáráshoz."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/hy.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Փակելու համար կրկնակի հպեք:"; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/id.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Ketuk dua kali untuk menutup."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/it.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Tocca due volte per ignorare."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/iw.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "הקש פעמיים לסגירה."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/ja.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "ダブルタップして閉じます。"; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/ka.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "ორჯერ შეეხეთ უარყოფისთვის."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/kk.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Қабылдамау үшін екі рет түртіңіз."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/km.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "ប៉ះ​ទ្វេ​ដង​ដើម្បី​បដិសេធ"; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/ko.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "닫으려면 두 번 탭하세요."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/lo.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "ແຕະສອງເທື່ອເພື່ອປິດໄວ້."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/mn.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Татгалзах бол хоёр товшино."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/ms.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Ketik dua kali untuk mengetepikan."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/nb.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Trykk to ganger for å fjerne."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/nl.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Dubbeltik om melding te sluiten."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/no.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Trykk to ganger for å fjerne."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/pl.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Kliknij dwukrotnie, by zamknąć."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/pt.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Toque duas vezes para dispensar."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/pt_BR.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Toque duas vezes para dispensar."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/pt_PT.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Toque duas vezes para ignorar."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/sk.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Odmietnite dvojitým klepnutím."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/sq.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Prek dy herë për t'u larguar."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/sr.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Додирните двапут да бисте одбацили."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/th.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "แตะสองครั้งเพื่อปิด"; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/uk.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Натисніть двічі, щоб закрити."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/vi.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Nhấn đúp để loại bỏ."; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/zh_CN.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "点按两次即可关闭。"; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/zh_HK.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "輕按兩下關閉。"; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/GoogleKitHUD.bundle/Resources/zh_TW.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "輕按兩下即可關閉。"; 3 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-Black.ttf -------------------------------------------------------------------------------- /Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-Bold.ttf -------------------------------------------------------------------------------- /Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-Italic.ttf -------------------------------------------------------------------------------- /Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-Light.ttf -------------------------------------------------------------------------------- /Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-Medium.ttf -------------------------------------------------------------------------------- /Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-Thin.ttf -------------------------------------------------------------------------------- /Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/MaterialTypography.bundle/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libvrunity.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/iOS/libvrunity.a -------------------------------------------------------------------------------- /Assets/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/Plugins/x86/audiopluginvrunity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/x86/audiopluginvrunity.dll -------------------------------------------------------------------------------- /Assets/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/Plugins/x86_64/audiopluginvrunity.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/x86_64/audiopluginvrunity.bundle -------------------------------------------------------------------------------- /Assets/Plugins/x86_64/audiopluginvrunity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Plugins/x86_64/audiopluginvrunity.dll -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25bc62b9dd6f919458213dbe4f7d9693 3 | folderAsset: yes 4 | timeCreated: 1446323475 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scenes/VRDL_Lab1.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14f7d08dd445981468456e278bf7db8b 3 | timeCreated: 1444677306 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes/VRDL_Lab101.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 701f2349ab1914a4a9021bdf9e52f4cb 3 | timeCreated: 1447294596 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes/VRDL_Lab2.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb81a4bf46cb4ef4585fe57d43b573a5 3 | timeCreated: 1445395199 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes/VRDL_Lab3.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f055cd8783d7f3a43ac76ab6598e91d4 3 | timeCreated: 1445410696 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes/VRDL_Lab4.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cb5c4992b4a8884d8f597619bdac887 3 | timeCreated: 1445410715 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes/VRDL_Lab5.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5093f05a81f859b45aee735e6a7e2cff 3 | timeCreated: 1445410734 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes/VRDL_Start.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8942e7c89395d5043bfb4df3b32a31a8 3 | timeCreated: 1444846276 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Skybox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1967da3f6d73bf45b346723f50374a6 3 | folderAsset: yes 4 | timeCreated: 1446537831 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Skybox/PolyWorld Skies.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ea0496ddf7d1c547afc79e237335412 3 | folderAsset: yes 4 | timeCreated: 1446537831 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Skybox/PolyWorld Skies/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a59a6f7eb9f2084eb0b75eaf7c0b943 3 | folderAsset: yes 4 | timeCreated: 1446537831 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Skybox/PolyWorld Skies/Textures/VRDL_SkyJ_BK.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Skybox/PolyWorld Skies/Textures/VRDL_SkyJ_BK.bmp -------------------------------------------------------------------------------- /Assets/Skybox/PolyWorld Skies/Textures/VRDL_SkyJ_DN.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Skybox/PolyWorld Skies/Textures/VRDL_SkyJ_DN.bmp -------------------------------------------------------------------------------- /Assets/Skybox/PolyWorld Skies/Textures/VRDL_SkyJ_FR.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Skybox/PolyWorld Skies/Textures/VRDL_SkyJ_FR.bmp -------------------------------------------------------------------------------- /Assets/Skybox/PolyWorld Skies/Textures/VRDL_SkyJ_LF.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Skybox/PolyWorld Skies/Textures/VRDL_SkyJ_LF.bmp -------------------------------------------------------------------------------- /Assets/Skybox/PolyWorld Skies/Textures/VRDL_SkyJ_RT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Skybox/PolyWorld Skies/Textures/VRDL_SkyJ_RT.bmp -------------------------------------------------------------------------------- /Assets/Skybox/PolyWorld Skies/Textures/VRDL_SkyJ_UP.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Skybox/PolyWorld Skies/Textures/VRDL_SkyJ_UP.bmp -------------------------------------------------------------------------------- /Assets/Skybox/PolyWorld Skies/VRDL_SkyJ.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d4ed60a85462b447b746c58c65d73d6 3 | timeCreated: 1444682172 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Start Level.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d31ba93bc72aaf142b6a4a58c2e78d0c 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Start Level/Icon Button Bar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64278737bfbea6f44b3a8b50140fc858 3 | folderAsset: yes 4 | timeCreated: 1446323369 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Start Level/Icon Button Bar/Foundation Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Start Level/Icon Button Bar/Foundation Texture.png -------------------------------------------------------------------------------- /Assets/Start Level/Icon Button Bar/Foundation_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e8ddcaf23120af4296be9b11dcc7230 3 | timeCreated: 1444845334 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Start Level/Icon Button Bar/Icon Button Bar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb91ed78de4866443ad2e7a2ec2b5f25 3 | timeCreated: 1444871521 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Start Level/Icon Button Bar/ImmersionTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Start Level/Icon Button Bar/ImmersionTexture.png -------------------------------------------------------------------------------- /Assets/Start Level/Icon Button Bar/Immersion_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4c1fdcb42b2de148acb76f14d20230d 3 | timeCreated: 1444845389 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Start Level/Procedural Room.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bb0c35d4387c494084ab8a8955148bd 3 | timeCreated: 1445236103 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Start Level/Wall.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 830ad83be27062b479fcf9cf872ed9cf 3 | timeCreated: 1445233935 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Start Level/Wall_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f5177618754ef94ead0d768b3877a91 3 | timeCreated: 1445233910 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Start Level/Welcome Room.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e2cdb1009f64b7429b4f3c42a0440c1 3 | timeCreated: 1445236873 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Start Level/Welcome Sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Start Level/Welcome Sign.png -------------------------------------------------------------------------------- /Assets/Start Level/WelcomeSign.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75d62af271f0f554c847692737e72ceb 3 | timeCreated: 1445219565 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Start Level/Welcome_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 114543268373d0242b84ef653f0b6fd1 3 | timeCreated: 1445219049 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Terrain.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d454ea30dcfa174d8f3ecd07e7376e1 3 | folderAsset: yes 4 | timeCreated: 1450804492 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Terrain/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26b7bdd8a6dba8249b44f2cf4182310e 3 | folderAsset: yes 4 | timeCreated: 1450807907 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Terrain/Materials/bush.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fdc1221bbaaff240a1b3fe167c80042 3 | timeCreated: 1450816737 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Terrain/Materials/rockTexture.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebb3145cea4866f4fbf733fe71c9538c 3 | timeCreated: 1450807907 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Terrain/Medium_Rock.fbm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 081b65c3bdf9a8e4bb8edc56370716a6 3 | folderAsset: yes 4 | timeCreated: 1450807908 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Terrain/Medium_Rock.fbm/rockTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Terrain/Medium_Rock.fbm/rockTexture.png -------------------------------------------------------------------------------- /Assets/Terrain/Medium_Rock.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Terrain/Medium_Rock.fbx -------------------------------------------------------------------------------- /Assets/Terrain/New Terrain.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Terrain/New Terrain.asset -------------------------------------------------------------------------------- /Assets/Terrain/New Terrain.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5064942a4be615e4c890d659327cff81 3 | timeCreated: 1450804273 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Terrain/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fa24cecb62fdcc43b1de42e76409788 3 | folderAsset: yes 4 | timeCreated: 1450804686 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Terrain/Textures/grassTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Terrain/Textures/grassTexture.png -------------------------------------------------------------------------------- /Assets/Terrain/Textures/groundTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Terrain/Textures/groundTexture.png -------------------------------------------------------------------------------- /Assets/Terrain/Textures/pathTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Terrain/Textures/pathTexture.png -------------------------------------------------------------------------------- /Assets/Terrain/Textures/rockTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Terrain/Textures/rockTexture.png -------------------------------------------------------------------------------- /Assets/Terrain/Textures/sandTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Terrain/Textures/sandTexture.png -------------------------------------------------------------------------------- /Assets/Terrain/simple-bush.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Assets/Terrain/simple-bush.fbx -------------------------------------------------------------------------------- /Photoshop/Lab_Cards_01.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Photoshop/Lab_Cards_01.psd -------------------------------------------------------------------------------- /Photoshop/LookDownPSD.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Photoshop/LookDownPSD.psd -------------------------------------------------------------------------------- /Photoshop/LookDownTexture.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Photoshop/LookDownTexture.psd -------------------------------------------------------------------------------- /Photoshop/TrackingOff.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Photoshop/TrackingOff.psd -------------------------------------------------------------------------------- /Photoshop/Welcome Sign.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRUX-CO/VRDesignLab/b07280be00630ad777e047abe833ac7a852be74f/Photoshop/Welcome Sign.psd -------------------------------------------------------------------------------- /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/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.5.0f3 2 | -------------------------------------------------------------------------------- /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: .0199999996 7 | Maximum Allowed Timestep: .333333343 8 | m_TimeScale: 1 9 | --------------------------------------------------------------------------------