├── .gitattributes ├── ARNav ├── .collabignore ├── .gradle │ ├── 4.6 │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ ├── fileHashes │ │ │ └── fileHashes.lock │ │ └── taskHistory │ │ │ └── taskHistory.lock │ └── buildOutputCleanup │ │ ├── buildOutputCleanup.lock │ │ └── cache.properties ├── .vs │ ├── CatSimulator - Copy │ │ └── v15 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ └── CatSimulator │ │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal ├── Assembly-CSharp-Editor.csproj ├── Assembly-CSharp.csproj ├── Assets │ ├── Animators.meta │ ├── Animators │ │ ├── CatARController.controller │ │ └── CatARController.controller.meta │ ├── CatMoveTo.cs │ ├── CatMoveTo.cs.meta │ ├── GPS.cs │ ├── GPS.cs.meta │ ├── GoogleARCore.meta │ ├── GoogleARCore │ │ ├── CLI.meta │ │ ├── CLI │ │ │ ├── augmented_image_cli_linux │ │ │ ├── augmented_image_cli_linux.meta │ │ │ ├── augmented_image_cli_osx │ │ │ ├── augmented_image_cli_osx.meta │ │ │ ├── augmented_image_cli_win.exe │ │ │ └── augmented_image_cli_win.exe.meta │ │ ├── Configurations.meta │ │ ├── Configurations │ │ │ ├── DefaultSessionConfig.asset │ │ │ └── DefaultSessionConfig.asset.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── ARCoreiOSDependencies.template │ │ │ └── ARCoreiOSDependencies.template.meta │ │ ├── Examples.meta │ │ ├── Examples │ │ │ ├── AugmentedImage.meta │ │ │ ├── AugmentedImage │ │ │ │ ├── Configurations.meta │ │ │ │ ├── Configurations │ │ │ │ │ ├── AugmentedImagesSessionConfig.asset │ │ │ │ │ └── AugmentedImagesSessionConfig.asset.meta │ │ │ │ ├── Images.meta │ │ │ │ ├── Images │ │ │ │ │ ├── 000.jpg │ │ │ │ │ ├── 000.jpg.meta │ │ │ │ │ ├── 001.jpg │ │ │ │ │ ├── 001.jpg.meta │ │ │ │ │ ├── 002.jpg │ │ │ │ │ ├── 002.jpg.meta │ │ │ │ │ ├── 003.jpg │ │ │ │ │ ├── 003.jpg.meta │ │ │ │ │ ├── 004.jpg │ │ │ │ │ ├── 004.jpg.meta │ │ │ │ │ ├── 005.jpg │ │ │ │ │ ├── 005.jpg.meta │ │ │ │ │ ├── 006.jpg │ │ │ │ │ ├── 006.jpg.meta │ │ │ │ │ ├── 007.jpg │ │ │ │ │ ├── 007.jpg.meta │ │ │ │ │ ├── 008.jpg │ │ │ │ │ ├── 008.jpg.meta │ │ │ │ │ ├── 009.jpg │ │ │ │ │ ├── 009.jpg.meta │ │ │ │ │ ├── Example Database.asset │ │ │ │ │ └── Example Database.asset.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Frame.meta │ │ │ │ │ └── Frame │ │ │ │ │ │ ├── Frame Material.mat │ │ │ │ │ │ ├── Frame Material.mat.meta │ │ │ │ │ │ ├── FrameLowerLeft.obj │ │ │ │ │ │ ├── FrameLowerLeft.obj.meta │ │ │ │ │ │ ├── FrameLowerRight.obj │ │ │ │ │ │ ├── FrameLowerRight.obj.meta │ │ │ │ │ │ ├── FrameUpperLeft.obj │ │ │ │ │ │ ├── FrameUpperLeft.obj.meta │ │ │ │ │ │ ├── FrameUpperRight.obj │ │ │ │ │ │ └── FrameUpperRight.obj.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── AugmentedImageVisualizer.prefab │ │ │ │ │ └── AugmentedImageVisualizer.prefab.meta │ │ │ │ ├── Scenes.meta │ │ │ │ ├── Scenes │ │ │ │ │ ├── AugmentedImage.unity │ │ │ │ │ └── AugmentedImage.unity.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── AugmentedImageExampleController.cs │ │ │ │ │ ├── AugmentedImageExampleController.cs.meta │ │ │ │ │ ├── AugmentedImageVisualizer.cs │ │ │ │ │ └── AugmentedImageVisualizer.cs.meta │ │ │ │ ├── Textures.meta │ │ │ │ └── Textures │ │ │ │ │ ├── fit_to_scan.png │ │ │ │ │ ├── fit_to_scan.png.meta │ │ │ │ │ ├── frame_base.png │ │ │ │ │ └── frame_base.png.meta │ │ │ ├── CloudAnchors.meta │ │ │ ├── CloudAnchors │ │ │ │ ├── Configurations.meta │ │ │ │ ├── Configurations │ │ │ │ │ ├── CloudAnchorsSessionConfig.asset │ │ │ │ │ └── CloudAnchorsSessionConfig.asset.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── AnchorDiffuse.png │ │ │ │ │ ├── AnchorDiffuse.png.meta │ │ │ │ │ ├── AnchorDiffuseMaterial.mat │ │ │ │ │ ├── AnchorDiffuseMaterial.mat.meta │ │ │ │ │ ├── AnchorMaterial.mat │ │ │ │ │ ├── AnchorMaterial.mat.meta │ │ │ │ │ ├── StarDiffuse.png │ │ │ │ │ ├── StarDiffuse.png.meta │ │ │ │ │ ├── StarDiffuseMaterial.mat │ │ │ │ │ ├── StarDiffuseMaterial.mat.meta │ │ │ │ │ ├── StarMaterial.mat │ │ │ │ │ └── StarMaterial.mat.meta │ │ │ │ ├── Models.meta │ │ │ │ ├── Models │ │ │ │ │ ├── Star_01.mtl │ │ │ │ │ ├── Star_01.mtl.meta │ │ │ │ │ ├── Star_01.obj │ │ │ │ │ ├── Star_01.obj.meta │ │ │ │ │ ├── anchor.mtl │ │ │ │ │ ├── anchor.mtl.meta │ │ │ │ │ ├── anchor.obj │ │ │ │ │ └── anchor.obj.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── Anchor.prefab │ │ │ │ │ ├── Anchor.prefab.meta │ │ │ │ │ ├── Player.prefab │ │ │ │ │ ├── Player.prefab.meta │ │ │ │ │ ├── Row.prefab │ │ │ │ │ ├── Row.prefab.meta │ │ │ │ │ ├── Star.prefab │ │ │ │ │ └── Star.prefab.meta │ │ │ │ ├── Scenes.meta │ │ │ │ ├── Scenes │ │ │ │ │ ├── CloudAnchors.unity │ │ │ │ │ └── CloudAnchors.unity.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── ARCoreWorldOriginHelper.cs │ │ │ │ │ ├── ARCoreWorldOriginHelper.cs.meta │ │ │ │ │ ├── ARKitHelper.cs │ │ │ │ │ ├── ARKitHelper.cs.meta │ │ │ │ │ ├── AnchorController.cs │ │ │ │ │ ├── AnchorController.cs.meta │ │ │ │ │ ├── CloudAnchorsExampleController.cs │ │ │ │ │ ├── CloudAnchorsExampleController.cs.meta │ │ │ │ │ ├── LocalPlayerController.cs │ │ │ │ │ ├── LocalPlayerController.cs.meta │ │ │ │ │ ├── MultiplatformMeshSelector.cs │ │ │ │ │ ├── MultiplatformMeshSelector.cs.meta │ │ │ │ │ ├── NetworkManagerUIController.cs │ │ │ │ │ └── NetworkManagerUIController.cs.meta │ │ │ │ ├── circle.png │ │ │ │ └── circle.png.meta │ │ │ ├── Common.meta │ │ │ ├── Common │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Andy.meta │ │ │ │ │ ├── Andy │ │ │ │ │ │ ├── Andy.obj │ │ │ │ │ │ ├── Andy.obj.meta │ │ │ │ │ │ ├── AndyBlobShadow.obj │ │ │ │ │ │ ├── AndyBlobShadow.obj.meta │ │ │ │ │ │ ├── AndyBlobShadow.png │ │ │ │ │ │ ├── AndyBlobShadow.png.meta │ │ │ │ │ │ ├── AndyDiffuseMaterial.mat │ │ │ │ │ │ ├── AndyDiffuseMaterial.mat.meta │ │ │ │ │ │ ├── AndyMaterialBlue.mat │ │ │ │ │ │ ├── AndyMaterialBlue.mat.meta │ │ │ │ │ │ ├── AndyMaterialGreen.mat │ │ │ │ │ │ ├── AndyMaterialGreen.mat.meta │ │ │ │ │ │ ├── AndyShadowMaterial.mat │ │ │ │ │ │ ├── AndyShadowMaterial.mat.meta │ │ │ │ │ │ ├── Andy_DiffuseLitBlue.png │ │ │ │ │ │ ├── Andy_DiffuseLitBlue.png.meta │ │ │ │ │ │ ├── Andy_DiffuseLitGreen.png │ │ │ │ │ │ └── Andy_DiffuseLitGreen.png.meta │ │ │ │ │ ├── PlaneGrid.mat │ │ │ │ │ ├── PlaneGrid.mat.meta │ │ │ │ │ ├── PointCloud.mat │ │ │ │ │ ├── PointCloud.mat.meta │ │ │ │ │ ├── Shaders.meta │ │ │ │ │ ├── Shaders │ │ │ │ │ │ ├── MobileDiffuseWithLightEstimation.shader │ │ │ │ │ │ ├── MobileDiffuseWithLightEstimation.shader.meta │ │ │ │ │ │ ├── MobileSpecularWithLightEstimation.shader │ │ │ │ │ │ ├── MobileSpecularWithLightEstimation.shader.meta │ │ │ │ │ │ ├── PlaneGrid.shader │ │ │ │ │ │ ├── PlaneGrid.shader.meta │ │ │ │ │ │ ├── PointCloud.shader │ │ │ │ │ │ └── PointCloud.shader.meta │ │ │ │ │ ├── Textures.meta │ │ │ │ │ └── Textures │ │ │ │ │ │ ├── AugmentedImageIcon.png │ │ │ │ │ │ ├── AugmentedImageIcon.png.meta │ │ │ │ │ │ ├── CloudAnchorIcon.png │ │ │ │ │ │ ├── CloudAnchorIcon.png.meta │ │ │ │ │ │ ├── ComputerVisionIcon.png │ │ │ │ │ │ ├── ComputerVisionIcon.png.meta │ │ │ │ │ │ ├── HelloARIcon.png │ │ │ │ │ │ ├── HelloARIcon.png.meta │ │ │ │ │ │ ├── TriGrid.png │ │ │ │ │ │ └── TriGrid.png.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── AndyBlue.prefab │ │ │ │ │ ├── AndyBlue.prefab.meta │ │ │ │ │ ├── AndyGreen.prefab │ │ │ │ │ ├── AndyGreen.prefab.meta │ │ │ │ │ ├── AndyGreenDiffuse.prefab │ │ │ │ │ ├── AndyGreenDiffuse.prefab.meta │ │ │ │ │ ├── DetectedPlaneVisualizer.prefab │ │ │ │ │ └── DetectedPlaneVisualizer.prefab.meta │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ ├── Roboto-Regular.ttf.meta │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── DetectedPlaneGenerator.cs │ │ │ │ │ ├── DetectedPlaneGenerator.cs.meta │ │ │ │ │ ├── DetectedPlaneVisualizer.cs │ │ │ │ │ ├── DetectedPlaneVisualizer.cs.meta │ │ │ │ │ ├── PointcloudVisualizer.cs │ │ │ │ │ └── PointcloudVisualizer.cs.meta │ │ │ ├── ComputerVision.meta │ │ │ ├── ComputerVision │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── EdgeDetectionBackground.shader │ │ │ │ │ ├── EdgeDetectionBackground.shader.meta │ │ │ │ │ ├── EdgeDetectionBackgroundMaterial.mat │ │ │ │ │ └── EdgeDetectionBackgroundMaterial.mat.meta │ │ │ │ ├── Plugins.meta │ │ │ │ ├── Plugins │ │ │ │ │ ├── libarcore_camera_utility.so │ │ │ │ │ ├── libarcore_camera_utility.so.meta │ │ │ │ │ ├── src.meta │ │ │ │ │ └── src │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── README.md.meta │ │ │ │ │ │ ├── arcore_camera_utility.zip │ │ │ │ │ │ └── arcore_camera_utility.zip.meta │ │ │ │ ├── Scenes.meta │ │ │ │ ├── Scenes │ │ │ │ │ ├── ComputerVision.unity │ │ │ │ │ └── ComputerVision.unity.meta │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── ComputerVisionController.cs │ │ │ │ │ ├── ComputerVisionController.cs.meta │ │ │ │ │ ├── EdgeDetector.cs │ │ │ │ │ ├── EdgeDetector.cs.meta │ │ │ │ │ ├── PointClickHandler.cs │ │ │ │ │ ├── PointClickHandler.cs.meta │ │ │ │ │ ├── TextureReader.cs │ │ │ │ │ ├── TextureReader.cs.meta │ │ │ │ │ ├── TextureReaderApi.cs │ │ │ │ │ └── TextureReaderApi.cs.meta │ │ │ ├── HelloAR.meta │ │ │ └── HelloAR │ │ │ │ ├── Scenes.meta │ │ │ │ ├── Scenes │ │ │ │ ├── HelloAR.unity │ │ │ │ └── HelloAR.unity.meta │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ ├── HelloARController.cs │ │ │ │ └── HelloARController.cs.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── ARCore Device.prefab │ │ │ ├── ARCore Device.prefab.meta │ │ │ ├── Environmental Light.prefab │ │ │ └── Environmental Light.prefab.meta │ │ ├── SDK.meta │ │ └── SDK │ │ │ ├── BuildResources.meta │ │ │ ├── BuildResources │ │ │ ├── cloud_anchor_manifest.aartemplate │ │ │ └── cloud_anchor_manifest.aartemplate.meta │ │ │ ├── InstantPreview.meta │ │ │ ├── InstantPreview │ │ │ ├── Plugins.meta │ │ │ ├── Plugins │ │ │ │ ├── x86_64.meta │ │ │ │ └── x86_64 │ │ │ │ │ ├── arcore_instant_preview_shared.dll │ │ │ │ │ ├── arcore_instant_preview_shared.dll.meta │ │ │ │ │ ├── arcore_instant_preview_unity_plugin.bundle.meta │ │ │ │ │ ├── arcore_instant_preview_unity_plugin.bundle │ │ │ │ │ ├── Contents.meta │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── MacOS.meta │ │ │ │ │ │ └── MacOS │ │ │ │ │ │ ├── arcore_instant_preview_unity_plugin │ │ │ │ │ │ ├── arcore_instant_preview_unity_plugin.meta │ │ │ │ │ │ ├── libarcore_instant_preview_shared.dylib │ │ │ │ │ │ └── libarcore_instant_preview_shared.dylib.meta │ │ │ │ │ ├── arcore_instant_preview_unity_plugin.dll │ │ │ │ │ └── arcore_instant_preview_unity_plugin.dll.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── InstantPreview.apk │ │ │ │ ├── InstantPreview.apk.meta │ │ │ │ ├── InstantPreviewInput.cs │ │ │ │ ├── InstantPreviewInput.cs.meta │ │ │ │ ├── InstantPreviewManager.cs │ │ │ │ ├── InstantPreviewManager.cs.meta │ │ │ │ ├── InstantPreviewTrackedPoseDriver.cs │ │ │ │ ├── InstantPreviewTrackedPoseDriver.cs.meta │ │ │ │ ├── InstantPreviewWarning.cs │ │ │ │ └── InstantPreviewWarning.cs.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ ├── ARBackground.mat │ │ │ ├── ARBackground.mat.meta │ │ │ ├── ARBackground.shader │ │ │ └── ARBackground.shader.meta │ │ │ ├── Plugins.meta │ │ │ ├── Plugins │ │ │ ├── arcore_arkit_integration.mm │ │ │ ├── arcore_arkit_integration.mm.meta │ │ │ ├── arcore_client.aar │ │ │ ├── arcore_client.aar.meta │ │ │ ├── arcore_unity.aar │ │ │ ├── arcore_unity.aar.meta │ │ │ ├── google_ar_optional.aar │ │ │ ├── google_ar_optional.aar.meta │ │ │ ├── google_ar_required.aar │ │ │ ├── google_ar_required.aar.meta │ │ │ ├── unityandroidpermissions.aar │ │ │ ├── unityandroidpermissions.aar.meta │ │ │ ├── unitygar.aar │ │ │ └── unitygar.aar.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ ├── ARCoreBackgroundRenderer.cs │ │ │ ├── ARCoreBackgroundRenderer.cs.meta │ │ │ ├── ARCoreSession.cs │ │ │ ├── ARCoreSession.cs.meta │ │ │ ├── ARCoreSessionConfig.cs │ │ │ ├── ARCoreSessionConfig.cs.meta │ │ │ ├── Anchor.cs │ │ │ ├── Anchor.cs.meta │ │ │ ├── AndroidPermissionsManager.cs │ │ │ ├── AndroidPermissionsManager.cs.meta │ │ │ ├── AndroidPermissionsRequestResult.cs │ │ │ ├── AndroidPermissionsRequestResult.cs.meta │ │ │ ├── Api.meta │ │ │ ├── Api │ │ │ ├── NativeSession.cs │ │ │ ├── NativeSession.cs.meta │ │ │ ├── Types.meta │ │ │ ├── Types │ │ │ │ ├── ApiApkInstallStatusExtensions.cs │ │ │ │ ├── ApiApkInstallStatusExtensions.cs.meta │ │ │ │ ├── ApiApkInstallationStatus.cs │ │ │ │ ├── ApiApkInstallationStatus.cs.meta │ │ │ │ ├── ApiArStatus.cs │ │ │ │ ├── ApiArStatus.cs.meta │ │ │ │ ├── ApiArStatusExtensions.cs │ │ │ │ ├── ApiArStatusExtensions.cs.meta │ │ │ │ ├── ApiAvailability.cs │ │ │ │ ├── ApiAvailability.cs.meta │ │ │ │ ├── ApiAvailabilityExtensions.cs │ │ │ │ ├── ApiAvailabilityExtensions.cs.meta │ │ │ │ ├── ApiCameraFocusMode.cs │ │ │ │ ├── ApiCameraFocusMode.cs.meta │ │ │ │ ├── ApiCameraMetadata.cs │ │ │ │ ├── ApiCameraMetadata.cs.meta │ │ │ │ ├── ApiCloudAnchorMode.cs │ │ │ │ ├── ApiCloudAnchorMode.cs.meta │ │ │ │ ├── ApiCloudAnchorState.cs │ │ │ │ ├── ApiCloudAnchorState.cs.meta │ │ │ │ ├── ApiCloudAnchorStateExtensions.cs │ │ │ │ ├── ApiCloudAnchorStateExtensions.cs.meta │ │ │ │ ├── ApiConstants.cs │ │ │ │ ├── ApiConstants.cs.meta │ │ │ │ ├── ApiDisplayUvCoords.cs │ │ │ │ ├── ApiDisplayUvCoords.cs.meta │ │ │ │ ├── ApiDisplayUvCoordsExtensions.cs │ │ │ │ ├── ApiDisplayUvCoordsExtensions.cs.meta │ │ │ │ ├── ApiFeaturePointOrientationMode.cs │ │ │ │ ├── ApiFeaturePointOrientationMode.cs.meta │ │ │ │ ├── ApiFeaturePointOrientationModeExtensions.cs │ │ │ │ ├── ApiFeaturePointOrientationModeExtensions.cs.meta │ │ │ │ ├── ApiLightEstimateState.cs │ │ │ │ ├── ApiLightEstimateState.cs.meta │ │ │ │ ├── ApiLightEstimateStateExtensions.cs │ │ │ │ ├── ApiLightEstimateStateExtensions.cs.meta │ │ │ │ ├── ApiLightEstimationMode.cs │ │ │ │ ├── ApiLightEstimationMode.cs.meta │ │ │ │ ├── ApiPlaneFindingMode.cs │ │ │ │ ├── ApiPlaneFindingMode.cs.meta │ │ │ │ ├── ApiPlaneType.cs │ │ │ │ ├── ApiPlaneType.cs.meta │ │ │ │ ├── ApiPlaneTypeExtensions.cs │ │ │ │ ├── ApiPlaneTypeExtensions.cs.meta │ │ │ │ ├── ApiPoseData.cs │ │ │ │ ├── ApiPoseData.cs.meta │ │ │ │ ├── ApiPrestoConfig.cs │ │ │ │ ├── ApiPrestoConfig.cs.meta │ │ │ │ ├── ApiPrestoStatus.cs │ │ │ │ ├── ApiPrestoStatus.cs.meta │ │ │ │ ├── ApiPrestoStatusExtensions.cs │ │ │ │ ├── ApiPrestoStatusExtensions.cs.meta │ │ │ │ ├── ApiTrackableType.cs │ │ │ │ ├── ApiTrackableType.cs.meta │ │ │ │ ├── ApiTrackingState.cs │ │ │ │ ├── ApiTrackingState.cs.meta │ │ │ │ ├── ApiTrackingStateExtensions.cs │ │ │ │ ├── ApiTrackingStateExtensions.cs.meta │ │ │ │ ├── ApiTrackingStateXPExtensions.cs │ │ │ │ ├── ApiTrackingStateXPExtensions.cs.meta │ │ │ │ ├── ApiUpdateMode.cs │ │ │ │ └── ApiUpdateMode.cs.meta │ │ │ ├── Wrappers.meta │ │ │ └── Wrappers │ │ │ │ ├── AnchorApi.cs │ │ │ │ ├── AnchorApi.cs.meta │ │ │ │ ├── AugmentedImageApi.cs │ │ │ │ ├── AugmentedImageApi.cs.meta │ │ │ │ ├── AugmentedImageDatabaseApi.cs │ │ │ │ ├── AugmentedImageDatabaseApi.cs.meta │ │ │ │ ├── CameraApi.cs │ │ │ │ ├── CameraApi.cs.meta │ │ │ │ ├── CameraConfigApi.cs │ │ │ │ ├── CameraConfigApi.cs.meta │ │ │ │ ├── CameraConfigListApi.cs │ │ │ │ ├── CameraConfigListApi.cs.meta │ │ │ │ ├── CameraMetadataApi.cs │ │ │ │ ├── CameraMetadataApi.cs.meta │ │ │ │ ├── FrameApi.cs │ │ │ │ ├── FrameApi.cs.meta │ │ │ │ ├── HitTestApi.cs │ │ │ │ ├── HitTestApi.cs.meta │ │ │ │ ├── ImageApi.cs │ │ │ │ ├── ImageApi.cs.meta │ │ │ │ ├── LightEstimateApi.cs │ │ │ │ ├── LightEstimateApi.cs.meta │ │ │ │ ├── PlaneApi.cs │ │ │ │ ├── PlaneApi.cs.meta │ │ │ │ ├── PointApi.cs │ │ │ │ ├── PointApi.cs.meta │ │ │ │ ├── PointCloudApi.cs │ │ │ │ ├── PointCloudApi.cs.meta │ │ │ │ ├── PoseApi.cs │ │ │ │ ├── PoseApi.cs.meta │ │ │ │ ├── SessionApi.cs │ │ │ │ ├── SessionApi.cs.meta │ │ │ │ ├── SessionConfigApi.cs │ │ │ │ ├── SessionConfigApi.cs.meta │ │ │ │ ├── TrackableApi.cs │ │ │ │ ├── TrackableApi.cs.meta │ │ │ │ ├── TrackableListApi.cs │ │ │ │ └── TrackableListApi.cs.meta │ │ │ ├── ApkAvailabilityStatus.cs │ │ │ ├── ApkAvailabilityStatus.cs.meta │ │ │ ├── ApkInstallationStatus.cs │ │ │ ├── ApkInstallationStatus.cs.meta │ │ │ ├── Async.meta │ │ │ ├── Async │ │ │ ├── WaitForTaskCompletionYieldInstruction.cs │ │ │ └── WaitForTaskCompletionYieldInstruction.cs.meta │ │ │ ├── AsyncTask.cs │ │ │ ├── AsyncTask.cs.meta │ │ │ ├── AugmentedImage.cs │ │ │ ├── AugmentedImage.cs.meta │ │ │ ├── AugmentedImageDatabase.cs │ │ │ ├── AugmentedImageDatabase.cs.meta │ │ │ ├── AugmentedImageDatabaseEntry.cs │ │ │ ├── AugmentedImageDatabaseEntry.cs.meta │ │ │ ├── CameraConfig.cs │ │ │ ├── CameraConfig.cs.meta │ │ │ ├── CameraFocusMode.cs │ │ │ ├── CameraFocusMode.cs.meta │ │ │ ├── CameraImageBytes.cs │ │ │ ├── CameraImageBytes.cs.meta │ │ │ ├── CameraIntrinsics.cs │ │ │ ├── CameraIntrinsics.cs.meta │ │ │ ├── CameraMetadataTag.cs │ │ │ ├── CameraMetadataTag.cs.meta │ │ │ ├── CameraMetadataValue.cs │ │ │ ├── CameraMetadataValue.cs.meta │ │ │ ├── CloudAnchorResult.cs │ │ │ ├── CloudAnchorResult.cs.meta │ │ │ ├── CloudServiceResponse.cs │ │ │ ├── CloudServiceResponse.cs.meta │ │ │ ├── Deprecated.meta │ │ │ ├── Deprecated │ │ │ ├── TrackedPlane.cs │ │ │ ├── TrackedPlane.cs.meta │ │ │ ├── TrackedPoint.cs │ │ │ ├── TrackedPoint.cs.meta │ │ │ ├── TrackedPointOrientationMode.cs │ │ │ └── TrackedPointOrientationMode.cs.meta │ │ │ ├── DetectedPlane.cs │ │ │ ├── DetectedPlane.cs.meta │ │ │ ├── DetectedPlaneFindingMode.cs │ │ │ ├── DetectedPlaneFindingMode.cs.meta │ │ │ ├── DetectedPlaneType.cs │ │ │ ├── DetectedPlaneType.cs.meta │ │ │ ├── DisplayUvCoords.cs │ │ │ ├── DisplayUvCoords.cs.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── ARCoreIOSSupportHelper.cs │ │ │ ├── ARCoreIOSSupportHelper.cs.meta │ │ │ ├── ARCoreIOSSupportPreprocessBuild.cs │ │ │ ├── ARCoreIOSSupportPreprocessBuild.cs.meta │ │ │ ├── ARCoreProjectSettingsWindow.cs │ │ │ ├── ARCoreProjectSettingsWindow.cs.meta │ │ │ ├── ARCoreSupportedPreprocessBuild.cs │ │ │ ├── ARCoreSupportedPreprocessBuild.cs.meta │ │ │ ├── AssetHelper.cs │ │ │ ├── AssetHelper.cs.meta │ │ │ ├── AugmentedImageDatabaseContextMenu.cs │ │ │ ├── AugmentedImageDatabaseContextMenu.cs.meta │ │ │ ├── AugmentedImageDatabaseInspector.cs │ │ │ ├── AugmentedImageDatabaseInspector.cs.meta │ │ │ ├── AugmentedImageDatabasePreprocessBuild.cs │ │ │ ├── AugmentedImageDatabasePreprocessBuild.cs.meta │ │ │ ├── BackgroundJobExecutor.cs │ │ │ ├── BackgroundJobExecutor.cs.meta │ │ │ ├── CloudAnchorPreprocessBuild.cs │ │ │ ├── CloudAnchorPreprocessBuild.cs.meta │ │ │ ├── ExampleBuildHelper.cs │ │ │ ├── ExampleBuildHelper.cs.meta │ │ │ ├── ExamplePreprocessBuild.cs │ │ │ ├── ExamplePreprocessBuild.cs.meta │ │ │ ├── PreprocessBuildBase.cs │ │ │ ├── PreprocessBuildBase.cs.meta │ │ │ ├── RequiredOptionalPreprocessBuild.cs │ │ │ └── RequiredOptionalPreprocessBuild.cs.meta │ │ │ ├── EnvironmentalLight.cs │ │ │ ├── EnvironmentalLight.cs.meta │ │ │ ├── ExperimentSupport.meta │ │ │ ├── ExperimentSupport │ │ │ ├── ExperimentBase.cs │ │ │ ├── ExperimentBase.cs.meta │ │ │ ├── ExperimentManager.cs │ │ │ └── ExperimentManager.cs.meta │ │ │ ├── FeaturePoint.cs │ │ │ ├── FeaturePoint.cs.meta │ │ │ ├── FeaturePointOrientationMode.cs │ │ │ ├── FeaturePointOrientationMode.cs.meta │ │ │ ├── Frame.cs │ │ │ ├── Frame.cs.meta │ │ │ ├── LightEstimate.cs │ │ │ ├── LightEstimate.cs.meta │ │ │ ├── LightEstimateState.cs │ │ │ ├── LightEstimateState.cs.meta │ │ │ ├── Managers.meta │ │ │ ├── Managers │ │ │ ├── ARCoreAndroidLifecycleManager.cs │ │ │ ├── ARCoreAndroidLifecycleManager.cs.meta │ │ │ ├── ARCoreIOSLifecycleManager.cs │ │ │ ├── ARCoreIOSLifecycleManager.cs.meta │ │ │ ├── ARPrestoCallbackManager.cs │ │ │ ├── ARPrestoCallbackManager.cs.meta │ │ │ ├── CloudServiceManager.cs │ │ │ ├── CloudServiceManager.cs.meta │ │ │ ├── ILifecycleManager.cs │ │ │ ├── ILifecycleManager.cs.meta │ │ │ ├── LifecycleManager.cs │ │ │ ├── LifecycleManager.cs.meta │ │ │ ├── TrackableManager.cs │ │ │ └── TrackableManager.cs.meta │ │ │ ├── PointCloudPoint.cs │ │ │ ├── PointCloudPoint.cs.meta │ │ │ ├── Session.cs │ │ │ ├── Session.cs.meta │ │ │ ├── SessionStatus.cs │ │ │ ├── SessionStatus.cs.meta │ │ │ ├── SessionStatusExtensions.cs │ │ │ ├── SessionStatusExtensions.cs.meta │ │ │ ├── Trackable.cs │ │ │ ├── Trackable.cs.meta │ │ │ ├── TrackableHit.cs │ │ │ ├── TrackableHit.cs.meta │ │ │ ├── TrackableHitFlags.cs │ │ │ ├── TrackableHitFlags.cs.meta │ │ │ ├── TrackableQueryFilter.cs │ │ │ ├── TrackableQueryFilter.cs.meta │ │ │ ├── TrackingState.cs │ │ │ ├── TrackingState.cs.meta │ │ │ ├── Utility.meta │ │ │ ├── Utility │ │ │ ├── ARCoreProjectSettings.cs │ │ │ ├── ARCoreProjectSettings.cs.meta │ │ │ ├── ARDebug.cs │ │ │ ├── ARDebug.cs.meta │ │ │ ├── ConversionHelper.cs │ │ │ ├── ConversionHelper.cs.meta │ │ │ ├── DllImportNoop.cs │ │ │ ├── DllImportNoop.cs.meta │ │ │ ├── IntPtrEqualityComparer.cs │ │ │ ├── IntPtrEqualityComparer.cs.meta │ │ │ ├── MarshalingHelper.cs │ │ │ ├── MarshalingHelper.cs.meta │ │ │ ├── ShellHelper.cs │ │ │ ├── ShellHelper.cs.meta │ │ │ ├── SuppressMemoryAllocationErrorAttribute.cs │ │ │ ├── SuppressMemoryAllocationErrorAttribute.cs.meta │ │ │ ├── ThrottledLogMessage.cs │ │ │ └── ThrottledLogMessage.cs.meta │ │ │ ├── XPAnchor.cs │ │ │ ├── XPAnchor.cs.meta │ │ │ ├── XPSession.cs │ │ │ ├── XPSession.cs.meta │ │ │ ├── XPSessionStatus.cs │ │ │ ├── XPSessionStatus.cs.meta │ │ │ ├── XPTrackingState.cs │ │ │ └── XPTrackingState.cs.meta │ ├── Lowpoly Toon Cat Lite.meta │ ├── Lowpoly Toon Cat Lite │ │ ├── Demo.meta │ │ ├── Demo │ │ │ ├── Cat_Lite_Demo.cs │ │ │ ├── Cat_Lite_Demo.cs.meta │ │ │ ├── Cat_Lite_Demo.unity │ │ │ ├── Cat_Lite_Demo.unity.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── DENNE MARKER.TTF │ │ │ │ └── DENNE MARKER.TTF.meta │ │ ├── Model.meta │ │ └── Model │ │ │ ├── Animator.meta │ │ │ ├── Animator │ │ │ ├── Cat_Lite_AC.controller │ │ │ └── Cat_Lite_AC.controller.meta │ │ │ ├── Cat Lite.fbx │ │ │ ├── Cat Lite.fbx.meta │ │ │ ├── Materials.meta │ │ │ └── Textures.meta │ ├── MainScene.unity │ ├── MainScene.unity.meta │ ├── MapApi.cs │ ├── MapApi.cs.meta │ ├── Pedometer.meta │ ├── PlayServicesResolver.meta │ ├── Prefabs.meta │ ├── Route.cs │ ├── Route.cs.meta │ ├── SceneController.cs │ ├── SceneController.cs.meta │ ├── Scenes.meta │ ├── Tiger 1.meta │ ├── Tiger.meta │ ├── Unity.Newtonsoft.Json.7.0.0.0.meta │ ├── Walk.prefab │ ├── Walk.prefab.meta │ ├── arrow.obj │ ├── arrow.obj.meta │ ├── textManager.cs │ ├── textManager.cs.meta │ ├── tiger_final.unity │ ├── tiger_final.unity.meta │ ├── tumblr_mfakkc4rni1r7eiedo1_500.jpg │ └── tumblr_mfakkc4rni1r7eiedo1_500.jpg.meta ├── CatSimulator - Copy.sln ├── CatSimulator.Editor.csproj ├── CatSimulator.csproj ├── CatSimulator.sln ├── Unity.Analytics.DataPrivacy.csproj ├── Unity.CollabProxy.Editor.csproj ├── Unity.PackageManagerUI.Editor.csproj ├── Unity.TextMeshPro.Editor.csproj ├── Unity.TextMeshPro.csproj └── packages.config ├── LICENSE ├── README.md └── gitattributes /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/.gitattributes -------------------------------------------------------------------------------- /ARNav/.collabignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/.collabignore -------------------------------------------------------------------------------- /ARNav/.gradle/4.6/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ARNav/.gradle/4.6/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/.gradle/4.6/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /ARNav/.gradle/4.6/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/.gradle/4.6/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /ARNav/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /ARNav/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Wed May 08 14:50:09 IST 2019 2 | gradle.version=4.6 3 | -------------------------------------------------------------------------------- /ARNav/.vs/CatSimulator - Copy/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/.vs/CatSimulator - Copy/v15/.suo -------------------------------------------------------------------------------- /ARNav/.vs/CatSimulator - Copy/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/.vs/CatSimulator - Copy/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /ARNav/.vs/CatSimulator - Copy/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/.vs/CatSimulator - Copy/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /ARNav/.vs/CatSimulator - Copy/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/.vs/CatSimulator - Copy/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /ARNav/.vs/CatSimulator/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/.vs/CatSimulator/v15/.suo -------------------------------------------------------------------------------- /ARNav/.vs/CatSimulator/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/.vs/CatSimulator/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /ARNav/.vs/CatSimulator/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/.vs/CatSimulator/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /ARNav/.vs/CatSimulator/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/.vs/CatSimulator/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /ARNav/Assembly-CSharp-Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assembly-CSharp-Editor.csproj -------------------------------------------------------------------------------- /ARNav/Assembly-CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assembly-CSharp.csproj -------------------------------------------------------------------------------- /ARNav/Assets/Animators.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Animators.meta -------------------------------------------------------------------------------- /ARNav/Assets/Animators/CatARController.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Animators/CatARController.controller -------------------------------------------------------------------------------- /ARNav/Assets/Animators/CatARController.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Animators/CatARController.controller.meta -------------------------------------------------------------------------------- /ARNav/Assets/CatMoveTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/CatMoveTo.cs -------------------------------------------------------------------------------- /ARNav/Assets/CatMoveTo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/CatMoveTo.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GPS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GPS.cs -------------------------------------------------------------------------------- /ARNav/Assets/GPS.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GPS.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/CLI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/CLI.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/CLI/augmented_image_cli_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/CLI/augmented_image_cli_linux -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/CLI/augmented_image_cli_linux.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/CLI/augmented_image_cli_linux.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/CLI/augmented_image_cli_osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/CLI/augmented_image_cli_osx -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/CLI/augmented_image_cli_osx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/CLI/augmented_image_cli_osx.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/CLI/augmented_image_cli_win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/CLI/augmented_image_cli_win.exe -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/CLI/augmented_image_cli_win.exe.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/CLI/augmented_image_cli_win.exe.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Configurations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Configurations.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Configurations/DefaultSessionConfig.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Configurations/DefaultSessionConfig.asset -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Configurations/DefaultSessionConfig.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Configurations/DefaultSessionConfig.asset.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Editor.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Editor/ARCoreiOSDependencies.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Editor/ARCoreiOSDependencies.template -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Editor/ARCoreiOSDependencies.template.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Editor/ARCoreiOSDependencies.template.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Configurations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Configurations.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Configurations/AugmentedImagesSessionConfig.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Configurations/AugmentedImagesSessionConfig.asset -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Configurations/AugmentedImagesSessionConfig.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Configurations/AugmentedImagesSessionConfig.asset.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/000.jpg -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/000.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/000.jpg.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/001.jpg -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/001.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/001.jpg.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/002.jpg -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/002.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/002.jpg.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/003.jpg -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/003.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/003.jpg.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/004.jpg -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/004.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/004.jpg.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/005.jpg -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/005.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/005.jpg.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/006.jpg -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/006.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/006.jpg.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/007.jpg -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/007.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/007.jpg.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/008.jpg -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/008.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/008.jpg.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/009.jpg -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/009.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/009.jpg.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/Example Database.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/Example Database.asset -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/Example Database.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Images/Example Database.asset.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/Frame Material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/Frame Material.mat -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/Frame Material.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/Frame Material.mat.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/FrameLowerLeft.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/FrameLowerLeft.obj -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/FrameLowerLeft.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/FrameLowerLeft.obj.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/FrameLowerRight.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/FrameLowerRight.obj -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/FrameLowerRight.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/FrameLowerRight.obj.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/FrameUpperLeft.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/FrameUpperLeft.obj -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/FrameUpperLeft.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/FrameUpperLeft.obj.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/FrameUpperRight.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/FrameUpperRight.obj -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/FrameUpperRight.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/FrameUpperRight.obj.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Prefabs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Prefabs/AugmentedImageVisualizer.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Prefabs/AugmentedImageVisualizer.prefab -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Prefabs/AugmentedImageVisualizer.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Prefabs/AugmentedImageVisualizer.prefab.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Scenes.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Scenes/AugmentedImage.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Scenes/AugmentedImage.unity -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Scenes/AugmentedImage.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Scenes/AugmentedImage.unity.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Scripts.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Scripts/AugmentedImageExampleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Scripts/AugmentedImageExampleController.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Scripts/AugmentedImageExampleController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Scripts/AugmentedImageExampleController.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Scripts/AugmentedImageVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Scripts/AugmentedImageVisualizer.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Scripts/AugmentedImageVisualizer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Scripts/AugmentedImageVisualizer.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Textures.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Textures/fit_to_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Textures/fit_to_scan.png -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Textures/fit_to_scan.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Textures/fit_to_scan.png.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Textures/frame_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Textures/frame_base.png -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Textures/frame_base.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/AugmentedImage/Textures/frame_base.png.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Configurations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Configurations.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Configurations/CloudAnchorsSessionConfig.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Configurations/CloudAnchorsSessionConfig.asset -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Configurations/CloudAnchorsSessionConfig.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Configurations/CloudAnchorsSessionConfig.asset.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/AnchorDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/AnchorDiffuse.png -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/AnchorDiffuse.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/AnchorDiffuse.png.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/AnchorDiffuseMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/AnchorDiffuseMaterial.mat -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/AnchorDiffuseMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/AnchorDiffuseMaterial.mat.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/AnchorMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/AnchorMaterial.mat -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/AnchorMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/AnchorMaterial.mat.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarDiffuse.png -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarDiffuse.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarDiffuse.png.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarDiffuseMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarDiffuseMaterial.mat -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarDiffuseMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarDiffuseMaterial.mat.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarMaterial.mat -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarMaterial.mat.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.mtl -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.mtl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.mtl.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.obj -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.obj.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models/anchor.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models/anchor.mtl -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models/anchor.mtl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models/anchor.mtl.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models/anchor.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models/anchor.obj -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models/anchor.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Models/anchor.obj.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Anchor.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Anchor.prefab -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Anchor.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Anchor.prefab.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Player.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Player.prefab -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Player.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Player.prefab.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Row.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Row.prefab -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Row.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Row.prefab.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Star.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Star.prefab -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Star.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Star.prefab.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scenes.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scenes/CloudAnchors.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scenes/CloudAnchors.unity -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scenes/CloudAnchors.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scenes/CloudAnchors.unity.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/ARCoreWorldOriginHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/ARCoreWorldOriginHelper.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/ARCoreWorldOriginHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/ARCoreWorldOriginHelper.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/ARKitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/ARKitHelper.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/ARKitHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/ARKitHelper.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/AnchorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/AnchorController.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/AnchorController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/AnchorController.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/CloudAnchorsExampleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/CloudAnchorsExampleController.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/CloudAnchorsExampleController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/CloudAnchorsExampleController.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/LocalPlayerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/LocalPlayerController.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/LocalPlayerController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/LocalPlayerController.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/MultiplatformMeshSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/MultiplatformMeshSelector.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/MultiplatformMeshSelector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/MultiplatformMeshSelector.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/NetworkManagerUIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/NetworkManagerUIController.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/NetworkManagerUIController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/NetworkManagerUIController.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/circle.png -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/CloudAnchors/circle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/CloudAnchors/circle.png.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/Andy.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/Andy.obj -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/Andy.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/Andy.obj.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyBlobShadow.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyBlobShadow.obj -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyBlobShadow.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyBlobShadow.obj.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyBlobShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyBlobShadow.png -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyBlobShadow.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyBlobShadow.png.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyDiffuseMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyDiffuseMaterial.mat -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyDiffuseMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyDiffuseMaterial.mat.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyMaterialBlue.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyMaterialBlue.mat -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyMaterialBlue.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyMaterialBlue.mat.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyMaterialGreen.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyMaterialGreen.mat -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyMaterialGreen.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyMaterialGreen.mat.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyShadowMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyShadowMaterial.mat -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyShadowMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyShadowMaterial.mat.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/Andy_DiffuseLitBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/Andy_DiffuseLitBlue.png -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/Andy_DiffuseLitBlue.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/Andy_DiffuseLitBlue.png.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/Andy_DiffuseLitGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/Andy_DiffuseLitGreen.png -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/Andy_DiffuseLitGreen.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Andy/Andy_DiffuseLitGreen.png.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/PlaneGrid.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/PlaneGrid.mat -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/PlaneGrid.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/PlaneGrid.mat.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/PointCloud.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/PointCloud.mat -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/PointCloud.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/PointCloud.mat.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders/MobileDiffuseWithLightEstimation.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders/MobileDiffuseWithLightEstimation.shader -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders/MobileDiffuseWithLightEstimation.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders/MobileDiffuseWithLightEstimation.shader.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders/MobileSpecularWithLightEstimation.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders/MobileSpecularWithLightEstimation.shader -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders/MobileSpecularWithLightEstimation.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders/MobileSpecularWithLightEstimation.shader.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders/PlaneGrid.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders/PlaneGrid.shader -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders/PlaneGrid.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders/PlaneGrid.shader.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders/PointCloud.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders/PointCloud.shader -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders/PointCloud.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Shaders/PointCloud.shader.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/AugmentedImageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/AugmentedImageIcon.png -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/AugmentedImageIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/AugmentedImageIcon.png.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/CloudAnchorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/CloudAnchorIcon.png -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/CloudAnchorIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/CloudAnchorIcon.png.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/ComputerVisionIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/ComputerVisionIcon.png -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/ComputerVisionIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/ComputerVisionIcon.png.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/HelloARIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/HelloARIcon.png -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/HelloARIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/HelloARIcon.png.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/TriGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/TriGrid.png -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/TriGrid.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Materials/Textures/TriGrid.png.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Prefabs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Prefabs/AndyBlue.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Prefabs/AndyBlue.prefab -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Prefabs/AndyBlue.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Prefabs/AndyBlue.prefab.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Prefabs/AndyGreen.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Prefabs/AndyGreen.prefab -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Prefabs/AndyGreen.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Prefabs/AndyGreen.prefab.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Prefabs/AndyGreenDiffuse.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Prefabs/AndyGreenDiffuse.prefab -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Prefabs/AndyGreenDiffuse.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Prefabs/AndyGreenDiffuse.prefab.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Prefabs/DetectedPlaneVisualizer.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Prefabs/DetectedPlaneVisualizer.prefab -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Prefabs/DetectedPlaneVisualizer.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Prefabs/DetectedPlaneVisualizer.prefab.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Roboto-Regular.ttf -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Roboto-Regular.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Roboto-Regular.ttf.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Scripts.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneGenerator.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneGenerator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneGenerator.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneVisualizer.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneVisualizer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneVisualizer.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Scripts/PointcloudVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Scripts/PointcloudVisualizer.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/Common/Scripts/PointcloudVisualizer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/Common/Scripts/PointcloudVisualizer.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Materials.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Materials/EdgeDetectionBackground.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Materials/EdgeDetectionBackground.shader -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Materials/EdgeDetectionBackground.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Materials/EdgeDetectionBackground.shader.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Materials/EdgeDetectionBackgroundMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Materials/EdgeDetectionBackgroundMaterial.mat -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Materials/EdgeDetectionBackgroundMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Materials/EdgeDetectionBackgroundMaterial.mat.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Plugins.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Plugins/libarcore_camera_utility.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Plugins/libarcore_camera_utility.so -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Plugins/libarcore_camera_utility.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Plugins/libarcore_camera_utility.so.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Plugins/src.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Plugins/src.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/README.md -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/README.md.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/arcore_camera_utility.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/arcore_camera_utility.zip -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/arcore_camera_utility.zip.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/arcore_camera_utility.zip.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scenes.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scenes/ComputerVision.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scenes/ComputerVision.unity -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scenes/ComputerVision.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scenes/ComputerVision.unity.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/ComputerVisionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/ComputerVisionController.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/ComputerVisionController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/ComputerVisionController.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/EdgeDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/EdgeDetector.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/EdgeDetector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/EdgeDetector.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/PointClickHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/PointClickHandler.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/PointClickHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/PointClickHandler.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/TextureReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/TextureReader.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/TextureReader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/TextureReader.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/TextureReaderApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/TextureReaderApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/TextureReaderApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/ComputerVision/Scripts/TextureReaderApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/HelloAR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/HelloAR.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/HelloAR/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/HelloAR/Scenes.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/HelloAR/Scenes/HelloAR.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/HelloAR/Scenes/HelloAR.unity -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/HelloAR/Scenes/HelloAR.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/HelloAR/Scenes/HelloAR.unity.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/HelloAR/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/HelloAR/Scripts.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/HelloAR/Scripts/HelloARController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/HelloAR/Scripts/HelloARController.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Examples/HelloAR/Scripts/HelloARController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Examples/HelloAR/Scripts/HelloARController.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Prefabs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Prefabs/ARCore Device.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Prefabs/ARCore Device.prefab -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Prefabs/ARCore Device.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Prefabs/ARCore Device.prefab.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Prefabs/Environmental Light.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Prefabs/Environmental Light.prefab -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/Prefabs/Environmental Light.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/Prefabs/Environmental Light.prefab.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/BuildResources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/BuildResources.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/BuildResources/cloud_anchor_manifest.aartemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/BuildResources/cloud_anchor_manifest.aartemplate -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/BuildResources/cloud_anchor_manifest.aartemplate.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/BuildResources/cloud_anchor_manifest.aartemplate.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_shared.dll -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_shared.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_shared.dll.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents/MacOS.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents/MacOS/arcore_instant_preview_unity_plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents/MacOS/arcore_instant_preview_unity_plugin -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents/MacOS/arcore_instant_preview_unity_plugin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents/MacOS/arcore_instant_preview_unity_plugin.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents/MacOS/libarcore_instant_preview_shared.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents/MacOS/libarcore_instant_preview_shared.dylib -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents/MacOS/libarcore_instant_preview_shared.dylib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents/MacOS/libarcore_instant_preview_shared.dylib.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.dll -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.dll.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreview.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreview.apk -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreview.apk.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreview.apk.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewInput.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewInput.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewInput.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewManager.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewManager.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewTrackedPoseDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewTrackedPoseDriver.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewTrackedPoseDriver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewTrackedPoseDriver.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewWarning.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewWarning.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewWarning.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Materials.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Materials/ARBackground.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Materials/ARBackground.mat -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Materials/ARBackground.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Materials/ARBackground.mat.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Materials/ARBackground.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Materials/ARBackground.shader -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Materials/ARBackground.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Materials/ARBackground.shader.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Plugins.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Plugins/arcore_arkit_integration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Plugins/arcore_arkit_integration.mm -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Plugins/arcore_arkit_integration.mm.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Plugins/arcore_arkit_integration.mm.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Plugins/arcore_client.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Plugins/arcore_client.aar -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Plugins/arcore_client.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Plugins/arcore_client.aar.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Plugins/arcore_unity.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Plugins/arcore_unity.aar -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Plugins/arcore_unity.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Plugins/arcore_unity.aar.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Plugins/google_ar_optional.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Plugins/google_ar_optional.aar -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Plugins/google_ar_optional.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Plugins/google_ar_optional.aar.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Plugins/google_ar_required.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Plugins/google_ar_required.aar -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Plugins/google_ar_required.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Plugins/google_ar_required.aar.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Plugins/unityandroidpermissions.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Plugins/unityandroidpermissions.aar -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Plugins/unityandroidpermissions.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Plugins/unityandroidpermissions.aar.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Plugins/unitygar.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Plugins/unitygar.aar -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Plugins/unitygar.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Plugins/unitygar.aar.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/ARCoreBackgroundRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/ARCoreBackgroundRenderer.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/ARCoreBackgroundRenderer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/ARCoreBackgroundRenderer.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/ARCoreSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/ARCoreSession.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/ARCoreSession.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/ARCoreSession.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/ARCoreSessionConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/ARCoreSessionConfig.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/ARCoreSessionConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/ARCoreSessionConfig.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Anchor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Anchor.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Anchor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Anchor.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsManager.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsManager.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsRequestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsRequestResult.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsRequestResult.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsRequestResult.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/NativeSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/NativeSession.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/NativeSession.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/NativeSession.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiApkInstallStatusExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiApkInstallStatusExtensions.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiApkInstallStatusExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiApkInstallStatusExtensions.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiApkInstallationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiApkInstallationStatus.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiApkInstallationStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiApkInstallationStatus.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiArStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiArStatus.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiArStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiArStatus.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiArStatusExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiArStatusExtensions.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiArStatusExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiArStatusExtensions.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAvailability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAvailability.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAvailability.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAvailability.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAvailabilityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAvailabilityExtensions.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAvailabilityExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAvailabilityExtensions.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraFocusMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraFocusMode.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraFocusMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraFocusMode.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraMetadata.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraMetadata.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraMetadata.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorMode.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorMode.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorState.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorState.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorStateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorStateExtensions.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorStateExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorStateExtensions.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiConstants.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiConstants.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiConstants.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDisplayUvCoords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDisplayUvCoords.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDisplayUvCoords.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDisplayUvCoords.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDisplayUvCoordsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDisplayUvCoordsExtensions.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDisplayUvCoordsExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDisplayUvCoordsExtensions.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiFeaturePointOrientationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiFeaturePointOrientationMode.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiFeaturePointOrientationMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiFeaturePointOrientationMode.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiFeaturePointOrientationModeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiFeaturePointOrientationModeExtensions.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiFeaturePointOrientationModeExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiFeaturePointOrientationModeExtensions.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimateState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimateState.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimateState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimateState.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimateStateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimateStateExtensions.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimateStateExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimateStateExtensions.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimationMode.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimationMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimationMode.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneFindingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneFindingMode.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneFindingMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneFindingMode.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneType.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneType.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneTypeExtensions.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneTypeExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneTypeExtensions.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPoseData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPoseData.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPoseData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPoseData.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoConfig.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoConfig.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoStatus.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoStatus.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoStatusExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoStatusExtensions.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoStatusExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoStatusExtensions.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackableType.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackableType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackableType.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingState.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingState.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingStateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingStateExtensions.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingStateExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingStateExtensions.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingStateXPExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingStateXPExtensions.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingStateXPExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingStateXPExtensions.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiUpdateMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiUpdateMode.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiUpdateMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiUpdateMode.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AnchorApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AnchorApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AnchorApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AnchorApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedImageApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedImageApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedImageApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedImageApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedImageDatabaseApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedImageDatabaseApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedImageDatabaseApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedImageDatabaseApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigListApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigListApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigListApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigListApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraMetadataApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraMetadataApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraMetadataApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraMetadataApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/FrameApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/FrameApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/FrameApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/FrameApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/HitTestApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/HitTestApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/HitTestApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/HitTestApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/ImageApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/ImageApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/ImageApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/ImageApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/LightEstimateApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/LightEstimateApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/LightEstimateApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/LightEstimateApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PlaneApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PlaneApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PlaneApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PlaneApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointCloudApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointCloudApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointCloudApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointCloudApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PoseApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PoseApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PoseApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PoseApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionConfigApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionConfigApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionConfigApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionConfigApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableListApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableListApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableListApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableListApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/ApkAvailabilityStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/ApkAvailabilityStatus.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/ApkAvailabilityStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/ApkAvailabilityStatus.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/ApkInstallationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/ApkInstallationStatus.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/ApkInstallationStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/ApkInstallationStatus.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Async.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Async.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Async/WaitForTaskCompletionYieldInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Async/WaitForTaskCompletionYieldInstruction.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Async/WaitForTaskCompletionYieldInstruction.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Async/WaitForTaskCompletionYieldInstruction.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/AsyncTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/AsyncTask.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/AsyncTask.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/AsyncTask.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/AugmentedImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/AugmentedImage.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/AugmentedImage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/AugmentedImage.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabase.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabase.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabaseEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabaseEntry.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabaseEntry.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabaseEntry.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/CameraConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/CameraConfig.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/CameraConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/CameraConfig.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/CameraFocusMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/CameraFocusMode.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/CameraFocusMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/CameraFocusMode.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/CameraImageBytes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/CameraImageBytes.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/CameraImageBytes.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/CameraImageBytes.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/CameraIntrinsics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/CameraIntrinsics.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/CameraIntrinsics.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/CameraIntrinsics.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/CameraMetadataTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/CameraMetadataTag.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/CameraMetadataTag.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/CameraMetadataTag.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/CameraMetadataValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/CameraMetadataValue.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/CameraMetadataValue.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/CameraMetadataValue.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/CloudAnchorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/CloudAnchorResult.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/CloudAnchorResult.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/CloudAnchorResult.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/CloudServiceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/CloudServiceResponse.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/CloudServiceResponse.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/CloudServiceResponse.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Deprecated.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Deprecated.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPlane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPlane.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPlane.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPlane.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPoint.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPoint.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPoint.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPointOrientationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPointOrientationMode.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPointOrientationMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPointOrientationMode.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/DetectedPlane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/DetectedPlane.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/DetectedPlane.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/DetectedPlane.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/DetectedPlaneFindingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/DetectedPlaneFindingMode.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/DetectedPlaneFindingMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/DetectedPlaneFindingMode.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/DetectedPlaneType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/DetectedPlaneType.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/DetectedPlaneType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/DetectedPlaneType.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/DisplayUvCoords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/DisplayUvCoords.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/DisplayUvCoords.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/DisplayUvCoords.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreIOSSupportHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreIOSSupportHelper.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreIOSSupportHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreIOSSupportHelper.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreIOSSupportPreprocessBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreIOSSupportPreprocessBuild.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreIOSSupportPreprocessBuild.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreIOSSupportPreprocessBuild.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreProjectSettingsWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreProjectSettingsWindow.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreProjectSettingsWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreProjectSettingsWindow.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreSupportedPreprocessBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreSupportedPreprocessBuild.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreSupportedPreprocessBuild.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreSupportedPreprocessBuild.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/AssetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/AssetHelper.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/AssetHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/AssetHelper.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabaseContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabaseContextMenu.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabaseContextMenu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabaseContextMenu.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabaseInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabaseInspector.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabaseInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabaseInspector.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabasePreprocessBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabasePreprocessBuild.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabasePreprocessBuild.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabasePreprocessBuild.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/BackgroundJobExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/BackgroundJobExecutor.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/BackgroundJobExecutor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/BackgroundJobExecutor.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/CloudAnchorPreprocessBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/CloudAnchorPreprocessBuild.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/CloudAnchorPreprocessBuild.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/CloudAnchorPreprocessBuild.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ExampleBuildHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ExampleBuildHelper.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ExampleBuildHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ExampleBuildHelper.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ExamplePreprocessBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ExamplePreprocessBuild.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ExamplePreprocessBuild.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/ExamplePreprocessBuild.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/PreprocessBuildBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/PreprocessBuildBase.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/PreprocessBuildBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/PreprocessBuildBase.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/RequiredOptionalPreprocessBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/RequiredOptionalPreprocessBuild.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/RequiredOptionalPreprocessBuild.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Editor/RequiredOptionalPreprocessBuild.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/EnvironmentalLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/EnvironmentalLight.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/EnvironmentalLight.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/EnvironmentalLight.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/ExperimentSupport.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/ExperimentSupport.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentBase.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentBase.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentManager.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentManager.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/FeaturePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/FeaturePoint.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/FeaturePoint.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/FeaturePoint.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/FeaturePointOrientationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/FeaturePointOrientationMode.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/FeaturePointOrientationMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/FeaturePointOrientationMode.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Frame.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Frame.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Frame.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/LightEstimate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/LightEstimate.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/LightEstimate.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/LightEstimate.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/LightEstimateState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/LightEstimateState.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/LightEstimateState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/LightEstimateState.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Managers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Managers.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/ARCoreAndroidLifecycleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/ARCoreAndroidLifecycleManager.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/ARCoreAndroidLifecycleManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/ARCoreAndroidLifecycleManager.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/ARCoreIOSLifecycleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/ARCoreIOSLifecycleManager.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/ARCoreIOSLifecycleManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/ARCoreIOSLifecycleManager.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/ARPrestoCallbackManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/ARPrestoCallbackManager.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/ARPrestoCallbackManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/ARPrestoCallbackManager.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/CloudServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/CloudServiceManager.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/CloudServiceManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/CloudServiceManager.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/ILifecycleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/ILifecycleManager.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/ILifecycleManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/ILifecycleManager.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/LifecycleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/LifecycleManager.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/LifecycleManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/LifecycleManager.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/TrackableManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/TrackableManager.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/TrackableManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Managers/TrackableManager.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/PointCloudPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/PointCloudPoint.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/PointCloudPoint.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/PointCloudPoint.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Session.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Session.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Session.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/SessionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/SessionStatus.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/SessionStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/SessionStatus.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/SessionStatusExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/SessionStatusExtensions.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/SessionStatusExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/SessionStatusExtensions.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Trackable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Trackable.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Trackable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Trackable.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/TrackableHit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/TrackableHit.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/TrackableHit.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/TrackableHit.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/TrackableHitFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/TrackableHitFlags.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/TrackableHitFlags.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/TrackableHitFlags.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/TrackableQueryFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/TrackableQueryFilter.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/TrackableQueryFilter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/TrackableQueryFilter.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/TrackingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/TrackingState.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/TrackingState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/TrackingState.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ARCoreProjectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ARCoreProjectSettings.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ARCoreProjectSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ARCoreProjectSettings.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ARDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ARDebug.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ARDebug.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ARDebug.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ConversionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ConversionHelper.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ConversionHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ConversionHelper.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/DllImportNoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/DllImportNoop.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/DllImportNoop.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/DllImportNoop.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/IntPtrEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/IntPtrEqualityComparer.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/IntPtrEqualityComparer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/IntPtrEqualityComparer.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/MarshalingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/MarshalingHelper.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/MarshalingHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/MarshalingHelper.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ShellHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ShellHelper.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ShellHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ShellHelper.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/SuppressMemoryAllocationErrorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/SuppressMemoryAllocationErrorAttribute.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/SuppressMemoryAllocationErrorAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/SuppressMemoryAllocationErrorAttribute.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ThrottledLogMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ThrottledLogMessage.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ThrottledLogMessage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/Utility/ThrottledLogMessage.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/XPAnchor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/XPAnchor.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/XPAnchor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/XPAnchor.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/XPSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/XPSession.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/XPSession.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/XPSession.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/XPSessionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/XPSessionStatus.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/XPSessionStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/XPSessionStatus.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/XPTrackingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/XPTrackingState.cs -------------------------------------------------------------------------------- /ARNav/Assets/GoogleARCore/SDK/Scripts/XPTrackingState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/GoogleARCore/SDK/Scripts/XPTrackingState.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/Lowpoly Toon Cat Lite.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Lowpoly Toon Cat Lite.meta -------------------------------------------------------------------------------- /ARNav/Assets/Lowpoly Toon Cat Lite/Demo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Lowpoly Toon Cat Lite/Demo.meta -------------------------------------------------------------------------------- /ARNav/Assets/Lowpoly Toon Cat Lite/Demo/Cat_Lite_Demo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Lowpoly Toon Cat Lite/Demo/Cat_Lite_Demo.cs -------------------------------------------------------------------------------- /ARNav/Assets/Lowpoly Toon Cat Lite/Demo/Cat_Lite_Demo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Lowpoly Toon Cat Lite/Demo/Cat_Lite_Demo.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/Lowpoly Toon Cat Lite/Demo/Cat_Lite_Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Lowpoly Toon Cat Lite/Demo/Cat_Lite_Demo.unity -------------------------------------------------------------------------------- /ARNav/Assets/Lowpoly Toon Cat Lite/Demo/Cat_Lite_Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Lowpoly Toon Cat Lite/Demo/Cat_Lite_Demo.unity.meta -------------------------------------------------------------------------------- /ARNav/Assets/Lowpoly Toon Cat Lite/Demo/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Lowpoly Toon Cat Lite/Demo/UI.meta -------------------------------------------------------------------------------- /ARNav/Assets/Lowpoly Toon Cat Lite/Demo/UI/DENNE MARKER.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Lowpoly Toon Cat Lite/Demo/UI/DENNE MARKER.TTF -------------------------------------------------------------------------------- /ARNav/Assets/Lowpoly Toon Cat Lite/Demo/UI/DENNE MARKER.TTF.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Lowpoly Toon Cat Lite/Demo/UI/DENNE MARKER.TTF.meta -------------------------------------------------------------------------------- /ARNav/Assets/Lowpoly Toon Cat Lite/Model.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Lowpoly Toon Cat Lite/Model.meta -------------------------------------------------------------------------------- /ARNav/Assets/Lowpoly Toon Cat Lite/Model/Animator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Lowpoly Toon Cat Lite/Model/Animator.meta -------------------------------------------------------------------------------- /ARNav/Assets/Lowpoly Toon Cat Lite/Model/Animator/Cat_Lite_AC.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Lowpoly Toon Cat Lite/Model/Animator/Cat_Lite_AC.controller -------------------------------------------------------------------------------- /ARNav/Assets/Lowpoly Toon Cat Lite/Model/Animator/Cat_Lite_AC.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Lowpoly Toon Cat Lite/Model/Animator/Cat_Lite_AC.controller.meta -------------------------------------------------------------------------------- /ARNav/Assets/Lowpoly Toon Cat Lite/Model/Cat Lite.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Lowpoly Toon Cat Lite/Model/Cat Lite.fbx -------------------------------------------------------------------------------- /ARNav/Assets/Lowpoly Toon Cat Lite/Model/Cat Lite.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Lowpoly Toon Cat Lite/Model/Cat Lite.fbx.meta -------------------------------------------------------------------------------- /ARNav/Assets/Lowpoly Toon Cat Lite/Model/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Lowpoly Toon Cat Lite/Model/Materials.meta -------------------------------------------------------------------------------- /ARNav/Assets/Lowpoly Toon Cat Lite/Model/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Lowpoly Toon Cat Lite/Model/Textures.meta -------------------------------------------------------------------------------- /ARNav/Assets/MainScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/MainScene.unity -------------------------------------------------------------------------------- /ARNav/Assets/MainScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/MainScene.unity.meta -------------------------------------------------------------------------------- /ARNav/Assets/MapApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/MapApi.cs -------------------------------------------------------------------------------- /ARNav/Assets/MapApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/MapApi.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/Pedometer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Pedometer.meta -------------------------------------------------------------------------------- /ARNav/Assets/PlayServicesResolver.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/PlayServicesResolver.meta -------------------------------------------------------------------------------- /ARNav/Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Prefabs.meta -------------------------------------------------------------------------------- /ARNav/Assets/Route.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Route.cs -------------------------------------------------------------------------------- /ARNav/Assets/Route.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Route.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/SceneController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/SceneController.cs -------------------------------------------------------------------------------- /ARNav/Assets/SceneController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/SceneController.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Scenes.meta -------------------------------------------------------------------------------- /ARNav/Assets/Tiger 1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Tiger 1.meta -------------------------------------------------------------------------------- /ARNav/Assets/Tiger.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Tiger.meta -------------------------------------------------------------------------------- /ARNav/Assets/Unity.Newtonsoft.Json.7.0.0.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Unity.Newtonsoft.Json.7.0.0.0.meta -------------------------------------------------------------------------------- /ARNav/Assets/Walk.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Walk.prefab -------------------------------------------------------------------------------- /ARNav/Assets/Walk.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/Walk.prefab.meta -------------------------------------------------------------------------------- /ARNav/Assets/arrow.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/arrow.obj -------------------------------------------------------------------------------- /ARNav/Assets/arrow.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/arrow.obj.meta -------------------------------------------------------------------------------- /ARNav/Assets/textManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/textManager.cs -------------------------------------------------------------------------------- /ARNav/Assets/textManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/textManager.cs.meta -------------------------------------------------------------------------------- /ARNav/Assets/tiger_final.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/tiger_final.unity -------------------------------------------------------------------------------- /ARNav/Assets/tiger_final.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/tiger_final.unity.meta -------------------------------------------------------------------------------- /ARNav/Assets/tumblr_mfakkc4rni1r7eiedo1_500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/tumblr_mfakkc4rni1r7eiedo1_500.jpg -------------------------------------------------------------------------------- /ARNav/Assets/tumblr_mfakkc4rni1r7eiedo1_500.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Assets/tumblr_mfakkc4rni1r7eiedo1_500.jpg.meta -------------------------------------------------------------------------------- /ARNav/CatSimulator - Copy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/CatSimulator - Copy.sln -------------------------------------------------------------------------------- /ARNav/CatSimulator.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/CatSimulator.Editor.csproj -------------------------------------------------------------------------------- /ARNav/CatSimulator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/CatSimulator.csproj -------------------------------------------------------------------------------- /ARNav/CatSimulator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/CatSimulator.sln -------------------------------------------------------------------------------- /ARNav/Unity.Analytics.DataPrivacy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Unity.Analytics.DataPrivacy.csproj -------------------------------------------------------------------------------- /ARNav/Unity.CollabProxy.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Unity.CollabProxy.Editor.csproj -------------------------------------------------------------------------------- /ARNav/Unity.PackageManagerUI.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Unity.PackageManagerUI.Editor.csproj -------------------------------------------------------------------------------- /ARNav/Unity.TextMeshPro.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Unity.TextMeshPro.Editor.csproj -------------------------------------------------------------------------------- /ARNav/Unity.TextMeshPro.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/Unity.TextMeshPro.csproj -------------------------------------------------------------------------------- /ARNav/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/ARNav/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/README.md -------------------------------------------------------------------------------- /gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Samridhi16/ar-navigation-app/HEAD/gitattributes --------------------------------------------------------------------------------