├── .github └── ISSUE_TEMPLATE │ ├── bug-report.md │ └── config.yml ├── Assets ├── ExternalDependencyManager.meta ├── ExternalDependencyManager │ ├── Editor.meta │ └── Editor │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── Google.IOSResolver_v1.2.162.dll │ │ ├── Google.IOSResolver_v1.2.162.dll.mdb │ │ ├── Google.IOSResolver_v1.2.162.dll.mdb.meta │ │ ├── Google.IOSResolver_v1.2.162.dll.meta │ │ ├── Google.JarResolver_v1.2.162.dll │ │ ├── Google.JarResolver_v1.2.162.dll.mdb │ │ ├── Google.JarResolver_v1.2.162.dll.mdb.meta │ │ ├── Google.JarResolver_v1.2.162.dll.meta │ │ ├── Google.PackageManagerResolver_v1.2.162.dll │ │ ├── Google.PackageManagerResolver_v1.2.162.dll.mdb │ │ ├── Google.PackageManagerResolver_v1.2.162.dll.mdb.meta │ │ ├── Google.PackageManagerResolver_v1.2.162.dll.meta │ │ ├── Google.VersionHandler.dll │ │ ├── Google.VersionHandler.dll.mdb │ │ ├── Google.VersionHandler.dll.mdb.meta │ │ ├── Google.VersionHandler.dll.meta │ │ ├── Google.VersionHandlerImpl_v1.2.162.dll │ │ ├── Google.VersionHandlerImpl_v1.2.162.dll.mdb │ │ ├── Google.VersionHandlerImpl_v1.2.162.dll.mdb.meta │ │ ├── Google.VersionHandlerImpl_v1.2.162.dll.meta │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── external-dependency-manager_version-1.2.162_manifest.txt │ │ └── external-dependency-manager_version-1.2.162_manifest.txt.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 │ │ ├── DefaultCameraConfigFilter.asset │ │ ├── DefaultCameraConfigFilter.asset.meta │ │ ├── DefaultSessionConfig.asset │ │ └── DefaultSessionConfig.asset.meta │ ├── Editor.meta │ ├── Editor │ │ ├── ARCoreAndroidKeylessDependencies.template │ │ ├── ARCoreAndroidKeylessDependencies.template.meta │ │ ├── ARCoreiOSDependencies.template │ │ └── ARCoreiOSDependencies.template.meta │ ├── Examples.meta │ ├── Examples │ │ ├── AugmentedFaces.meta │ │ ├── AugmentedFaces │ │ │ ├── Configurations.meta │ │ │ ├── Configurations │ │ │ │ ├── AugmentedFaceSessionConfiguration.asset │ │ │ │ └── AugmentedFaceSessionConfiguration.asset.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── FaceOccluderMaterial.mat │ │ │ │ ├── FaceOccluderMaterial.mat.meta │ │ │ │ ├── FoxEarMaterial.mat │ │ │ │ ├── FoxEarMaterial.mat.meta │ │ │ │ ├── FoxFaceMaterial.mat │ │ │ │ ├── FoxFaceMaterial.mat.meta │ │ │ │ ├── FoxNoiseMaterial.mat │ │ │ │ ├── FoxNoiseMaterial.mat.meta │ │ │ │ ├── Shaders.meta │ │ │ │ ├── Shaders │ │ │ │ │ ├── AugmentedFaceOccluder.shader │ │ │ │ │ └── AugmentedFaceOccluder.shader.meta │ │ │ │ ├── Textures.meta │ │ │ │ └── Textures │ │ │ │ │ ├── ear_fur.png │ │ │ │ │ ├── ear_fur.png.meta │ │ │ │ │ ├── eyelashes_alpha.png │ │ │ │ │ ├── eyelashes_alpha.png.meta │ │ │ │ │ ├── fox_face_mesh_texture.png │ │ │ │ │ ├── fox_face_mesh_texture.png.meta │ │ │ │ │ ├── highlighter_screen.png │ │ │ │ │ ├── highlighter_screen.png.meta │ │ │ │ │ ├── nose_fur.png │ │ │ │ │ ├── nose_fur.png.meta │ │ │ │ │ ├── shadows_multiply.png │ │ │ │ │ └── shadows_multiply.png.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ │ ├── canonical_face_mesh.fbx │ │ │ │ ├── canonical_face_mesh.fbx.meta │ │ │ │ ├── canonical_face_texture.psd │ │ │ │ ├── canonical_face_texture.psd.meta │ │ │ │ ├── fox_sample.fbx │ │ │ │ └── fox_sample.fbx.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── AugmentedFaces.unity │ │ │ │ └── AugmentedFaces.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── ARCoreAugmentedFaceMeshFilter.cs │ │ │ │ ├── ARCoreAugmentedFaceMeshFilter.cs.meta │ │ │ │ ├── ARCoreAugmentedFaceRig.cs │ │ │ │ ├── ARCoreAugmentedFaceRig.cs.meta │ │ │ │ ├── AugmentedFacesExampleController.cs │ │ │ │ └── AugmentedFacesExampleController.cs.meta │ │ ├── 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 │ │ │ ├── Images.meta │ │ │ ├── Images │ │ │ │ ├── introduction.png │ │ │ │ └── introduction.png.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── CloudAnchorsNetworkManager.cs │ │ │ │ ├── CloudAnchorsNetworkManager.cs.meta │ │ │ │ ├── LocalPlayerController.cs │ │ │ │ ├── LocalPlayerController.cs.meta │ │ │ │ ├── NetworkManagerUIController.cs │ │ │ │ ├── NetworkManagerUIController.cs.meta │ │ │ │ ├── StarController.cs │ │ │ │ └── StarController.cs.meta │ │ │ ├── circle.png │ │ │ └── circle.png.meta │ │ ├── Common.meta │ │ ├── Common │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── ARCore_pawn.fbx │ │ │ │ ├── ARCore_pawn.fbx.meta │ │ │ │ ├── CameraDebugMaterial.mat │ │ │ │ ├── CameraDebugMaterial.mat.meta │ │ │ │ ├── PawnBlue.mat │ │ │ │ ├── PawnBlue.mat.meta │ │ │ │ ├── PawnGreen.mat │ │ │ │ ├── PawnGreen.mat.meta │ │ │ │ ├── PawnTranslucent.mat │ │ │ │ ├── PawnTranslucent.mat.meta │ │ │ │ ├── PawnYellow.mat │ │ │ │ ├── PawnYellow.mat.meta │ │ │ │ ├── PlaneGrid.mat │ │ │ │ ├── PlaneGrid.mat.meta │ │ │ │ ├── PointCloud.mat │ │ │ │ ├── PointCloud.mat.meta │ │ │ │ ├── Shaders.meta │ │ │ │ ├── Shaders │ │ │ │ │ ├── CameraColorRampShader.shader │ │ │ │ │ ├── CameraColorRampShader.shader.meta │ │ │ │ │ ├── MobileDiffuseWithLightEstimation.shader │ │ │ │ │ ├── MobileDiffuseWithLightEstimation.shader.meta │ │ │ │ │ ├── MobileSpecularWithLightEstimation.shader │ │ │ │ │ ├── MobileSpecularWithLightEstimation.shader.meta │ │ │ │ │ ├── OcclusionImageEffect.shader │ │ │ │ │ ├── OcclusionImageEffect.shader.meta │ │ │ │ │ ├── PlaneGrid.shader │ │ │ │ │ ├── PlaneGrid.shader.meta │ │ │ │ │ ├── PointCloud.shader │ │ │ │ │ ├── PointCloud.shader.meta │ │ │ │ │ ├── TransparentShadow.shader │ │ │ │ │ └── TransparentShadow.shader.meta │ │ │ │ ├── ShadowPlane.mat │ │ │ │ ├── ShadowPlane.mat.meta │ │ │ │ ├── Textures.meta │ │ │ │ ├── Textures │ │ │ │ │ ├── AugmentedFaceIcon.png │ │ │ │ │ ├── AugmentedFaceIcon.png.meta │ │ │ │ │ ├── AugmentedImageIcon.png │ │ │ │ │ ├── AugmentedImageIcon.png.meta │ │ │ │ │ ├── CloudAnchorIcon.png │ │ │ │ │ ├── CloudAnchorIcon.png.meta │ │ │ │ │ ├── ComputerVisionIcon.png │ │ │ │ │ ├── ComputerVisionIcon.png.meta │ │ │ │ │ ├── HelloARIcon.png │ │ │ │ │ ├── HelloARIcon.png.meta │ │ │ │ │ ├── ObjectManipulationIcon.png │ │ │ │ │ ├── ObjectManipulationIcon.png.meta │ │ │ │ │ ├── TriGrid.png │ │ │ │ │ └── TriGrid.png.meta │ │ │ │ ├── cloud_anchor.fbx │ │ │ │ └── cloud_anchor.fbx.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── ARCoreInstantPlacementPawn.prefab │ │ │ │ ├── ARCoreInstantPlacementPawn.prefab.meta │ │ │ │ ├── ARCorePawn.prefab │ │ │ │ ├── ARCorePawn.prefab.meta │ │ │ │ ├── DepthPreview.prefab │ │ │ │ ├── DepthPreview.prefab.meta │ │ │ │ ├── DetectedPlaneVisualizer.prefab │ │ │ │ ├── DetectedPlaneVisualizer.prefab.meta │ │ │ │ ├── PlaneDiscovery.prefab │ │ │ │ ├── PlaneDiscovery.prefab.meta │ │ │ │ ├── PointCloud.prefab │ │ │ │ └── PointCloud.prefab.meta │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Regular.ttf.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── DepthEffect.cs │ │ │ │ ├── DepthEffect.cs.meta │ │ │ │ ├── DepthMenu.cs │ │ │ │ ├── DepthMenu.cs.meta │ │ │ │ ├── DepthTexture.cs │ │ │ │ ├── DepthTexture.cs.meta │ │ │ │ ├── DetectedPlaneGenerator.cs │ │ │ │ ├── DetectedPlaneGenerator.cs.meta │ │ │ │ ├── DetectedPlaneVisualizer.cs │ │ │ │ ├── DetectedPlaneVisualizer.cs.meta │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ │ ├── PointcloudVisualizerEditor.cs │ │ │ │ │ └── PointcloudVisualizerEditor.cs.meta │ │ │ │ ├── InstantPlacementEffect.cs │ │ │ │ ├── InstantPlacementEffect.cs.meta │ │ │ │ ├── InstantPlacementMenu.cs │ │ │ │ ├── InstantPlacementMenu.cs.meta │ │ │ │ ├── PlaneDiscoveryGuide.cs │ │ │ │ ├── PlaneDiscoveryGuide.cs.meta │ │ │ │ ├── PointcloudVisualizer.cs │ │ │ │ ├── PointcloudVisualizer.cs.meta │ │ │ │ ├── RawImageVideoPlayer.cs │ │ │ │ ├── RawImageVideoPlayer.cs.meta │ │ │ │ ├── SafeAreaScaler.cs │ │ │ │ ├── SafeAreaScaler.cs.meta │ │ │ │ ├── ShadowQuadHelper.cs │ │ │ │ └── ShadowQuadHelper.cs.meta │ │ │ ├── Textures.meta │ │ │ ├── Textures │ │ │ │ ├── ColorRamp.png │ │ │ │ ├── ColorRamp.png.meta │ │ │ │ ├── Surface.png │ │ │ │ ├── Surface.png.meta │ │ │ │ ├── VideoRenderTexture.renderTexture │ │ │ │ ├── VideoRenderTexture.renderTexture.meta │ │ │ │ ├── background.png │ │ │ │ ├── background.png.meta │ │ │ │ ├── ic_settings.png │ │ │ │ ├── ic_settings.png.meta │ │ │ │ ├── translucent.png │ │ │ │ ├── translucent.png.meta │ │ │ │ ├── transparent.png │ │ │ │ └── transparent.png.meta │ │ │ ├── Videos.meta │ │ │ └── Videos │ │ │ │ ├── hand_oem.webm │ │ │ │ └── hand_oem.webm.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 │ │ │ ├── HelloARSessionConfig.asset │ │ │ ├── HelloARSessionConfig.asset.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── HelloAR.unity │ │ │ │ └── HelloAR.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── HelloARController.cs │ │ │ │ ├── HelloARController.cs.meta │ │ │ │ ├── SettingsMenu.cs │ │ │ │ └── SettingsMenu.cs.meta │ │ ├── ObjectManipulation.meta │ │ ├── ObjectManipulation │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── DottedLineMaterial.mat │ │ │ │ ├── DottedLineMaterial.mat.meta │ │ │ │ ├── dottedline.png │ │ │ │ ├── dottedline.png.meta │ │ │ │ ├── footprint.mtl │ │ │ │ ├── footprint.mtl.meta │ │ │ │ ├── footprint.obj │ │ │ │ └── footprint.obj.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── ElevationVisualization.prefab │ │ │ │ ├── ElevationVisualization.prefab.meta │ │ │ │ ├── ManipulationSystem.prefab │ │ │ │ ├── ManipulationSystem.prefab.meta │ │ │ │ ├── Manipulator.prefab │ │ │ │ ├── Manipulator.prefab.meta │ │ │ │ ├── SelectionVisualization.prefab │ │ │ │ └── SelectionVisualization.prefab.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── ObjectManipulation.unity │ │ │ │ └── ObjectManipulation.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── Gestures.meta │ │ │ │ ├── Gestures │ │ │ │ ├── DragGesture.cs │ │ │ │ ├── DragGesture.cs.meta │ │ │ │ ├── DragGestureRecognizer.cs │ │ │ │ ├── DragGestureRecognizer.cs.meta │ │ │ │ ├── Gesture.cs │ │ │ │ ├── Gesture.cs.meta │ │ │ │ ├── GestureRecognizer.cs │ │ │ │ ├── GestureRecognizer.cs.meta │ │ │ │ ├── GestureTouchesUtility.cs │ │ │ │ ├── GestureTouchesUtility.cs.meta │ │ │ │ ├── PinchGesture.cs │ │ │ │ ├── PinchGesture.cs.meta │ │ │ │ ├── PinchGestureRecognizer.cs │ │ │ │ ├── PinchGestureRecognizer.cs.meta │ │ │ │ ├── TapGesture.cs │ │ │ │ ├── TapGesture.cs.meta │ │ │ │ ├── TapGestureRecognizer.cs │ │ │ │ ├── TapGestureRecognizer.cs.meta │ │ │ │ ├── TransformationUtility.cs │ │ │ │ ├── TransformationUtility.cs.meta │ │ │ │ ├── TwistGesture.cs │ │ │ │ ├── TwistGesture.cs.meta │ │ │ │ ├── TwistGestureRecognizer.cs │ │ │ │ ├── TwistGestureRecognizer.cs.meta │ │ │ │ ├── TwoFingerDragGesture.cs │ │ │ │ ├── TwoFingerDragGesture.cs.meta │ │ │ │ ├── TwoFingerDragGestureRecognizer.cs │ │ │ │ └── TwoFingerDragGestureRecognizer.cs.meta │ │ │ │ ├── ManipulationSystem.cs │ │ │ │ ├── ManipulationSystem.cs.meta │ │ │ │ ├── Manipulators.meta │ │ │ │ ├── Manipulators │ │ │ │ ├── ElevationManipulator.cs │ │ │ │ ├── ElevationManipulator.cs.meta │ │ │ │ ├── Manipulator.cs │ │ │ │ ├── Manipulator.cs.meta │ │ │ │ ├── RotationManipulator.cs │ │ │ │ ├── RotationManipulator.cs.meta │ │ │ │ ├── ScaleManipulator.cs │ │ │ │ ├── ScaleManipulator.cs.meta │ │ │ │ ├── SelectionManipulator.cs │ │ │ │ ├── SelectionManipulator.cs.meta │ │ │ │ ├── TranslationManipulator.cs │ │ │ │ └── TranslationManipulator.cs.meta │ │ │ │ ├── ObjectManipulationController.cs │ │ │ │ ├── ObjectManipulationController.cs.meta │ │ │ │ ├── PawnManipulator.cs │ │ │ │ └── PawnManipulator.cs.meta │ │ ├── PersistentCloudAnchors.meta │ │ └── PersistentCloudAnchors │ │ │ ├── Configurations.meta │ │ │ ├── Configurations │ │ │ ├── PersistentCloudAnchorsSessionConfig.asset │ │ │ └── PersistentCloudAnchorsSessionConfig.asset.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ ├── CircleLineMaterial.mat │ │ │ ├── CircleLineMaterial.mat.meta │ │ │ ├── MapQualityBar.fbx │ │ │ ├── MapQualityBar.fbx.meta │ │ │ ├── MapQualityBarAnimator.controller │ │ │ ├── MapQualityBarAnimator.controller.meta │ │ │ ├── MapQualityBarMaterial.mat │ │ │ └── MapQualityBarMaterial.mat.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ ├── CloudAnchorPrefab.prefab │ │ │ ├── CloudAnchorPrefab.prefab.meta │ │ │ ├── DoublLabelsToggle.prefab │ │ │ ├── DoublLabelsToggle.prefab.meta │ │ │ ├── MapQualityBar.prefab │ │ │ ├── MapQualityBar.prefab.meta │ │ │ ├── MapQualityIndicator.prefab │ │ │ ├── MapQualityIndicator.prefab.meta │ │ │ ├── PreviouslyHostedText.prefab │ │ │ └── PreviouslyHostedText.prefab.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ ├── PersistentCloudAnchors.unity │ │ │ └── PersistentCloudAnchors.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ ├── ARViewManager.cs │ │ │ ├── ARViewManager.cs.meta │ │ │ ├── CircleRenderer.cs │ │ │ ├── CircleRenderer.cs.meta │ │ │ ├── CloudAnchorHistory.cs │ │ │ ├── CloudAnchorHistory.cs.meta │ │ │ ├── DoubleLabelsItem.cs │ │ │ ├── DoubleLabelsItem.cs.meta │ │ │ ├── MapQualityBar.cs │ │ │ ├── MapQualityBar.cs.meta │ │ │ ├── MapQualityIndicator.cs │ │ │ ├── MapQualityIndicator.cs.meta │ │ │ ├── MultiselectionDropdown.cs │ │ │ ├── MultiselectionDropdown.cs.meta │ │ │ ├── PersistentCloudAnchorsController.cs │ │ │ ├── PersistentCloudAnchorsController.cs.meta │ │ │ ├── ResolveMenuManager.cs │ │ │ └── ResolveMenuManager.cs.meta │ ├── LICENSE │ ├── LICENSE.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_unity_plugin.bundle.meta │ │ │ │ ├── arcore_instant_preview_unity_plugin.bundle │ │ │ │ ├── Contents.meta │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Info.plist.meta │ │ │ │ │ ├── MacOS.meta │ │ │ │ │ ├── MacOS │ │ │ │ │ ├── arcore_instant_preview_unity_plugin │ │ │ │ │ └── arcore_instant_preview_unity_plugin.meta │ │ │ │ │ ├── _CodeSignature.meta │ │ │ │ │ └── _CodeSignature │ │ │ │ │ ├── CodeResources │ │ │ │ │ └── CodeResources.meta │ │ │ │ ├── arcore_instant_preview_unity_plugin.dll │ │ │ │ └── arcore_instant_preview_unity_plugin.dll.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── InstantPreviewBugReport.cs │ │ │ └── InstantPreviewBugReport.cs.meta │ │ │ ├── InstantPreview.apk │ │ │ ├── InstantPreview.apk.meta │ │ │ ├── InstantPreviewInput.cs │ │ │ ├── InstantPreviewInput.cs.meta │ │ │ ├── InstantPreviewManager.cs │ │ │ ├── InstantPreviewManager.cs.meta │ │ │ ├── InstantPreviewTrackedPoseDriver.cs │ │ │ └── InstantPreviewTrackedPoseDriver.cs.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ ├── ARBackground.mat │ │ ├── ARBackground.mat.meta │ │ ├── ARBackground.shader │ │ ├── ARBackground.shader.meta │ │ ├── ARCoreDepth.cginc │ │ └── ARCoreDepth.cginc.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ ├── Google.Protobuf.dll │ │ ├── Google.Protobuf.dll.meta │ │ ├── arcore_arkit_integration.mm │ │ ├── arcore_arkit_integration.mm.meta │ │ ├── arcore_client.aar │ │ ├── arcore_client.aar.meta │ │ ├── arcore_rendering_utils.aar │ │ ├── arcore_rendering_utils.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 │ │ ├── keyless_authentication.aar │ │ ├── keyless_authentication.aar.meta │ │ ├── unityandroidpermissions.aar │ │ ├── unityandroidpermissions.aar.meta │ │ ├── unitygar.aar │ │ └── unitygar.aar.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ ├── ViewInARIcon.png │ │ └── ViewInARIcon.png.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ ├── ARCoreBackgroundRenderer.cs │ │ ├── ARCoreBackgroundRenderer.cs.meta │ │ ├── ARCoreCameraConfigFilter.cs │ │ ├── ARCoreCameraConfigFilter.cs.meta │ │ ├── ARCoreRecordingConfig.cs │ │ ├── ARCoreRecordingConfig.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 │ │ │ ├── ApiApkInstallationStatus.cs │ │ │ ├── ApiApkInstallationStatus.cs.meta │ │ │ ├── ApiArStatus.cs │ │ │ ├── ApiArStatus.cs.meta │ │ │ ├── ApiAugmentedFaceMode.cs │ │ │ ├── ApiAugmentedFaceMode.cs.meta │ │ │ ├── ApiAugmentedFaceRegionType.cs │ │ │ ├── ApiAugmentedFaceRegionType.cs.meta │ │ │ ├── ApiAvailability.cs │ │ │ ├── ApiAvailability.cs.meta │ │ │ ├── ApiCameraConfigTargetFps.cs │ │ │ ├── ApiCameraConfigTargetFps.cs.meta │ │ │ ├── ApiCameraFocusMode.cs │ │ │ ├── ApiCameraFocusMode.cs.meta │ │ │ ├── ApiCameraMetadata.cs │ │ │ ├── ApiCameraMetadata.cs.meta │ │ │ ├── ApiCloudAnchorMode.cs │ │ │ ├── ApiCloudAnchorMode.cs.meta │ │ │ ├── ApiCloudAnchorState.cs │ │ │ ├── ApiCloudAnchorState.cs.meta │ │ │ ├── ApiConstants.cs │ │ │ ├── ApiConstants.cs.meta │ │ │ ├── ApiCoordinates2dType.cs │ │ │ ├── ApiCoordinates2dType.cs.meta │ │ │ ├── ApiDepthMode.cs │ │ │ ├── ApiDepthMode.cs.meta │ │ │ ├── ApiDisplayUvCoords.cs │ │ │ ├── ApiDisplayUvCoords.cs.meta │ │ │ ├── ApiFeaturePointOrientationMode.cs │ │ │ ├── ApiFeaturePointOrientationMode.cs.meta │ │ │ ├── ApiLightEstimateState.cs │ │ │ ├── ApiLightEstimateState.cs.meta │ │ │ ├── ApiLightEstimationMode.cs │ │ │ ├── ApiLightEstimationMode.cs.meta │ │ │ ├── ApiPlaneFindingMode.cs │ │ │ ├── ApiPlaneFindingMode.cs.meta │ │ │ ├── ApiPlaneType.cs │ │ │ ├── ApiPlaneType.cs.meta │ │ │ ├── ApiPlaybackStatus.cs │ │ │ ├── ApiPlaybackStatus.cs.meta │ │ │ ├── ApiPoseData.cs │ │ │ ├── ApiPoseData.cs.meta │ │ │ ├── ApiPrestoCallbackResult.cs │ │ │ ├── ApiPrestoCallbackResult.cs.meta │ │ │ ├── ApiPrestoDeviceCameraDirection.cs │ │ │ ├── ApiPrestoDeviceCameraDirection.cs.meta │ │ │ ├── ApiPrestoStatus.cs │ │ │ ├── ApiPrestoStatus.cs.meta │ │ │ ├── ApiRecordingStatus.cs │ │ │ ├── ApiRecordingStatus.cs.meta │ │ │ ├── ApiRenderEvent.cs │ │ │ ├── ApiRenderEvent.cs.meta │ │ │ ├── ApiTextureDataType.cs │ │ │ ├── ApiTextureDataType.cs.meta │ │ │ ├── ApiTrackableType.cs │ │ │ ├── ApiTrackableType.cs.meta │ │ │ ├── ApiTrackingFailureReason.cs │ │ │ ├── ApiTrackingFailureReason.cs.meta │ │ │ ├── ApiTrackingState.cs │ │ │ ├── ApiTrackingState.cs.meta │ │ │ ├── ApiTypeExtensions.cs │ │ │ ├── ApiTypeExtensions.cs.meta │ │ │ ├── ApiUpdateMode.cs │ │ │ └── ApiUpdateMode.cs.meta │ │ ├── Wrappers.meta │ │ └── Wrappers │ │ │ ├── AnchorApi.cs │ │ │ ├── AnchorApi.cs.meta │ │ │ ├── AugmentedFaceApi.cs │ │ │ ├── AugmentedFaceApi.cs.meta │ │ │ ├── AugmentedImageApi.cs │ │ │ ├── AugmentedImageApi.cs.meta │ │ │ ├── AugmentedImageDatabaseApi.cs │ │ │ ├── AugmentedImageDatabaseApi.cs.meta │ │ │ ├── CameraApi.cs │ │ │ ├── CameraApi.cs.meta │ │ │ ├── CameraConfigApi.cs │ │ │ ├── CameraConfigApi.cs.meta │ │ │ ├── CameraConfigFilterApi.cs │ │ │ ├── CameraConfigFilterApi.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 │ │ │ ├── RecordingConfigApi.cs │ │ │ ├── RecordingConfigApi.cs.meta │ │ │ ├── SessionApi.cs │ │ │ ├── SessionApi.cs.meta │ │ │ ├── SessionConfigApi.cs │ │ │ ├── SessionConfigApi.cs.meta │ │ │ ├── TrackApi.cs │ │ │ ├── TrackApi.cs.meta │ │ │ ├── TrackDataApi.cs │ │ │ ├── TrackDataApi.cs.meta │ │ │ ├── TrackDataListApi.cs │ │ │ ├── TrackDataListApi.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 │ │ ├── AugmentedFace.cs │ │ ├── AugmentedFace.cs.meta │ │ ├── AugmentedFaceMode.cs │ │ ├── AugmentedFaceMode.cs.meta │ │ ├── AugmentedFaceRegion.cs │ │ ├── AugmentedFaceRegion.cs.meta │ │ ├── AugmentedImage.cs │ │ ├── AugmentedImage.cs.meta │ │ ├── AugmentedImageDatabase.cs │ │ ├── AugmentedImageDatabase.cs.meta │ │ ├── AugmentedImageDatabaseEntry.cs │ │ ├── AugmentedImageDatabaseEntry.cs.meta │ │ ├── AugmentedImageSrc.cs │ │ ├── AugmentedImageSrc.cs.meta │ │ ├── AugmentedImageTrackingMethod.cs │ │ ├── AugmentedImageTrackingMethod.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 │ │ ├── CloudAnchorMode.cs │ │ ├── CloudAnchorMode.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 │ │ ├── DepthMode.cs │ │ ├── DepthMode.cs.meta │ │ ├── DepthPoint.cs │ │ ├── DepthPoint.cs.meta │ │ ├── DepthStatus.cs │ │ ├── DepthStatus.cs.meta │ │ ├── DetectedPlane.cs │ │ ├── DetectedPlane.cs.meta │ │ ├── DetectedPlaneFindingMode.cs │ │ ├── DetectedPlaneFindingMode.cs.meta │ │ ├── DetectedPlaneType.cs │ │ ├── DetectedPlaneType.cs.meta │ │ ├── DeviceCameraDirection.cs │ │ ├── DeviceCameraDirection.cs.meta │ │ ├── DisplayUvCoordinateType.cs │ │ ├── DisplayUvCoordinateType.cs.meta │ │ ├── DisplayUvCoordinateTypeExtension.cs │ │ ├── DisplayUvCoordinateTypeExtension.cs.meta │ │ ├── DisplayUvCoords.cs │ │ ├── DisplayUvCoords.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── ARCoreAnalytics.cs │ │ ├── ARCoreAnalytics.cs.meta │ │ ├── ARCoreAnalyticsGUI.cs │ │ ├── ARCoreAnalyticsGUI.cs.meta │ │ ├── ARCoreAnalyticsPreferences.cs │ │ ├── ARCoreAnalyticsPreferences.cs.meta │ │ ├── ARCoreAnalyticsProvider.cs │ │ ├── ARCoreAnalyticsProvider.cs.meta │ │ ├── ARCoreAndroidSupportPreprocessBuild.cs │ │ ├── ARCoreAndroidSupportPreprocessBuild.cs.meta │ │ ├── ARCoreIOSSupportHelper.cs │ │ ├── ARCoreIOSSupportHelper.cs.meta │ │ ├── ARCoreIOSSupportPreprocessBuild.cs │ │ ├── ARCoreIOSSupportPreprocessBuild.cs.meta │ │ ├── ARCoreProjectSettingsGUI.cs │ │ ├── ARCoreProjectSettingsGUI.cs.meta │ │ ├── ARCoreProjectSettingsProvider.cs │ │ ├── ARCoreProjectSettingsProvider.cs.meta │ │ ├── ARCoreProjectSettingsWindow.cs │ │ ├── ARCoreProjectSettingsWindow.cs.meta │ │ ├── ARCoreSupportedPreprocessBuild.cs │ │ ├── ARCoreSupportedPreprocessBuild.cs.meta │ │ ├── ARCoreUnitySDKManifest.cs │ │ ├── ARCoreUnitySDKManifest.cs.meta │ │ ├── ARCoreUnitySDKPreprocessBuild.cs │ │ ├── ARCoreUnitySDKPreprocessBuild.cs.meta │ │ ├── Analytics.meta │ │ ├── Analytics │ │ │ ├── ArcoreClearcut.cs │ │ │ ├── ArcoreClearcut.cs.meta │ │ │ ├── ArcoreSdkLog.cs │ │ │ └── ArcoreSdkLog.cs.meta │ │ ├── AndroidDependenciesHelper.cs │ │ ├── AndroidDependenciesHelper.cs.meta │ │ ├── AndroidManifestMerger.cs │ │ ├── AndroidManifestMerger.cs.meta │ │ ├── AssetHelper.cs │ │ ├── AssetHelper.cs.meta │ │ ├── AugmentedImageDatabaseContextMenu.cs │ │ ├── AugmentedImageDatabaseContextMenu.cs.meta │ │ ├── AugmentedImageDatabaseInspector.cs │ │ ├── AugmentedImageDatabaseInspector.cs.meta │ │ ├── AugmentedImageDatabasePreprocessBuild.cs │ │ ├── AugmentedImageDatabasePreprocessBuild.cs.meta │ │ ├── AuthenticationProcessBuild.cs │ │ ├── AuthenticationProcessBuild.cs.meta │ │ ├── BackgroundJobExecutor.cs │ │ ├── BackgroundJobExecutor.cs.meta │ │ ├── CloudAnchorPreprocessBuild.cs │ │ ├── CloudAnchorPreprocessBuild.cs.meta │ │ ├── ExampleBuildHelper.cs │ │ ├── ExampleBuildHelper.cs.meta │ │ ├── ExamplePreprocessBuild.cs │ │ ├── ExamplePreprocessBuild.cs.meta │ │ ├── HelpAttributeDrawer.cs │ │ ├── HelpAttributeDrawer.cs.meta │ │ ├── LogRequestUtils.cs │ │ ├── LogRequestUtils.cs.meta │ │ ├── ManifestModificationPreprocessBuild.cs │ │ ├── ManifestModificationPreprocessBuild.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 │ │ ├── FeatureMapQuality.cs │ │ ├── FeatureMapQuality.cs.meta │ │ ├── FeaturePoint.cs │ │ ├── FeaturePoint.cs.meta │ │ ├── FeaturePointOrientationMode.cs │ │ ├── FeaturePointOrientationMode.cs.meta │ │ ├── Frame.cs │ │ ├── Frame.cs.meta │ │ ├── IAndroidPermissionsCheck.cs │ │ ├── IAndroidPermissionsCheck.cs.meta │ │ ├── InstantPlacementMode.cs │ │ ├── InstantPlacementMode.cs.meta │ │ ├── InstantPlacementPoint.cs │ │ ├── InstantPlacementPoint.cs.meta │ │ ├── InstantPlacementPointTrackingMethod.cs │ │ ├── InstantPlacementPointTrackingMethod.cs.meta │ │ ├── LightEstimate.cs │ │ ├── LightEstimate.cs.meta │ │ ├── LightEstimateState.cs │ │ ├── LightEstimateState.cs.meta │ │ ├── LightEstimationMode.cs │ │ ├── LightEstimationMode.cs.meta │ │ ├── LostTrackingReason.cs │ │ ├── LostTrackingReason.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 │ │ ├── PointCloudManager.cs │ │ ├── PointCloudManager.cs.meta │ │ ├── TrackableManager.cs │ │ └── TrackableManager.cs.meta │ │ ├── PlaybackResult.cs │ │ ├── PlaybackResult.cs.meta │ │ ├── PlaybackStatus.cs │ │ ├── PlaybackStatus.cs.meta │ │ ├── PointCloudPoint.cs │ │ ├── PointCloudPoint.cs.meta │ │ ├── RecordingResult.cs │ │ ├── RecordingResult.cs.meta │ │ ├── RecordingStatus.cs │ │ ├── RecordingStatus.cs.meta │ │ ├── Session.cs │ │ ├── Session.cs.meta │ │ ├── SessionStatus.cs │ │ ├── SessionStatus.cs.meta │ │ ├── SessionStatusExtensions.cs │ │ ├── SessionStatusExtensions.cs.meta │ │ ├── Track.cs │ │ ├── Track.cs.meta │ │ ├── TrackData.cs │ │ ├── TrackData.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 │ │ ├── ARCoreiOSHelper.cs │ │ ├── ARCoreiOSHelper.cs.meta │ │ ├── ARDebug.cs │ │ ├── ARDebug.cs.meta │ │ ├── AndroidNativeHelper.cs │ │ ├── AndroidNativeHelper.cs.meta │ │ ├── ConversionHelper.cs │ │ ├── ConversionHelper.cs.meta │ │ ├── DependentModules.meta │ │ ├── DependentModules │ │ │ ├── DependentModulesManager.cs │ │ │ ├── DependentModulesManager.cs.meta │ │ │ ├── IDependentModule.cs │ │ │ └── IDependentModule.cs.meta │ │ ├── DllImportNoop.cs │ │ ├── DllImportNoop.cs.meta │ │ ├── HelpAttribute.cs │ │ ├── HelpAttribute.cs.meta │ │ ├── IARCoreiOSHelper.cs │ │ ├── IARCoreiOSHelper.cs.meta │ │ ├── IntPtrEqualityComparer.cs │ │ ├── IntPtrEqualityComparer.cs.meta │ │ ├── MarshalingHelper.cs │ │ ├── MarshalingHelper.cs.meta │ │ ├── OpenGL.cs │ │ ├── OpenGL.cs.meta │ │ ├── ShellHelper.cs │ │ ├── ShellHelper.cs.meta │ │ ├── SuppressMemoryAllocationErrorAttribute.cs │ │ ├── SuppressMemoryAllocationErrorAttribute.cs.meta │ │ ├── ThrottledLogMessage.cs │ │ └── ThrottledLogMessage.cs.meta │ │ ├── VersionInfo.cs │ │ ├── VersionInfo.cs.meta │ │ ├── XPAnchor.cs │ │ ├── XPAnchor.cs.meta │ │ ├── XPSession.cs │ │ ├── XPSession.cs.meta │ │ ├── XPTrackingState.cs │ │ └── XPTrackingState.cs.meta ├── Plugins.meta └── Plugins │ ├── Android.meta │ └── Android │ ├── applicationGradle.template │ ├── applicationGradle.template.meta │ ├── launcherGradleWithUseProguard.template │ ├── launcherGradleWithUseProguard.template.meta │ ├── launcherTemplate.gradle │ ├── launcherTemplate.gradle.meta │ ├── libraryGradle.template │ ├── libraryGradle.template.meta │ ├── mainTemplate.gradle │ └── mainTemplate.gradle.meta ├── CONTRIBUTING.md ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── GvhProjectSettings.xml ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md └── UnityPackageManager └── manifest.json /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /Assets/ExternalDependencyManager.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/ExternalDependencyManager.meta -------------------------------------------------------------------------------- /Assets/ExternalDependencyManager/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/ExternalDependencyManager/Editor.meta -------------------------------------------------------------------------------- /Assets/ExternalDependencyManager/Editor/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/ExternalDependencyManager/Editor/CHANGELOG.md -------------------------------------------------------------------------------- /Assets/ExternalDependencyManager/Editor/CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/ExternalDependencyManager/Editor/CHANGELOG.md.meta -------------------------------------------------------------------------------- /Assets/ExternalDependencyManager/Editor/Google.IOSResolver_v1.2.162.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/ExternalDependencyManager/Editor/Google.IOSResolver_v1.2.162.dll -------------------------------------------------------------------------------- /Assets/ExternalDependencyManager/Editor/Google.IOSResolver_v1.2.162.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/ExternalDependencyManager/Editor/Google.IOSResolver_v1.2.162.dll.mdb -------------------------------------------------------------------------------- /Assets/ExternalDependencyManager/Editor/Google.JarResolver_v1.2.162.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/ExternalDependencyManager/Editor/Google.JarResolver_v1.2.162.dll -------------------------------------------------------------------------------- /Assets/ExternalDependencyManager/Editor/Google.JarResolver_v1.2.162.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/ExternalDependencyManager/Editor/Google.JarResolver_v1.2.162.dll.mdb -------------------------------------------------------------------------------- /Assets/ExternalDependencyManager/Editor/Google.VersionHandler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/ExternalDependencyManager/Editor/Google.VersionHandler.dll -------------------------------------------------------------------------------- /Assets/ExternalDependencyManager/Editor/Google.VersionHandler.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/ExternalDependencyManager/Editor/Google.VersionHandler.dll.mdb -------------------------------------------------------------------------------- /Assets/ExternalDependencyManager/Editor/Google.VersionHandler.dll.mdb.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/ExternalDependencyManager/Editor/Google.VersionHandler.dll.mdb.meta -------------------------------------------------------------------------------- /Assets/ExternalDependencyManager/Editor/Google.VersionHandler.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/ExternalDependencyManager/Editor/Google.VersionHandler.dll.meta -------------------------------------------------------------------------------- /Assets/ExternalDependencyManager/Editor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/ExternalDependencyManager/Editor/LICENSE -------------------------------------------------------------------------------- /Assets/ExternalDependencyManager/Editor/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/ExternalDependencyManager/Editor/LICENSE.meta -------------------------------------------------------------------------------- /Assets/ExternalDependencyManager/Editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/ExternalDependencyManager/Editor/README.md -------------------------------------------------------------------------------- /Assets/ExternalDependencyManager/Editor/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/ExternalDependencyManager/Editor/README.md.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/CLI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/CLI.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/CLI/augmented_image_cli_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/CLI/augmented_image_cli_linux -------------------------------------------------------------------------------- /Assets/GoogleARCore/CLI/augmented_image_cli_linux.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/CLI/augmented_image_cli_linux.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/CLI/augmented_image_cli_osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/CLI/augmented_image_cli_osx -------------------------------------------------------------------------------- /Assets/GoogleARCore/CLI/augmented_image_cli_osx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/CLI/augmented_image_cli_osx.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/CLI/augmented_image_cli_win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/CLI/augmented_image_cli_win.exe -------------------------------------------------------------------------------- /Assets/GoogleARCore/CLI/augmented_image_cli_win.exe.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/CLI/augmented_image_cli_win.exe.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Configurations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Configurations.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Configurations/DefaultCameraConfigFilter.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Configurations/DefaultCameraConfigFilter.asset -------------------------------------------------------------------------------- /Assets/GoogleARCore/Configurations/DefaultCameraConfigFilter.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Configurations/DefaultCameraConfigFilter.asset.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Configurations/DefaultSessionConfig.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Configurations/DefaultSessionConfig.asset -------------------------------------------------------------------------------- /Assets/GoogleARCore/Configurations/DefaultSessionConfig.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Configurations/DefaultSessionConfig.asset.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Editor.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Editor/ARCoreAndroidKeylessDependencies.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Editor/ARCoreAndroidKeylessDependencies.template -------------------------------------------------------------------------------- /Assets/GoogleARCore/Editor/ARCoreAndroidKeylessDependencies.template.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Editor/ARCoreAndroidKeylessDependencies.template.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Editor/ARCoreiOSDependencies.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Editor/ARCoreiOSDependencies.template -------------------------------------------------------------------------------- /Assets/GoogleARCore/Editor/ARCoreiOSDependencies.template.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Editor/ARCoreiOSDependencies.template.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedFaces.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedFaces.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedFaces/Configurations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedFaces/Configurations.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedFaces/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedFaces/Materials.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedFaces/Materials/FoxEarMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedFaces/Materials/FoxEarMaterial.mat -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedFaces/Materials/FoxFaceMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedFaces/Materials/FoxFaceMaterial.mat -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedFaces/Materials/FoxNoiseMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedFaces/Materials/FoxNoiseMaterial.mat -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedFaces/Materials/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedFaces/Materials/Shaders.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedFaces/Materials/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedFaces/Materials/Textures.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedFaces/Materials/Textures/ear_fur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedFaces/Materials/Textures/ear_fur.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedFaces/Materials/Textures/nose_fur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedFaces/Materials/Textures/nose_fur.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedFaces/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedFaces/Models.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedFaces/Models/canonical_face_mesh.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedFaces/Models/canonical_face_mesh.fbx -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedFaces/Models/fox_sample.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedFaces/Models/fox_sample.fbx -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedFaces/Models/fox_sample.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedFaces/Models/fox_sample.fbx.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedFaces/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedFaces/Scenes.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedFaces/Scenes/AugmentedFaces.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedFaces/Scenes/AugmentedFaces.unity -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedFaces/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedFaces/Scripts.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Configurations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Configurations.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/000.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/000.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/000.jpg.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/001.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/001.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/001.jpg.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/002.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/002.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/002.jpg.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/003.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/003.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/003.jpg.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/004.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/004.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/004.jpg.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/005.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/005.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/005.jpg.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/006.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/006.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/006.jpg.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/007.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/007.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/007.jpg.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/008.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/008.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/008.jpg.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/009.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/009.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/009.jpg.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/Example Database.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Images/Example Database.asset -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Materials.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Prefabs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Scenes.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Scenes/AugmentedImage.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Scenes/AugmentedImage.unity -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Scripts.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Textures.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Textures/fit_to_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Textures/fit_to_scan.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Textures/fit_to_scan.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Textures/fit_to_scan.png.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Textures/frame_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Textures/frame_base.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Textures/frame_base.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/AugmentedImage/Textures/frame_base.png.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Configurations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Configurations.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Images.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Images.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Images/introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Images/introduction.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Images/introduction.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Images/introduction.png.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Materials.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarDiffuse.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarDiffuse.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarDiffuse.png.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarDiffuseMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarDiffuseMaterial.mat -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarMaterial.mat -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Models.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.mtl -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.mtl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.mtl.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.obj -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.obj.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Anchor.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Anchor.prefab -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Anchor.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Anchor.prefab.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Player.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Player.prefab -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Player.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Player.prefab.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Row.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Row.prefab -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Row.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Row.prefab.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Star.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Star.prefab -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Star.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Star.prefab.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Scenes.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scenes/CloudAnchors.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Scenes/CloudAnchors.unity -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scenes/CloudAnchors.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Scenes/CloudAnchors.unity.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Scripts.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scripts/ARKitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/ARKitHelper.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scripts/ARKitHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/ARKitHelper.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scripts/AnchorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/AnchorController.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scripts/AnchorController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/AnchorController.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scripts/LocalPlayerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/LocalPlayerController.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scripts/StarController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/StarController.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scripts/StarController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/Scripts/StarController.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/circle.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/circle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/CloudAnchors/circle.png.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/ARCore_pawn.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/ARCore_pawn.fbx -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/ARCore_pawn.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/ARCore_pawn.fbx.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/CameraDebugMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/CameraDebugMaterial.mat -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/CameraDebugMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/CameraDebugMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/PawnBlue.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/PawnBlue.mat -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/PawnBlue.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/PawnBlue.mat.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/PawnGreen.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/PawnGreen.mat -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/PawnGreen.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/PawnGreen.mat.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/PawnTranslucent.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/PawnTranslucent.mat -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/PawnTranslucent.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/PawnTranslucent.mat.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/PawnYellow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/PawnYellow.mat -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/PawnYellow.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/PawnYellow.mat.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/PlaneGrid.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/PlaneGrid.mat -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/PlaneGrid.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/PlaneGrid.mat.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/PointCloud.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/PointCloud.mat -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/PointCloud.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/PointCloud.mat.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/Shaders.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Shaders/PlaneGrid.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/Shaders/PlaneGrid.shader -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Shaders/PlaneGrid.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/Shaders/PlaneGrid.shader.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Shaders/PointCloud.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/Shaders/PointCloud.shader -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/ShadowPlane.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/ShadowPlane.mat -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/ShadowPlane.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/ShadowPlane.mat.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/Textures.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Textures/CloudAnchorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/Textures/CloudAnchorIcon.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Textures/HelloARIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/Textures/HelloARIcon.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Textures/HelloARIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/Textures/HelloARIcon.png.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Textures/TriGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/Textures/TriGrid.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Textures/TriGrid.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/Textures/TriGrid.png.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/cloud_anchor.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/cloud_anchor.fbx -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/cloud_anchor.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Materials/cloud_anchor.fbx.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Prefabs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Prefabs/ARCorePawn.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Prefabs/ARCorePawn.prefab -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Prefabs/ARCorePawn.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Prefabs/ARCorePawn.prefab.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Prefabs/DepthPreview.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Prefabs/DepthPreview.prefab -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Prefabs/DepthPreview.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Prefabs/DepthPreview.prefab.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Prefabs/DetectedPlaneVisualizer.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Prefabs/DetectedPlaneVisualizer.prefab -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Prefabs/PlaneDiscovery.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Prefabs/PlaneDiscovery.prefab -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Prefabs/PlaneDiscovery.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Prefabs/PlaneDiscovery.prefab.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Prefabs/PointCloud.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Prefabs/PointCloud.prefab -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Prefabs/PointCloud.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Prefabs/PointCloud.prefab.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Roboto-Regular.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Roboto-Regular.ttf.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/DepthEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/DepthEffect.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/DepthEffect.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/DepthEffect.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/DepthMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/DepthMenu.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/DepthMenu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/DepthMenu.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/DepthTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/DepthTexture.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/DepthTexture.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/DepthTexture.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneGenerator.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneGenerator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneGenerator.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneVisualizer.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneVisualizer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneVisualizer.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/InstantPlacementEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/InstantPlacementEffect.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/InstantPlacementEffect.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/InstantPlacementEffect.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/InstantPlacementMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/InstantPlacementMenu.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/InstantPlacementMenu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/InstantPlacementMenu.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/PlaneDiscoveryGuide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/PlaneDiscoveryGuide.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/PlaneDiscoveryGuide.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/PlaneDiscoveryGuide.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/PointcloudVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/PointcloudVisualizer.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/PointcloudVisualizer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/PointcloudVisualizer.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/RawImageVideoPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/RawImageVideoPlayer.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/RawImageVideoPlayer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/RawImageVideoPlayer.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/SafeAreaScaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/SafeAreaScaler.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/SafeAreaScaler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/SafeAreaScaler.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/ShadowQuadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/ShadowQuadHelper.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/ShadowQuadHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Scripts/ShadowQuadHelper.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Textures.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Textures/ColorRamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Textures/ColorRamp.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Textures/ColorRamp.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Textures/ColorRamp.png.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Textures/Surface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Textures/Surface.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Textures/Surface.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Textures/Surface.png.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Textures/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Textures/background.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Textures/background.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Textures/background.png.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Textures/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Textures/ic_settings.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Textures/ic_settings.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Textures/ic_settings.png.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Textures/translucent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Textures/translucent.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Textures/translucent.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Textures/translucent.png.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Textures/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Textures/transparent.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Textures/transparent.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Textures/transparent.png.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Videos.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Videos.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Videos/hand_oem.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Videos/hand_oem.webm -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Videos/hand_oem.webm.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/Common/Videos/hand_oem.webm.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ComputerVision.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ComputerVision/Materials.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ComputerVision/Plugins.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Plugins/src.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ComputerVision/Plugins/src.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/README.md -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/README.md.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ComputerVision/Scenes.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Scenes/ComputerVision.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ComputerVision/Scenes/ComputerVision.unity -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ComputerVision/Scripts.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Scripts/EdgeDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ComputerVision/Scripts/EdgeDetector.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Scripts/EdgeDetector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ComputerVision/Scripts/EdgeDetector.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Scripts/PointClickHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ComputerVision/Scripts/PointClickHandler.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Scripts/TextureReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ComputerVision/Scripts/TextureReader.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Scripts/TextureReader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ComputerVision/Scripts/TextureReader.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Scripts/TextureReaderApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ComputerVision/Scripts/TextureReaderApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/HelloAR.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/HelloARSessionConfig.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/HelloAR/HelloARSessionConfig.asset -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/HelloARSessionConfig.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/HelloAR/HelloARSessionConfig.asset.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/HelloAR/Scenes.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/Scenes/HelloAR.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/HelloAR/Scenes/HelloAR.unity -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/Scenes/HelloAR.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/HelloAR/Scenes/HelloAR.unity.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/HelloAR/Scripts.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/Scripts/HelloARController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/HelloAR/Scripts/HelloARController.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/Scripts/HelloARController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/HelloAR/Scripts/HelloARController.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/Scripts/SettingsMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/HelloAR/Scripts/SettingsMenu.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/Scripts/SettingsMenu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/HelloAR/Scripts/SettingsMenu.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ObjectManipulation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ObjectManipulation.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ObjectManipulation/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ObjectManipulation/Materials.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ObjectManipulation/Materials/dottedline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ObjectManipulation/Materials/dottedline.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ObjectManipulation/Materials/footprint.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ObjectManipulation/Materials/footprint.mtl -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ObjectManipulation/Materials/footprint.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ObjectManipulation/Materials/footprint.obj -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ObjectManipulation/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ObjectManipulation/Prefabs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ObjectManipulation/Prefabs/Manipulator.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ObjectManipulation/Prefabs/Manipulator.prefab -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ObjectManipulation/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ObjectManipulation/Scenes.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ObjectManipulation/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ObjectManipulation/Scripts.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ObjectManipulation/Scripts/Gestures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ObjectManipulation/Scripts/Gestures.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ObjectManipulation/Scripts/Gestures/Gesture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ObjectManipulation/Scripts/Gestures/Gesture.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ObjectManipulation/Scripts/Manipulators.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ObjectManipulation/Scripts/Manipulators.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ObjectManipulation/Scripts/PawnManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/ObjectManipulation/Scripts/PawnManipulator.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/PersistentCloudAnchors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/PersistentCloudAnchors.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/PersistentCloudAnchors/Configurations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/PersistentCloudAnchors/Configurations.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/PersistentCloudAnchors/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/PersistentCloudAnchors/Materials.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/PersistentCloudAnchors/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/PersistentCloudAnchors/Prefabs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/PersistentCloudAnchors/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/PersistentCloudAnchors/Scenes.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/PersistentCloudAnchors/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Examples/PersistentCloudAnchors/Scripts.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/LICENSE -------------------------------------------------------------------------------- /Assets/GoogleARCore/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/LICENSE.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Prefabs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Prefabs/ARCore Device.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Prefabs/ARCore Device.prefab -------------------------------------------------------------------------------- /Assets/GoogleARCore/Prefabs/ARCore Device.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Prefabs/ARCore Device.prefab.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/Prefabs/Environmental Light.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Prefabs/Environmental Light.prefab -------------------------------------------------------------------------------- /Assets/GoogleARCore/Prefabs/Environmental Light.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/Prefabs/Environmental Light.prefab.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/BuildResources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/BuildResources.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/BuildResources/cloud_anchor_manifest.aartemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/BuildResources/cloud_anchor_manifest.aartemplate -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/InstantPreview.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/InstantPreview/Plugins.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/InstantPreview/Scripts.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/InstantPreview/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreview.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreview.apk -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreview.apk.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreview.apk.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewInput.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewInput.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewInput.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewManager.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Materials.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Materials/ARBackground.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Materials/ARBackground.mat -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Materials/ARBackground.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Materials/ARBackground.mat.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Materials/ARBackground.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Materials/ARBackground.shader -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Materials/ARBackground.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Materials/ARBackground.shader.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Materials/ARCoreDepth.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Materials/ARCoreDepth.cginc -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Materials/ARCoreDepth.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Materials/ARCoreDepth.cginc.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/Google.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/Google.Protobuf.dll -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/Google.Protobuf.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/Google.Protobuf.dll.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/arcore_arkit_integration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/arcore_arkit_integration.mm -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/arcore_arkit_integration.mm.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/arcore_arkit_integration.mm.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/arcore_client.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/arcore_client.aar -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/arcore_client.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/arcore_client.aar.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/arcore_rendering_utils.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/arcore_rendering_utils.aar -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/arcore_rendering_utils.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/arcore_rendering_utils.aar.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/arcore_unity.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/arcore_unity.aar -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/arcore_unity.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/arcore_unity.aar.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/google_ar_optional.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/google_ar_optional.aar -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/google_ar_optional.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/google_ar_optional.aar.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/google_ar_required.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/google_ar_required.aar -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/google_ar_required.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/google_ar_required.aar.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/keyless_authentication.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/keyless_authentication.aar -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/keyless_authentication.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/keyless_authentication.aar.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/unityandroidpermissions.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/unityandroidpermissions.aar -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/unityandroidpermissions.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/unityandroidpermissions.aar.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/unitygar.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/unitygar.aar -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/unitygar.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Plugins/unitygar.aar.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Resources.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Resources/ViewInARIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Resources/ViewInARIcon.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Resources/ViewInARIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Resources/ViewInARIcon.png.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ARCoreBackgroundRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ARCoreBackgroundRenderer.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ARCoreBackgroundRenderer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ARCoreBackgroundRenderer.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ARCoreCameraConfigFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ARCoreCameraConfigFilter.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ARCoreCameraConfigFilter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ARCoreCameraConfigFilter.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ARCoreRecordingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ARCoreRecordingConfig.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ARCoreRecordingConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ARCoreRecordingConfig.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ARCoreSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ARCoreSession.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ARCoreSession.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ARCoreSession.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ARCoreSessionConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ARCoreSessionConfig.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ARCoreSessionConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ARCoreSessionConfig.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Anchor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Anchor.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Anchor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Anchor.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsManager.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsManager.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsRequestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsRequestResult.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsRequestResult.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsRequestResult.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/NativeSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/NativeSession.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/NativeSession.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/NativeSession.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiApkInstallationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiApkInstallationStatus.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiApkInstallationStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiApkInstallationStatus.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiArStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiArStatus.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiArStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiArStatus.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAugmentedFaceMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAugmentedFaceMode.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAugmentedFaceMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAugmentedFaceMode.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAugmentedFaceRegionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAugmentedFaceRegionType.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAvailability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAvailability.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAvailability.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAvailability.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraConfigTargetFps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraConfigTargetFps.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraConfigTargetFps.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraConfigTargetFps.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraFocusMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraFocusMode.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraFocusMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraFocusMode.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraMetadata.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraMetadata.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraMetadata.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorMode.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorMode.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorState.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorState.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiConstants.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiConstants.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiConstants.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCoordinates2dType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCoordinates2dType.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCoordinates2dType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCoordinates2dType.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDepthMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDepthMode.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDepthMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDepthMode.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDisplayUvCoords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDisplayUvCoords.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDisplayUvCoords.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDisplayUvCoords.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiFeaturePointOrientationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiFeaturePointOrientationMode.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimateState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimateState.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimateState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimateState.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimationMode.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimationMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimationMode.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneFindingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneFindingMode.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneFindingMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneFindingMode.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneType.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneType.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaybackStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaybackStatus.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaybackStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaybackStatus.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPoseData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPoseData.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPoseData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPoseData.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoCallbackResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoCallbackResult.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoCallbackResult.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoCallbackResult.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoDeviceCameraDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoDeviceCameraDirection.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoStatus.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoStatus.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiRecordingStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiRecordingStatus.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiRecordingStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiRecordingStatus.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiRenderEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiRenderEvent.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiRenderEvent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiRenderEvent.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTextureDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTextureDataType.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTextureDataType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTextureDataType.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackableType.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackableType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackableType.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingFailureReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingFailureReason.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingFailureReason.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingFailureReason.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingState.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingState.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTypeExtensions.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTypeExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTypeExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiUpdateMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiUpdateMode.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiUpdateMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiUpdateMode.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AnchorApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AnchorApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AnchorApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AnchorApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedFaceApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedFaceApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedFaceApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedFaceApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedImageApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedImageApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedImageApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedImageApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedImageDatabaseApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedImageDatabaseApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigFilterApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigFilterApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigFilterApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigFilterApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigListApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigListApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigListApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigListApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraMetadataApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraMetadataApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraMetadataApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraMetadataApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/FrameApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/FrameApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/FrameApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/FrameApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/HitTestApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/HitTestApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/HitTestApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/HitTestApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/ImageApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/ImageApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/ImageApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/ImageApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/LightEstimateApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/LightEstimateApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/LightEstimateApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/LightEstimateApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PlaneApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PlaneApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PlaneApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PlaneApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointCloudApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointCloudApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointCloudApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointCloudApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PoseApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PoseApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PoseApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PoseApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/RecordingConfigApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/RecordingConfigApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/RecordingConfigApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/RecordingConfigApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionConfigApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionConfigApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionConfigApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionConfigApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackDataApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackDataApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackDataApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackDataApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackDataListApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackDataListApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackDataListApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackDataListApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableListApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableListApi.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableListApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableListApi.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ApkAvailabilityStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ApkAvailabilityStatus.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ApkAvailabilityStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ApkAvailabilityStatus.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ApkInstallationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ApkInstallationStatus.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ApkInstallationStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ApkInstallationStatus.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Async.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Async.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AsyncTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AsyncTask.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AsyncTask.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AsyncTask.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedFace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AugmentedFace.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedFace.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AugmentedFace.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedFaceMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AugmentedFaceMode.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedFaceMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AugmentedFaceMode.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedFaceRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AugmentedFaceRegion.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedFaceRegion.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AugmentedFaceRegion.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AugmentedImage.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedImage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AugmentedImage.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabase.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabase.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabaseEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabaseEntry.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabaseEntry.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabaseEntry.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedImageSrc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AugmentedImageSrc.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedImageSrc.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AugmentedImageSrc.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedImageTrackingMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AugmentedImageTrackingMethod.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedImageTrackingMethod.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/AugmentedImageTrackingMethod.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CameraConfig.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CameraConfig.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraFocusMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CameraFocusMode.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraFocusMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CameraFocusMode.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraImageBytes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CameraImageBytes.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraImageBytes.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CameraImageBytes.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraIntrinsics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CameraIntrinsics.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraIntrinsics.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CameraIntrinsics.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraMetadataTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CameraMetadataTag.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraMetadataTag.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CameraMetadataTag.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraMetadataValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CameraMetadataValue.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraMetadataValue.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CameraMetadataValue.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CloudAnchorMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CloudAnchorMode.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CloudAnchorMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CloudAnchorMode.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CloudAnchorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CloudAnchorResult.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CloudAnchorResult.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CloudAnchorResult.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CloudServiceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CloudServiceResponse.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CloudServiceResponse.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/CloudServiceResponse.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Deprecated.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Deprecated.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPlane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPlane.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPlane.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPlane.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPoint.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPoint.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPoint.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPointOrientationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPointOrientationMode.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DepthMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DepthMode.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DepthMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DepthMode.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DepthPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DepthPoint.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DepthPoint.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DepthPoint.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DepthStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DepthStatus.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DepthStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DepthStatus.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DetectedPlane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DetectedPlane.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DetectedPlane.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DetectedPlane.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DetectedPlaneFindingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DetectedPlaneFindingMode.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DetectedPlaneFindingMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DetectedPlaneFindingMode.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DetectedPlaneType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DetectedPlaneType.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DetectedPlaneType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DetectedPlaneType.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DeviceCameraDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DeviceCameraDirection.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DeviceCameraDirection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DeviceCameraDirection.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DisplayUvCoordinateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DisplayUvCoordinateType.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DisplayUvCoordinateType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DisplayUvCoordinateType.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DisplayUvCoordinateTypeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DisplayUvCoordinateTypeExtension.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DisplayUvCoordinateTypeExtension.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DisplayUvCoordinateTypeExtension.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DisplayUvCoords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DisplayUvCoords.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DisplayUvCoords.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/DisplayUvCoords.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreAnalytics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreAnalytics.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreAnalytics.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreAnalytics.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreAnalyticsGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreAnalyticsGUI.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreAnalyticsGUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreAnalyticsGUI.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreAnalyticsPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreAnalyticsPreferences.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreAnalyticsPreferences.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreAnalyticsPreferences.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreAnalyticsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreAnalyticsProvider.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreAnalyticsProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreAnalyticsProvider.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreIOSSupportHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreIOSSupportHelper.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreIOSSupportHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreIOSSupportHelper.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreIOSSupportPreprocessBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreIOSSupportPreprocessBuild.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreProjectSettingsGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreProjectSettingsGUI.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreProjectSettingsGUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreProjectSettingsGUI.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreProjectSettingsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreProjectSettingsProvider.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreProjectSettingsWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreProjectSettingsWindow.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreProjectSettingsWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreProjectSettingsWindow.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreSupportedPreprocessBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreSupportedPreprocessBuild.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreUnitySDKManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreUnitySDKManifest.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreUnitySDKManifest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreUnitySDKManifest.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreUnitySDKPreprocessBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreUnitySDKPreprocessBuild.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/Analytics.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/Analytics.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/Analytics/ArcoreClearcut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/Analytics/ArcoreClearcut.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/Analytics/ArcoreClearcut.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/Analytics/ArcoreClearcut.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/Analytics/ArcoreSdkLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/Analytics/ArcoreSdkLog.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/Analytics/ArcoreSdkLog.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/Analytics/ArcoreSdkLog.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/AndroidDependenciesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/AndroidDependenciesHelper.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/AndroidDependenciesHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/AndroidDependenciesHelper.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/AndroidManifestMerger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/AndroidManifestMerger.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/AndroidManifestMerger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/AndroidManifestMerger.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/AssetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/AssetHelper.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/AssetHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/AssetHelper.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabaseContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabaseContextMenu.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabaseInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabaseInspector.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/AuthenticationProcessBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/AuthenticationProcessBuild.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/AuthenticationProcessBuild.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/AuthenticationProcessBuild.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/BackgroundJobExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/BackgroundJobExecutor.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/BackgroundJobExecutor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/BackgroundJobExecutor.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/CloudAnchorPreprocessBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/CloudAnchorPreprocessBuild.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/CloudAnchorPreprocessBuild.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/CloudAnchorPreprocessBuild.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ExampleBuildHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ExampleBuildHelper.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ExampleBuildHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ExampleBuildHelper.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ExamplePreprocessBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ExamplePreprocessBuild.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ExamplePreprocessBuild.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/ExamplePreprocessBuild.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/HelpAttributeDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/HelpAttributeDrawer.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/HelpAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/HelpAttributeDrawer.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/LogRequestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/LogRequestUtils.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/LogRequestUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/LogRequestUtils.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/PreprocessBuildBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/PreprocessBuildBase.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/PreprocessBuildBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/PreprocessBuildBase.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/RequiredOptionalPreprocessBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Editor/RequiredOptionalPreprocessBuild.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/EnvironmentalLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/EnvironmentalLight.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/EnvironmentalLight.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/EnvironmentalLight.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ExperimentSupport.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ExperimentSupport.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentBase.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentBase.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentManager.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentManager.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/FeatureMapQuality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/FeatureMapQuality.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/FeatureMapQuality.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/FeatureMapQuality.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/FeaturePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/FeaturePoint.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/FeaturePoint.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/FeaturePoint.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/FeaturePointOrientationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/FeaturePointOrientationMode.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/FeaturePointOrientationMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/FeaturePointOrientationMode.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Frame.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Frame.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Frame.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/IAndroidPermissionsCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/IAndroidPermissionsCheck.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/IAndroidPermissionsCheck.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/IAndroidPermissionsCheck.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/InstantPlacementMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/InstantPlacementMode.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/InstantPlacementMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/InstantPlacementMode.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/InstantPlacementPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/InstantPlacementPoint.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/InstantPlacementPoint.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/InstantPlacementPoint.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/InstantPlacementPointTrackingMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/InstantPlacementPointTrackingMethod.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/InstantPlacementPointTrackingMethod.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/InstantPlacementPointTrackingMethod.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/LightEstimate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/LightEstimate.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/LightEstimate.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/LightEstimate.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/LightEstimateState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/LightEstimateState.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/LightEstimateState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/LightEstimateState.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/LightEstimationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/LightEstimationMode.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/LightEstimationMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/LightEstimationMode.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/LostTrackingReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/LostTrackingReason.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/LostTrackingReason.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/LostTrackingReason.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Managers.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/ARCoreAndroidLifecycleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Managers/ARCoreAndroidLifecycleManager.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/ARCoreIOSLifecycleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Managers/ARCoreIOSLifecycleManager.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/ARCoreIOSLifecycleManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Managers/ARCoreIOSLifecycleManager.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/ARPrestoCallbackManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Managers/ARPrestoCallbackManager.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/ARPrestoCallbackManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Managers/ARPrestoCallbackManager.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/CloudServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Managers/CloudServiceManager.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/CloudServiceManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Managers/CloudServiceManager.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/ILifecycleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Managers/ILifecycleManager.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/ILifecycleManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Managers/ILifecycleManager.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/LifecycleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Managers/LifecycleManager.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/LifecycleManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Managers/LifecycleManager.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/PointCloudManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Managers/PointCloudManager.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/PointCloudManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Managers/PointCloudManager.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/TrackableManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Managers/TrackableManager.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/TrackableManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Managers/TrackableManager.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/PlaybackResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/PlaybackResult.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/PlaybackResult.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/PlaybackResult.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/PlaybackStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/PlaybackStatus.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/PlaybackStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/PlaybackStatus.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/PointCloudPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/PointCloudPoint.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/PointCloudPoint.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/PointCloudPoint.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/RecordingResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/RecordingResult.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/RecordingResult.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/RecordingResult.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/RecordingStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/RecordingStatus.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/RecordingStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/RecordingStatus.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Session.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Session.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Session.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/SessionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/SessionStatus.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/SessionStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/SessionStatus.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/SessionStatusExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/SessionStatusExtensions.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/SessionStatusExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/SessionStatusExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Track.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Track.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Track.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/TrackData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/TrackData.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/TrackData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/TrackData.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Trackable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Trackable.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Trackable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Trackable.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/TrackableHit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/TrackableHit.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/TrackableHit.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/TrackableHit.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/TrackableHitFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/TrackableHitFlags.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/TrackableHitFlags.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/TrackableHitFlags.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/TrackableQueryFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/TrackableQueryFilter.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/TrackableQueryFilter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/TrackableQueryFilter.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/TrackingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/TrackingState.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/TrackingState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/TrackingState.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/ARCoreProjectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/ARCoreProjectSettings.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/ARCoreProjectSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/ARCoreProjectSettings.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/ARCoreiOSHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/ARCoreiOSHelper.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/ARCoreiOSHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/ARCoreiOSHelper.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/ARDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/ARDebug.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/ARDebug.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/ARDebug.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/AndroidNativeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/AndroidNativeHelper.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/AndroidNativeHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/AndroidNativeHelper.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/ConversionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/ConversionHelper.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/ConversionHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/ConversionHelper.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/DependentModules.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/DependentModules.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/DllImportNoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/DllImportNoop.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/DllImportNoop.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/DllImportNoop.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/HelpAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/HelpAttribute.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/HelpAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/HelpAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/IARCoreiOSHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/IARCoreiOSHelper.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/IARCoreiOSHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/IARCoreiOSHelper.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/IntPtrEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/IntPtrEqualityComparer.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/IntPtrEqualityComparer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/IntPtrEqualityComparer.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/MarshalingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/MarshalingHelper.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/MarshalingHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/MarshalingHelper.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/OpenGL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/OpenGL.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/OpenGL.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/OpenGL.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/ShellHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/ShellHelper.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/ShellHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/ShellHelper.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/ThrottledLogMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/ThrottledLogMessage.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/ThrottledLogMessage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/Utility/ThrottledLogMessage.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/VersionInfo.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/VersionInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/VersionInfo.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/XPAnchor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/XPAnchor.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/XPAnchor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/XPAnchor.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/XPSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/XPSession.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/XPSession.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/XPSession.cs.meta -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/XPTrackingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/XPTrackingState.cs -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/XPTrackingState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/GoogleARCore/SDK/Scripts/XPTrackingState.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/Plugins.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/Plugins/Android.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/applicationGradle.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/Plugins/Android/applicationGradle.template -------------------------------------------------------------------------------- /Assets/Plugins/Android/applicationGradle.template.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/Plugins/Android/applicationGradle.template.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/launcherGradleWithUseProguard.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/Plugins/Android/launcherGradleWithUseProguard.template -------------------------------------------------------------------------------- /Assets/Plugins/Android/launcherGradleWithUseProguard.template.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/Plugins/Android/launcherGradleWithUseProguard.template.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/launcherTemplate.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/Plugins/Android/launcherTemplate.gradle -------------------------------------------------------------------------------- /Assets/Plugins/Android/launcherTemplate.gradle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/Plugins/Android/launcherTemplate.gradle.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/libraryGradle.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/Plugins/Android/libraryGradle.template -------------------------------------------------------------------------------- /Assets/Plugins/Android/libraryGradle.template.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/Plugins/Android/libraryGradle.template.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/mainTemplate.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/Plugins/Android/mainTemplate.gradle -------------------------------------------------------------------------------- /Assets/Plugins/Android/mainTemplate.gradle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/Assets/Plugins/Android/mainTemplate.gradle.meta -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GvhProjectSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/ProjectSettings/GvhProjectSettings.xml -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.4.40f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-ar/arcore-unity-sdk/HEAD/README.md -------------------------------------------------------------------------------- /UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | --------------------------------------------------------------------------------