├── .gitignore ├── Assets ├── GoogleARCore.meta ├── GoogleARCore │ ├── CLI.meta │ ├── CLI │ │ ├── augmented_image_cli_linux │ │ ├── augmented_image_cli_linux.meta │ │ ├── augmented_image_cli_osx │ │ ├── augmented_image_cli_osx.meta │ │ ├── augmented_image_cli_win.exe │ │ └── augmented_image_cli_win.exe.meta │ ├── Configurations.meta │ ├── Configurations │ │ ├── DefaultSessionConfig.asset │ │ └── DefaultSessionConfig.asset.meta │ ├── Editor.meta │ ├── Editor │ │ ├── ARCoreiOSDependencies.template │ │ └── ARCoreiOSDependencies.template.meta │ ├── Examples.meta │ ├── Examples │ │ ├── AugmentedImage.meta │ │ ├── AugmentedImage │ │ │ ├── Configurations.meta │ │ │ ├── Configurations │ │ │ │ ├── AugmentedImagesSessionConfig.asset │ │ │ │ └── AugmentedImagesSessionConfig.asset.meta │ │ │ ├── Images.meta │ │ │ ├── Images │ │ │ │ ├── 000.jpg │ │ │ │ ├── 000.jpg.meta │ │ │ │ ├── 001.jpg │ │ │ │ ├── 001.jpg.meta │ │ │ │ ├── 002.jpg │ │ │ │ ├── 002.jpg.meta │ │ │ │ ├── 003.jpg │ │ │ │ ├── 003.jpg.meta │ │ │ │ ├── 004.jpg │ │ │ │ ├── 004.jpg.meta │ │ │ │ ├── 005.jpg │ │ │ │ ├── 005.jpg.meta │ │ │ │ ├── 006.jpg │ │ │ │ ├── 006.jpg.meta │ │ │ │ ├── 007.jpg │ │ │ │ ├── 007.jpg.meta │ │ │ │ ├── 008.jpg │ │ │ │ ├── 008.jpg.meta │ │ │ │ ├── 009.jpg │ │ │ │ ├── 009.jpg.meta │ │ │ │ ├── Example Database.asset │ │ │ │ └── Example Database.asset.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Frame.meta │ │ │ │ └── Frame │ │ │ │ │ ├── Frame Material.mat │ │ │ │ │ ├── Frame Material.mat.meta │ │ │ │ │ ├── FrameLowerLeft.obj │ │ │ │ │ ├── FrameLowerLeft.obj.meta │ │ │ │ │ ├── FrameLowerRight.obj │ │ │ │ │ ├── FrameLowerRight.obj.meta │ │ │ │ │ ├── FrameUpperLeft.obj │ │ │ │ │ ├── FrameUpperLeft.obj.meta │ │ │ │ │ ├── FrameUpperRight.obj │ │ │ │ │ └── FrameUpperRight.obj.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── AugmentedImageVisualizer.prefab │ │ │ │ └── AugmentedImageVisualizer.prefab.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── AugmentedImage.unity │ │ │ │ └── AugmentedImage.unity.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── AugmentedImageExampleController.cs │ │ │ │ ├── AugmentedImageExampleController.cs.meta │ │ │ │ ├── AugmentedImageVisualizer.cs │ │ │ │ └── AugmentedImageVisualizer.cs.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── fit_to_scan.png │ │ │ │ ├── fit_to_scan.png.meta │ │ │ │ ├── frame_base.png │ │ │ │ └── frame_base.png.meta │ │ ├── CloudAnchors.meta │ │ ├── CloudAnchors │ │ │ ├── Configurations.meta │ │ │ ├── Configurations │ │ │ │ ├── CloudAnchorsSessionConfig.asset │ │ │ │ └── CloudAnchorsSessionConfig.asset.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── AnchorDiffuse.png │ │ │ │ ├── AnchorDiffuse.png.meta │ │ │ │ ├── AnchorDiffuseMaterial.mat │ │ │ │ ├── AnchorDiffuseMaterial.mat.meta │ │ │ │ ├── AnchorMaterial.mat │ │ │ │ ├── AnchorMaterial.mat.meta │ │ │ │ ├── StarDiffuse.png │ │ │ │ ├── StarDiffuse.png.meta │ │ │ │ ├── StarDiffuseMaterial.mat │ │ │ │ ├── StarDiffuseMaterial.mat.meta │ │ │ │ ├── StarMaterial.mat │ │ │ │ └── StarMaterial.mat.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ │ ├── Star_01.mtl │ │ │ │ ├── Star_01.mtl.meta │ │ │ │ ├── Star_01.obj │ │ │ │ ├── Star_01.obj.meta │ │ │ │ ├── anchor.mtl │ │ │ │ ├── anchor.mtl.meta │ │ │ │ ├── anchor.obj │ │ │ │ └── anchor.obj.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── Anchor.prefab │ │ │ │ ├── Anchor.prefab.meta │ │ │ │ ├── Player.prefab │ │ │ │ ├── Player.prefab.meta │ │ │ │ ├── Row.prefab │ │ │ │ ├── Row.prefab.meta │ │ │ │ ├── Star.prefab │ │ │ │ └── Star.prefab.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── CloudAnchors.unity │ │ │ │ └── CloudAnchors.unity.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── ARCoreWorldOriginHelper.cs │ │ │ │ ├── ARCoreWorldOriginHelper.cs.meta │ │ │ │ ├── ARKitHelper.cs │ │ │ │ ├── ARKitHelper.cs.meta │ │ │ │ ├── AnchorController.cs │ │ │ │ ├── AnchorController.cs.meta │ │ │ │ ├── CloudAnchorsExampleController.cs │ │ │ │ ├── CloudAnchorsExampleController.cs.meta │ │ │ │ ├── LocalPlayerController.cs │ │ │ │ ├── LocalPlayerController.cs.meta │ │ │ │ ├── MultiplatformMeshSelector.cs │ │ │ │ ├── MultiplatformMeshSelector.cs.meta │ │ │ │ ├── NetworkManagerUIController.cs │ │ │ │ └── NetworkManagerUIController.cs.meta │ │ │ ├── circle.png │ │ │ └── circle.png.meta │ │ ├── Common.meta │ │ ├── Common │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Andy.meta │ │ │ │ ├── Andy │ │ │ │ │ ├── Andy.obj │ │ │ │ │ ├── Andy.obj.meta │ │ │ │ │ ├── AndyBlobShadow.obj │ │ │ │ │ ├── AndyBlobShadow.obj.meta │ │ │ │ │ ├── AndyBlobShadow.png │ │ │ │ │ ├── AndyBlobShadow.png.meta │ │ │ │ │ ├── AndyDiffuseMaterial.mat │ │ │ │ │ ├── AndyDiffuseMaterial.mat.meta │ │ │ │ │ ├── AndyMaterialBlue.mat │ │ │ │ │ ├── AndyMaterialBlue.mat.meta │ │ │ │ │ ├── AndyMaterialGreen.mat │ │ │ │ │ ├── AndyMaterialGreen.mat.meta │ │ │ │ │ ├── AndyShadowMaterial.mat │ │ │ │ │ ├── AndyShadowMaterial.mat.meta │ │ │ │ │ ├── Andy_DiffuseLitBlue.png │ │ │ │ │ ├── Andy_DiffuseLitBlue.png.meta │ │ │ │ │ ├── Andy_DiffuseLitGreen.png │ │ │ │ │ └── Andy_DiffuseLitGreen.png.meta │ │ │ │ ├── PlaneGrid.mat │ │ │ │ ├── PlaneGrid.mat.meta │ │ │ │ ├── PointCloud.mat │ │ │ │ ├── PointCloud.mat.meta │ │ │ │ ├── Shaders.meta │ │ │ │ ├── Shaders │ │ │ │ │ ├── MobileDiffuseWithLightEstimation.shader │ │ │ │ │ ├── MobileDiffuseWithLightEstimation.shader.meta │ │ │ │ │ ├── MobileSpecularWithLightEstimation.shader │ │ │ │ │ ├── MobileSpecularWithLightEstimation.shader.meta │ │ │ │ │ ├── PlaneGrid.shader │ │ │ │ │ ├── PlaneGrid.shader.meta │ │ │ │ │ ├── PointCloud.shader │ │ │ │ │ └── PointCloud.shader.meta │ │ │ │ ├── Textures.meta │ │ │ │ └── Textures │ │ │ │ │ ├── AugmentedImageIcon.png │ │ │ │ │ ├── AugmentedImageIcon.png.meta │ │ │ │ │ ├── CloudAnchorIcon.png │ │ │ │ │ ├── CloudAnchorIcon.png.meta │ │ │ │ │ ├── ComputerVisionIcon.png │ │ │ │ │ ├── ComputerVisionIcon.png.meta │ │ │ │ │ ├── HelloARIcon.png │ │ │ │ │ ├── HelloARIcon.png.meta │ │ │ │ │ ├── TriGrid.png │ │ │ │ │ └── TriGrid.png.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── AndyBlue.prefab │ │ │ │ ├── AndyBlue.prefab.meta │ │ │ │ ├── AndyGreen.prefab │ │ │ │ ├── AndyGreen.prefab.meta │ │ │ │ ├── AndyGreenDiffuse.prefab │ │ │ │ ├── AndyGreenDiffuse.prefab.meta │ │ │ │ ├── DetectedPlaneVisualizer.prefab │ │ │ │ └── DetectedPlaneVisualizer.prefab.meta │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Regular.ttf.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── DetectedPlaneGenerator.cs │ │ │ │ ├── DetectedPlaneGenerator.cs.meta │ │ │ │ ├── DetectedPlaneVisualizer.cs │ │ │ │ ├── DetectedPlaneVisualizer.cs.meta │ │ │ │ ├── PointcloudVisualizer.cs │ │ │ │ └── PointcloudVisualizer.cs.meta │ │ ├── ComputerVision.meta │ │ ├── ComputerVision │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── EdgeDetectionBackground.shader │ │ │ │ ├── EdgeDetectionBackground.shader.meta │ │ │ │ ├── EdgeDetectionBackgroundMaterial.mat │ │ │ │ └── EdgeDetectionBackgroundMaterial.mat.meta │ │ │ ├── Plugins.meta │ │ │ ├── Plugins │ │ │ │ ├── libarcore_camera_utility.so │ │ │ │ ├── libarcore_camera_utility.so.meta │ │ │ │ ├── src.meta │ │ │ │ └── src │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.meta │ │ │ │ │ ├── arcore_camera_utility.zip │ │ │ │ │ └── arcore_camera_utility.zip.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── ComputerVision.unity │ │ │ │ └── ComputerVision.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── ComputerVisionController.cs │ │ │ │ ├── ComputerVisionController.cs.meta │ │ │ │ ├── EdgeDetector.cs │ │ │ │ ├── EdgeDetector.cs.meta │ │ │ │ ├── PointClickHandler.cs │ │ │ │ ├── PointClickHandler.cs.meta │ │ │ │ ├── TextureReader.cs │ │ │ │ ├── TextureReader.cs.meta │ │ │ │ ├── TextureReaderApi.cs │ │ │ │ └── TextureReaderApi.cs.meta │ │ ├── HelloAR.meta │ │ └── HelloAR │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ ├── HelloAR.unity │ │ │ └── HelloAR.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ ├── HelloARController.cs │ │ │ └── HelloARController.cs.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── ARCore Device.prefab │ │ ├── ARCore Device.prefab.meta │ │ ├── Environmental Light.prefab │ │ └── Environmental Light.prefab.meta │ ├── SDK.meta │ └── SDK │ │ ├── BuildResources.meta │ │ ├── BuildResources │ │ ├── cloud_anchor_manifest.aartemplate │ │ └── cloud_anchor_manifest.aartemplate.meta │ │ ├── InstantPreview.meta │ │ ├── InstantPreview │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── x86_64.meta │ │ │ └── x86_64 │ │ │ │ ├── arcore_instant_preview_shared.dll │ │ │ │ ├── arcore_instant_preview_shared.dll.meta │ │ │ │ ├── arcore_instant_preview_unity_plugin.bundle.meta │ │ │ │ ├── arcore_instant_preview_unity_plugin.bundle │ │ │ │ ├── Contents.meta │ │ │ │ └── Contents │ │ │ │ │ ├── MacOS.meta │ │ │ │ │ └── MacOS │ │ │ │ │ ├── arcore_instant_preview_unity_plugin │ │ │ │ │ ├── arcore_instant_preview_unity_plugin.meta │ │ │ │ │ ├── libarcore_instant_preview_shared.dylib │ │ │ │ │ └── libarcore_instant_preview_shared.dylib.meta │ │ │ │ ├── arcore_instant_preview_unity_plugin.dll │ │ │ │ └── arcore_instant_preview_unity_plugin.dll.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── InstantPreview.apk │ │ │ ├── InstantPreview.apk.meta │ │ │ ├── InstantPreviewInput.cs │ │ │ ├── InstantPreviewInput.cs.meta │ │ │ ├── InstantPreviewManager.cs │ │ │ ├── InstantPreviewManager.cs.meta │ │ │ ├── InstantPreviewTrackedPoseDriver.cs │ │ │ ├── InstantPreviewTrackedPoseDriver.cs.meta │ │ │ ├── InstantPreviewWarning.cs │ │ │ └── InstantPreviewWarning.cs.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ ├── ARBackground.mat │ │ ├── ARBackground.mat.meta │ │ ├── ARBackground.shader │ │ └── ARBackground.shader.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ ├── arcore_arkit_integration.mm │ │ ├── arcore_arkit_integration.mm.meta │ │ ├── arcore_client.aar │ │ ├── arcore_client.aar.meta │ │ ├── arcore_unity.aar │ │ ├── arcore_unity.aar.meta │ │ ├── google_ar_optional.aar │ │ ├── google_ar_optional.aar.meta │ │ ├── google_ar_required.aar │ │ ├── google_ar_required.aar.meta │ │ ├── unityandroidpermissions.aar │ │ ├── unityandroidpermissions.aar.meta │ │ ├── unitygar.aar │ │ └── unitygar.aar.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ ├── ARCoreBackgroundRenderer.cs │ │ ├── ARCoreBackgroundRenderer.cs.meta │ │ ├── ARCoreSession.cs │ │ ├── ARCoreSession.cs.meta │ │ ├── ARCoreSessionConfig.cs │ │ ├── ARCoreSessionConfig.cs.meta │ │ ├── Anchor.cs │ │ ├── Anchor.cs.meta │ │ ├── AndroidPermissionsManager.cs │ │ ├── AndroidPermissionsManager.cs.meta │ │ ├── AndroidPermissionsRequestResult.cs │ │ ├── AndroidPermissionsRequestResult.cs.meta │ │ ├── Api.meta │ │ ├── Api │ │ ├── NativeSession.cs │ │ ├── NativeSession.cs.meta │ │ ├── Types.meta │ │ ├── Types │ │ │ ├── ApiApkInstallStatusExtensions.cs │ │ │ ├── ApiApkInstallStatusExtensions.cs.meta │ │ │ ├── ApiApkInstallationStatus.cs │ │ │ ├── ApiApkInstallationStatus.cs.meta │ │ │ ├── ApiArStatus.cs │ │ │ ├── ApiArStatus.cs.meta │ │ │ ├── ApiArStatusExtensions.cs │ │ │ ├── ApiArStatusExtensions.cs.meta │ │ │ ├── ApiAvailability.cs │ │ │ ├── ApiAvailability.cs.meta │ │ │ ├── ApiAvailabilityExtensions.cs │ │ │ ├── ApiAvailabilityExtensions.cs.meta │ │ │ ├── ApiCameraFocusMode.cs │ │ │ ├── ApiCameraFocusMode.cs.meta │ │ │ ├── ApiCameraMetadata.cs │ │ │ ├── ApiCameraMetadata.cs.meta │ │ │ ├── ApiCloudAnchorMode.cs │ │ │ ├── ApiCloudAnchorMode.cs.meta │ │ │ ├── ApiCloudAnchorState.cs │ │ │ ├── ApiCloudAnchorState.cs.meta │ │ │ ├── ApiCloudAnchorStateExtensions.cs │ │ │ ├── ApiCloudAnchorStateExtensions.cs.meta │ │ │ ├── ApiConstants.cs │ │ │ ├── ApiConstants.cs.meta │ │ │ ├── ApiDisplayUvCoords.cs │ │ │ ├── ApiDisplayUvCoords.cs.meta │ │ │ ├── ApiDisplayUvCoordsExtensions.cs │ │ │ ├── ApiDisplayUvCoordsExtensions.cs.meta │ │ │ ├── ApiFeaturePointOrientationMode.cs │ │ │ ├── ApiFeaturePointOrientationMode.cs.meta │ │ │ ├── ApiFeaturePointOrientationModeExtensions.cs │ │ │ ├── ApiFeaturePointOrientationModeExtensions.cs.meta │ │ │ ├── ApiLightEstimateState.cs │ │ │ ├── ApiLightEstimateState.cs.meta │ │ │ ├── ApiLightEstimateStateExtensions.cs │ │ │ ├── ApiLightEstimateStateExtensions.cs.meta │ │ │ ├── ApiLightEstimationMode.cs │ │ │ ├── ApiLightEstimationMode.cs.meta │ │ │ ├── ApiPlaneFindingMode.cs │ │ │ ├── ApiPlaneFindingMode.cs.meta │ │ │ ├── ApiPlaneType.cs │ │ │ ├── ApiPlaneType.cs.meta │ │ │ ├── ApiPlaneTypeExtensions.cs │ │ │ ├── ApiPlaneTypeExtensions.cs.meta │ │ │ ├── ApiPoseData.cs │ │ │ ├── ApiPoseData.cs.meta │ │ │ ├── ApiPrestoConfig.cs │ │ │ ├── ApiPrestoConfig.cs.meta │ │ │ ├── ApiPrestoStatus.cs │ │ │ ├── ApiPrestoStatus.cs.meta │ │ │ ├── ApiPrestoStatusExtensions.cs │ │ │ ├── ApiPrestoStatusExtensions.cs.meta │ │ │ ├── ApiTrackableType.cs │ │ │ ├── ApiTrackableType.cs.meta │ │ │ ├── ApiTrackingState.cs │ │ │ ├── ApiTrackingState.cs.meta │ │ │ ├── ApiTrackingStateExtensions.cs │ │ │ ├── ApiTrackingStateExtensions.cs.meta │ │ │ ├── ApiTrackingStateXPExtensions.cs │ │ │ ├── ApiTrackingStateXPExtensions.cs.meta │ │ │ ├── ApiUpdateMode.cs │ │ │ └── ApiUpdateMode.cs.meta │ │ ├── Wrappers.meta │ │ └── Wrappers │ │ │ ├── AnchorApi.cs │ │ │ ├── AnchorApi.cs.meta │ │ │ ├── AugmentedImageApi.cs │ │ │ ├── AugmentedImageApi.cs.meta │ │ │ ├── AugmentedImageDatabaseApi.cs │ │ │ ├── AugmentedImageDatabaseApi.cs.meta │ │ │ ├── CameraApi.cs │ │ │ ├── CameraApi.cs.meta │ │ │ ├── CameraConfigApi.cs │ │ │ ├── CameraConfigApi.cs.meta │ │ │ ├── CameraConfigListApi.cs │ │ │ ├── CameraConfigListApi.cs.meta │ │ │ ├── CameraMetadataApi.cs │ │ │ ├── CameraMetadataApi.cs.meta │ │ │ ├── FrameApi.cs │ │ │ ├── FrameApi.cs.meta │ │ │ ├── HitTestApi.cs │ │ │ ├── HitTestApi.cs.meta │ │ │ ├── ImageApi.cs │ │ │ ├── ImageApi.cs.meta │ │ │ ├── LightEstimateApi.cs │ │ │ ├── LightEstimateApi.cs.meta │ │ │ ├── PlaneApi.cs │ │ │ ├── PlaneApi.cs.meta │ │ │ ├── PointApi.cs │ │ │ ├── PointApi.cs.meta │ │ │ ├── PointCloudApi.cs │ │ │ ├── PointCloudApi.cs.meta │ │ │ ├── PoseApi.cs │ │ │ ├── PoseApi.cs.meta │ │ │ ├── SessionApi.cs │ │ │ ├── SessionApi.cs.meta │ │ │ ├── SessionConfigApi.cs │ │ │ ├── SessionConfigApi.cs.meta │ │ │ ├── TrackableApi.cs │ │ │ ├── TrackableApi.cs.meta │ │ │ ├── TrackableListApi.cs │ │ │ └── TrackableListApi.cs.meta │ │ ├── ApkAvailabilityStatus.cs │ │ ├── ApkAvailabilityStatus.cs.meta │ │ ├── ApkInstallationStatus.cs │ │ ├── ApkInstallationStatus.cs.meta │ │ ├── Async.meta │ │ ├── Async │ │ ├── WaitForTaskCompletionYieldInstruction.cs │ │ └── WaitForTaskCompletionYieldInstruction.cs.meta │ │ ├── AsyncTask.cs │ │ ├── AsyncTask.cs.meta │ │ ├── AugmentedImage.cs │ │ ├── AugmentedImage.cs.meta │ │ ├── AugmentedImageDatabase.cs │ │ ├── AugmentedImageDatabase.cs.meta │ │ ├── AugmentedImageDatabaseEntry.cs │ │ ├── AugmentedImageDatabaseEntry.cs.meta │ │ ├── CameraConfig.cs │ │ ├── CameraConfig.cs.meta │ │ ├── CameraFocusMode.cs │ │ ├── CameraFocusMode.cs.meta │ │ ├── CameraImageBytes.cs │ │ ├── CameraImageBytes.cs.meta │ │ ├── CameraIntrinsics.cs │ │ ├── CameraIntrinsics.cs.meta │ │ ├── CameraMetadataTag.cs │ │ ├── CameraMetadataTag.cs.meta │ │ ├── CameraMetadataValue.cs │ │ ├── CameraMetadataValue.cs.meta │ │ ├── CloudAnchorResult.cs │ │ ├── CloudAnchorResult.cs.meta │ │ ├── CloudServiceResponse.cs │ │ ├── CloudServiceResponse.cs.meta │ │ ├── Deprecated.meta │ │ ├── Deprecated │ │ ├── TrackedPlane.cs │ │ ├── TrackedPlane.cs.meta │ │ ├── TrackedPoint.cs │ │ ├── TrackedPoint.cs.meta │ │ ├── TrackedPointOrientationMode.cs │ │ └── TrackedPointOrientationMode.cs.meta │ │ ├── DetectedPlane.cs │ │ ├── DetectedPlane.cs.meta │ │ ├── DetectedPlaneFindingMode.cs │ │ ├── DetectedPlaneFindingMode.cs.meta │ │ ├── DetectedPlaneType.cs │ │ ├── DetectedPlaneType.cs.meta │ │ ├── DisplayUvCoords.cs │ │ ├── DisplayUvCoords.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── ARCoreIOSSupportHelper.cs │ │ ├── ARCoreIOSSupportHelper.cs.meta │ │ ├── ARCoreIOSSupportPreprocessBuild.cs │ │ ├── ARCoreIOSSupportPreprocessBuild.cs.meta │ │ ├── ARCoreProjectSettingsWindow.cs │ │ ├── ARCoreProjectSettingsWindow.cs.meta │ │ ├── ARCoreSupportedPreprocessBuild.cs │ │ ├── ARCoreSupportedPreprocessBuild.cs.meta │ │ ├── AssetHelper.cs │ │ ├── AssetHelper.cs.meta │ │ ├── AugmentedImageDatabaseContextMenu.cs │ │ ├── AugmentedImageDatabaseContextMenu.cs.meta │ │ ├── AugmentedImageDatabaseInspector.cs │ │ ├── AugmentedImageDatabaseInspector.cs.meta │ │ ├── AugmentedImageDatabasePreprocessBuild.cs │ │ ├── AugmentedImageDatabasePreprocessBuild.cs.meta │ │ ├── BackgroundJobExecutor.cs │ │ ├── BackgroundJobExecutor.cs.meta │ │ ├── CloudAnchorPreprocessBuild.cs │ │ ├── CloudAnchorPreprocessBuild.cs.meta │ │ ├── ExampleBuildHelper.cs │ │ ├── ExampleBuildHelper.cs.meta │ │ ├── ExamplePreprocessBuild.cs │ │ ├── ExamplePreprocessBuild.cs.meta │ │ ├── PreprocessBuildBase.cs │ │ ├── PreprocessBuildBase.cs.meta │ │ ├── RequiredOptionalPreprocessBuild.cs │ │ └── RequiredOptionalPreprocessBuild.cs.meta │ │ ├── EnvironmentalLight.cs │ │ ├── EnvironmentalLight.cs.meta │ │ ├── ExperimentSupport.meta │ │ ├── ExperimentSupport │ │ ├── ExperimentBase.cs │ │ ├── ExperimentBase.cs.meta │ │ ├── ExperimentManager.cs │ │ └── ExperimentManager.cs.meta │ │ ├── FeaturePoint.cs │ │ ├── FeaturePoint.cs.meta │ │ ├── FeaturePointOrientationMode.cs │ │ ├── FeaturePointOrientationMode.cs.meta │ │ ├── Frame.cs │ │ ├── Frame.cs.meta │ │ ├── LightEstimate.cs │ │ ├── LightEstimate.cs.meta │ │ ├── LightEstimateState.cs │ │ ├── LightEstimateState.cs.meta │ │ ├── Managers.meta │ │ ├── Managers │ │ ├── ARCoreAndroidLifecycleManager.cs │ │ ├── ARCoreAndroidLifecycleManager.cs.meta │ │ ├── ARCoreIOSLifecycleManager.cs │ │ ├── ARCoreIOSLifecycleManager.cs.meta │ │ ├── ARPrestoCallbackManager.cs │ │ ├── ARPrestoCallbackManager.cs.meta │ │ ├── CloudServiceManager.cs │ │ ├── CloudServiceManager.cs.meta │ │ ├── ILifecycleManager.cs │ │ ├── ILifecycleManager.cs.meta │ │ ├── LifecycleManager.cs │ │ ├── LifecycleManager.cs.meta │ │ ├── TrackableManager.cs │ │ └── TrackableManager.cs.meta │ │ ├── PointCloudPoint.cs │ │ ├── PointCloudPoint.cs.meta │ │ ├── Session.cs │ │ ├── Session.cs.meta │ │ ├── SessionStatus.cs │ │ ├── SessionStatus.cs.meta │ │ ├── SessionStatusExtensions.cs │ │ ├── SessionStatusExtensions.cs.meta │ │ ├── Trackable.cs │ │ ├── Trackable.cs.meta │ │ ├── TrackableHit.cs │ │ ├── TrackableHit.cs.meta │ │ ├── TrackableHitFlags.cs │ │ ├── TrackableHitFlags.cs.meta │ │ ├── TrackableQueryFilter.cs │ │ ├── TrackableQueryFilter.cs.meta │ │ ├── TrackingState.cs │ │ ├── TrackingState.cs.meta │ │ ├── Utility.meta │ │ ├── Utility │ │ ├── ARCoreProjectSettings.cs │ │ ├── ARCoreProjectSettings.cs.meta │ │ ├── ARDebug.cs │ │ ├── ARDebug.cs.meta │ │ ├── ConversionHelper.cs │ │ ├── ConversionHelper.cs.meta │ │ ├── DllImportNoop.cs │ │ ├── DllImportNoop.cs.meta │ │ ├── IntPtrEqualityComparer.cs │ │ ├── IntPtrEqualityComparer.cs.meta │ │ ├── MarshalingHelper.cs │ │ ├── MarshalingHelper.cs.meta │ │ ├── ShellHelper.cs │ │ ├── ShellHelper.cs.meta │ │ ├── SuppressMemoryAllocationErrorAttribute.cs │ │ ├── SuppressMemoryAllocationErrorAttribute.cs.meta │ │ ├── ThrottledLogMessage.cs │ │ └── ThrottledLogMessage.cs.meta │ │ ├── XPAnchor.cs │ │ ├── XPAnchor.cs.meta │ │ ├── XPSession.cs │ │ ├── XPSession.cs.meta │ │ ├── XPSessionStatus.cs │ │ ├── XPSessionStatus.cs.meta │ │ ├── XPTrackingState.cs │ │ └── XPTrackingState.cs.meta ├── Materials.meta ├── Materials │ ├── BlackFrame.mat │ ├── BlackFrame.mat.meta │ ├── Frame.jpg │ ├── Frame.jpg.meta │ ├── FrameAlpha.jpg │ ├── FrameAlpha.jpg.meta │ ├── Mask.mat │ ├── Mask.mat.meta │ ├── Portal.mat │ ├── Portal.mat.meta │ ├── TargetVertical.mat │ ├── TargetVertical.mat.meta │ ├── Transmo.mat │ └── Transmo.mat.meta ├── PlayServicesResolver.meta ├── PlayServicesResolver │ ├── Editor.meta │ └── Editor │ │ ├── Google.IOSResolver_v1.2.95.0.dll │ │ ├── Google.IOSResolver_v1.2.95.0.dll.meta │ │ ├── Google.JarResolver_v1.2.95.0.dll │ │ ├── Google.JarResolver_v1.2.95.0.dll.meta │ │ ├── Google.VersionHandler.dll │ │ ├── Google.VersionHandler.dll.meta │ │ ├── Google.VersionHandlerImpl_v1.2.95.0.dll │ │ ├── Google.VersionHandlerImpl_v1.2.95.0.dll.meta │ │ ├── play-services-resolver_v1.2.95.0.txt │ │ └── play-services-resolver_v1.2.95.0.txt.meta ├── Prefabs.meta ├── Prefabs │ ├── PortalSquare48.fbx │ ├── PortalSquare48.fbx.meta │ ├── PortalSquareMask.fbx │ ├── PortalSquareMask.fbx.meta │ ├── TRANSMO_EXP_015.fbx │ ├── TRANSMO_EXP_015.fbx.meta │ ├── TRANSMO_PORTAL_EXP_002.obj │ ├── TRANSMO_PORTAL_EXP_002.obj.meta │ ├── TransmoPrefab.prefab │ ├── TransmoPrefab.prefab.meta │ ├── TransmoPrefabAnimated.prefab │ └── TransmoPrefabAnimated.prefab.meta ├── Resources.meta ├── Resources │ ├── ICON.meta │ ├── ICON │ │ ├── icon.png │ │ └── icon.png.meta │ ├── PORTAL.meta │ ├── PORTAL │ │ ├── A_TRANSMO_PORTAL_BAKE_001_0099.png │ │ ├── A_TRANSMO_PORTAL_BAKE_001_0099.png.meta │ │ ├── TRANSMO_PORTAL_BAKE_001_0099.png │ │ └── TRANSMO_PORTAL_BAKE_001_0099.png.meta │ ├── TRANSMO_BAKE_004.meta │ └── TRANSMO_BAKE_004 │ │ ├── A_TRANSMO_BAKE_004_0000.png │ │ ├── A_TRANSMO_BAKE_004_0000.png.meta │ │ ├── A_TRANSMO_BAKE_004_0001.png │ │ ├── A_TRANSMO_BAKE_004_0001.png.meta │ │ ├── A_TRANSMO_BAKE_004_0002.png │ │ ├── A_TRANSMO_BAKE_004_0002.png.meta │ │ ├── A_TRANSMO_BAKE_004_0003.png │ │ ├── A_TRANSMO_BAKE_004_0003.png.meta │ │ ├── A_TRANSMO_BAKE_004_0004.png │ │ ├── A_TRANSMO_BAKE_004_0004.png.meta │ │ ├── A_TRANSMO_BAKE_004_0005.png │ │ ├── A_TRANSMO_BAKE_004_0005.png.meta │ │ ├── A_TRANSMO_BAKE_004_0006.png │ │ ├── A_TRANSMO_BAKE_004_0006.png.meta │ │ ├── A_TRANSMO_BAKE_004_0007.png │ │ ├── A_TRANSMO_BAKE_004_0007.png.meta │ │ ├── A_TRANSMO_BAKE_004_0008.png │ │ ├── A_TRANSMO_BAKE_004_0008.png.meta │ │ ├── A_TRANSMO_BAKE_004_0009.png │ │ ├── A_TRANSMO_BAKE_004_0009.png.meta │ │ ├── A_TRANSMO_BAKE_004_0010.png │ │ ├── A_TRANSMO_BAKE_004_0010.png.meta │ │ ├── TRANSMO_BAKE_004_0000.png │ │ ├── TRANSMO_BAKE_004_0000.png.meta │ │ ├── TRANSMO_BAKE_004_0001.png │ │ ├── TRANSMO_BAKE_004_0001.png.meta │ │ ├── TRANSMO_BAKE_004_0002.png │ │ ├── TRANSMO_BAKE_004_0002.png.meta │ │ ├── TRANSMO_BAKE_004_0003.png │ │ ├── TRANSMO_BAKE_004_0003.png.meta │ │ ├── TRANSMO_BAKE_004_0004.png │ │ ├── TRANSMO_BAKE_004_0004.png.meta │ │ ├── TRANSMO_BAKE_004_0005.png │ │ ├── TRANSMO_BAKE_004_0005.png.meta │ │ ├── TRANSMO_BAKE_004_0006.png │ │ ├── TRANSMO_BAKE_004_0006.png.meta │ │ ├── TRANSMO_BAKE_004_0007.png │ │ ├── TRANSMO_BAKE_004_0007.png.meta │ │ ├── TRANSMO_BAKE_004_0008.png │ │ ├── TRANSMO_BAKE_004_0008.png.meta │ │ ├── TRANSMO_BAKE_004_0009.png │ │ ├── TRANSMO_BAKE_004_0009.png.meta │ │ ├── TRANSMO_BAKE_004_0010.png │ │ └── TRANSMO_BAKE_004_0010.png.meta ├── Scenes.meta ├── Scenes │ ├── Transmo.unity │ └── Transmo.unity.meta ├── Scripts.meta ├── Scripts │ ├── FirstFrameScale.cs │ ├── FirstFrameScale.cs.meta │ ├── FirstFrameTransparency.cs │ ├── FirstFrameTransparency.cs.meta │ ├── IORenderTransmo.cs │ ├── IORenderTransmo.cs.meta │ ├── PerspectiveBlendLine.cs │ ├── PerspectiveBlendLine.cs.meta │ ├── TransmoController.cs │ ├── TransmoController.cs.meta │ ├── TransmoObject.cs │ └── TransmoObject.cs.meta ├── Settings.StyleCop ├── Settings.StyleCop.meta ├── Shaders.meta ├── Shaders │ ├── Mask.shader │ ├── Mask.shader.meta │ ├── Transparent.shader │ └── Transparent.shader.meta ├── TargetDatabase.meta └── TargetDatabase │ ├── TransmoTarget.asset │ ├── TransmoTarget.asset.meta │ ├── TransmoTargetSessionConfig.asset │ ├── TransmoTargetSessionConfig.asset.meta │ ├── Vertical.jpg │ └── Vertical.jpg.meta ├── CONTRIBUTING.md ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md └── UnityPackageManager └── manifest.json /.gitignore: -------------------------------------------------------------------------------- 1 | Library/ 2 | Temp/ 3 | *.csproj 4 | *.sln 5 | *.apk 6 | -------------------------------------------------------------------------------- /Assets/GoogleARCore.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed08ac4d4dffe4edfb4261c21e585327 3 | folderAsset: yes 4 | timeCreated: 1545858061 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/CLI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25e049dca694845dfac992220b14bc57 3 | folderAsset: yes 4 | timeCreated: 1520796615 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/CLI/augmented_image_cli_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/CLI/augmented_image_cli_linux -------------------------------------------------------------------------------- /Assets/GoogleARCore/CLI/augmented_image_cli_linux.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 227a08e24deb141b0955ea1b61d8c6f5 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/CLI/augmented_image_cli_osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/CLI/augmented_image_cli_osx -------------------------------------------------------------------------------- /Assets/GoogleARCore/CLI/augmented_image_cli_osx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28c3817e225ff4db8a467158072ea34f 3 | timeCreated: 1520796615 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/CLI/augmented_image_cli_win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/CLI/augmented_image_cli_win.exe -------------------------------------------------------------------------------- /Assets/GoogleARCore/CLI/augmented_image_cli_win.exe.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bd2f8670f7a74d549050c3b9c77f34b 3 | timeCreated: 1521561438 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Configurations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b1cded3497844b35a3bfac966b428f2 3 | folderAsset: yes 4 | timeCreated: 1496364746 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Configurations/DefaultSessionConfig.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_GameObject: {fileID: 0} 9 | m_Enabled: 1 10 | m_EditorHideFlags: 0 11 | m_Script: {fileID: 11500000, guid: 53ac32fab2599402fb6d154adf4c1e40, type: 3} 12 | m_Name: DefaultSessionConfig 13 | m_EditorClassIdentifier: 14 | MatchCameraFramerate: 1 15 | PlaneFindingMode: 1 16 | EnableLightEstimation: 1 17 | EnableCloudAnchor: 0 18 | AugmentedImageDatabase: {fileID: 0} 19 | CameraFocusMode: 0 20 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Configurations/DefaultSessionConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9586a84d6c32f46b6ab7aeb6042f160d 3 | timeCreated: 1510878073 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3efa82e8eae0d4459a41fa9c799ea3f8 3 | folderAsset: yes 4 | timeCreated: 1523991858 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Editor/ARCoreiOSDependencies.template: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Editor/ARCoreiOSDependencies.template.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7de9ba618cf54abba8368ed7a7274f7 3 | timeCreated: 1530633725 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 165068a6255814b639ac5e322836d8bb 3 | folderAsset: yes 4 | timeCreated: 1512499966 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35466e432dc664b7ea2ed350145852ba 3 | folderAsset: yes 4 | timeCreated: 1524595494 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Configurations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9a3be855a4764db0bbafd8b5b814485 3 | folderAsset: yes 4 | timeCreated: 1524399483 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Configurations/AugmentedImagesSessionConfig.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_GameObject: {fileID: 0} 9 | m_Enabled: 1 10 | m_EditorHideFlags: 0 11 | m_Script: {fileID: 11500000, guid: 53ac32fab2599402fb6d154adf4c1e40, type: 3} 12 | m_Name: AugmentedImagesSessionConfig 13 | m_EditorClassIdentifier: 14 | MatchCameraFramerate: 1 15 | PlaneFindingMode: 0 16 | EnableLightEstimation: 0 17 | AugmentedImageDatabase: {fileID: 11400000, guid: c3e077e231877401e8d2163ebbbc9dc6, 18 | type: 2} 19 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Configurations/AugmentedImagesSessionConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3a0819a20dbf48e0b82c8d8d31b9d68 3 | timeCreated: 1524065686 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfdf244cf3ce84db9b34306e9d0fa320 3 | folderAsset: yes 4 | timeCreated: 1520970847 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/AugmentedImage/Images/000.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/AugmentedImage/Images/001.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/AugmentedImage/Images/002.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/AugmentedImage/Images/003.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/AugmentedImage/Images/004.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/AugmentedImage/Images/005.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/AugmentedImage/Images/006.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/AugmentedImage/Images/007.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/AugmentedImage/Images/008.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/AugmentedImage/Images/009.jpg -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Images/Example Database.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3e077e231877401e8d2163ebbbc9dc6 3 | timeCreated: 1524368478 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0765badd6be76465f9edef090035e863 3 | folderAsset: yes 4 | timeCreated: 1521227350 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db5073a2d9a484f4f8e5d950252994a2 3 | folderAsset: yes 4 | timeCreated: 1524400413 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Materials/Frame/Frame Material.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 457696d2cf54b4f558c12777332919a2 3 | timeCreated: 1524400216 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 2100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15cfe1567fbce4013b0c627e2561300e 3 | folderAsset: yes 4 | timeCreated: 1521227251 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Prefabs/AugmentedImageVisualizer.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85a5b6187b6924bd5adcdffee036da34 3 | timeCreated: 1521060289 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 839264418f4bc4d3a925bf0f09cbcd00 3 | folderAsset: yes 4 | timeCreated: 1521227392 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Scenes/AugmentedImage.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be567d47d3ab94b3badc5b211f535a24 3 | timeCreated: 1520818627 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f353bb813dac4be1b919c9ffe104ed9 3 | folderAsset: yes 4 | timeCreated: 1521227216 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Scripts/AugmentedImageExampleController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 492cc0813c4064ed79f2671a7c2633fc 3 | timeCreated: 1521315943 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Scripts/AugmentedImageVisualizer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 655793353707240a195aee929b80d41a 3 | timeCreated: 1521058274 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3938b07ad75fd4c6d99c99bd772c689c 3 | folderAsset: yes 4 | timeCreated: 1524399947 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Textures/fit_to_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/AugmentedImage/Textures/fit_to_scan.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/AugmentedImage/Textures/frame_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/AugmentedImage/Textures/frame_base.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8882333b591f04286b417ab47ff34c20 3 | folderAsset: yes 4 | timeCreated: 1524520852 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Configurations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0902389cd67e2444f8b4b2e35fa0d3af 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Configurations/CloudAnchorsSessionConfig.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_GameObject: {fileID: 0} 9 | m_Enabled: 1 10 | m_EditorHideFlags: 0 11 | m_Script: {fileID: 11500000, guid: 53ac32fab2599402fb6d154adf4c1e40, type: 3} 12 | m_Name: CloudAnchorsSessionConfig 13 | m_EditorClassIdentifier: 14 | MatchCameraFramerate: 1 15 | PlaneFindingMode: 1 16 | EnableLightEstimation: 1 17 | EnableCloudAnchor: 1 18 | AugmentedImageDatabase: {fileID: 0} 19 | CameraFocusMode: 0 20 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Configurations/CloudAnchorsSessionConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2df5ff2f38acc4159832322e57364bfa 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1f2637455d1a421788a89121c48e8cd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Materials/AnchorDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/CloudAnchors/Materials/AnchorDiffuse.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Materials/AnchorDiffuseMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e40b2192b95b84c69957315713a24e63 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Materials/AnchorMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0cb4f0cb1433247d08a6a7bd18334cb5 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarDiffuse.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarDiffuseMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b079db6ee1704c53b8ddfcb4b456b0f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarMaterial.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: StarMaterial 10 | m_Shader: {fileID: 4800000, guid: c4790e12ed76c486d9fd9d9ccefecb25, type: 3} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _MainTex: 22 | m_Texture: {fileID: 2800000, guid: ce5ebecd4d7a345df86f06d5730f1156, type: 3} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | m_Floats: [] 26 | m_Colors: [] 27 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Materials/StarMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec3a918bbcac8403db73f7ef3fb1b51c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92fb978dc8e38454fb9a5c124b18542b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.mtl: -------------------------------------------------------------------------------- 1 | newmtl blinn2SG 2 | Ns 92.156863 3 | Ka 0.000000 0.000000 0.000000 4 | Kd 1.000000 0.830000 0.040000 5 | Ks 0.500000 0.500000 0.500000 6 | Ke 0.000000 0.000000 0.000000 7 | Ni 1.000000 8 | d 0.000000 9 | illum 2 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Models/Star_01.mtl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da5495045594d4fc59292bcc9d9ffbb1 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Models/anchor.mtl: -------------------------------------------------------------------------------- 1 | newmtl lambert2SG 2 | Ns 94.117647 3 | Ka 0.000000 0.000000 0.000000 4 | Kd 0.040000 0.040000 0.050000 5 | Ks 0.500000 0.500000 0.500000 6 | Ke 0.000000 0.000000 0.000000 7 | Ni 1.000000 8 | d 1.000000 9 | illum 2 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Models/anchor.mtl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7d2f62dcb2a44d2cb30241db31fe17a 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb8c3c006f78f426dbcf847b40889b2b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Anchor.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7e51cffc46904f65957fa3aeb255467 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Player.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d4ec7a0b0d514d24a21e1590418a679 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Row.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4073389a0b5c441279cad38804356fab 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Prefabs/Star.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c162c528b139240d0881c95be8c04f2b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad1c36489614b41a48cbb57ae747dc32 3 | folderAsset: yes 4 | timeCreated: 1522721202 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scenes/CloudAnchors.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83fb41cc294e74bdea57537befa00ffc 3 | timeCreated: 1522721305 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25553f78c2e0f412d8ff1f97f6c1ce75 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scripts/ARCoreWorldOriginHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da6a36370182b4b018a11b0c0722ddf2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scripts/ARKitHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2716995c5db62458e8a37c18f5c1ec3e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scripts/AnchorController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8147b748caa2e47d998816d007236d87 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scripts/CloudAnchorsExampleController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ea0532ba163745069c0894560a451b1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scripts/LocalPlayerController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 402737a5186cd48cd86798c77074db79 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scripts/MultiplatformMeshSelector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b3d02d0ba953447b8e84daa63111123 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/Scripts/NetworkManagerUIController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2856232da2a342e48b4ef29161229c5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/CloudAnchors/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/CloudAnchors/circle.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa41f258cad6a4036bf51f9dd04fd11d 3 | folderAsset: yes 4 | timeCreated: 1524019728 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1549424938f6d45d885684b5ac3ee149 3 | folderAsset: yes 4 | timeCreated: 1501723767 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Andy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2de7f0b0867bc4225b9115a2c34effa5 3 | folderAsset: yes 4 | timeCreated: 1524038521 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyBlobShadow.obj: -------------------------------------------------------------------------------- 1 | # This file uses centimeters as units for non-parametric coordinates. 2 | 3 | g default 4 | v -0.100000 -0.000000 0.100000 5 | v 0.100000 -0.000000 0.100000 6 | v -0.100000 0.000000 -0.100000 7 | v 0.100000 0.000000 -0.100000 8 | vt 0.000000 0.000000 9 | vt 1.000000 0.000000 10 | vt 0.000000 1.000000 11 | vt 1.000000 1.000000 12 | vn 0.000000 1.000000 0.000000 13 | vn 0.000000 1.000000 0.000000 14 | vn 0.000000 1.000000 0.000000 15 | vn 0.000000 1.000000 0.000000 16 | s off 17 | g AndyBlobShadow_GEO 18 | f 4/4/1 3/3/2 1/1/3 2/2/4 19 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyBlobShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyBlobShadow.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyDiffuseMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ba1a07a228bd46a188bdc2dc6c52a16 3 | timeCreated: 1503349636 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 2100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyMaterialBlue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3eb6e3fe2d69cfa40923e4627d60c98f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyMaterialGreen.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 572e1e52514434db5a8ce3957db3b3fd 3 | timeCreated: 1503349636 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 2100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Andy/AndyShadowMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0130982ecc98e47e4a78ec2f85196be5 3 | timeCreated: 1503351067 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 2100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Andy/Andy_DiffuseLitBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/Common/Materials/Andy/Andy_DiffuseLitBlue.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Andy/Andy_DiffuseLitGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/Common/Materials/Andy/Andy_DiffuseLitGreen.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/PlaneGrid.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92b1ca249edc047509db2c7bc05789ef 3 | timeCreated: 1501723608 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 2100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/PointCloud.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb4fbd1b92e244df2bc6f43deb7a57a2 3 | timeCreated: 1502314565 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 2100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a7ac6b7f5cf14006829094b5816e6c5 3 | folderAsset: yes 4 | timeCreated: 1524038521 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Shaders/MobileDiffuseWithLightEstimation.shader: -------------------------------------------------------------------------------- 1 | Shader "ARCore/DiffuseWithLightEstimation" 2 | { 3 | Properties 4 | { 5 | _MainTex ("Base (RGB)", 2D) = "white" {} 6 | } 7 | 8 | SubShader 9 | { 10 | Tags { "RenderType"="Opaque" } 11 | LOD 150 12 | 13 | CGPROGRAM 14 | #pragma surface surf Lambert noforwardadd finalcolor:lightEstimation 15 | 16 | sampler2D _MainTex; 17 | fixed3 _GlobalColorCorrection; 18 | 19 | struct Input 20 | { 21 | float2 uv_MainTex; 22 | }; 23 | 24 | void lightEstimation(Input IN, SurfaceOutput o, inout fixed4 color) 25 | { 26 | color.rgb *= _GlobalColorCorrection; 27 | } 28 | 29 | void surf (Input IN, inout SurfaceOutput o) 30 | { 31 | fixed4 c = tex2D(_MainTex, IN.uv_MainTex); 32 | o.Albedo = c.rgb; 33 | o.Alpha = c.a; 34 | } 35 | ENDCG 36 | } 37 | 38 | Fallback "Mobile/VertexLit" 39 | } 40 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Shaders/MobileDiffuseWithLightEstimation.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4790e12ed76c486d9fd9d9ccefecb25 3 | timeCreated: 1503343346 4 | licenseType: Pro 5 | ShaderImporter: 6 | externalObjects: {} 7 | defaultTextures: [] 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Shaders/MobileSpecularWithLightEstimation.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a07f07d8405049668f17fe8c32b7dc0 3 | timeCreated: 1503358089 4 | licenseType: Pro 5 | ShaderImporter: 6 | externalObjects: {} 7 | defaultTextures: [] 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Shaders/PlaneGrid.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3570630f31ec4223a549b595d8cbb53 3 | timeCreated: 1502740659 4 | licenseType: Pro 5 | ShaderImporter: 6 | externalObjects: {} 7 | defaultTextures: [] 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Shaders/PointCloud.shader: -------------------------------------------------------------------------------- 1 | // Don't remove the following line. It is used to bypass Unity 2 | // upgrader change. This is necessary to make sure the shader 3 | // continues to compile on Unity 5.2 4 | // UNITY_SHADER_NO_UPGRADE 5 | Shader "ARCore/PointCloud" { 6 | Properties{ 7 | _PointSize("Point Size", Float) = 5.0 8 | _Color ("PointCloud Color", Color) = (0.121, 0.737, 0.823, 1.0) 9 | } 10 | SubShader { 11 | Pass { 12 | CGPROGRAM 13 | #pragma vertex vert 14 | #pragma fragment frag 15 | 16 | #include "UnityCG.cginc" 17 | 18 | struct appdata 19 | { 20 | float4 vertex : POSITION; 21 | }; 22 | 23 | struct v2f 24 | { 25 | float4 vertex : SV_POSITION; 26 | float size : PSIZE; 27 | }; 28 | 29 | float _PointSize; 30 | fixed4 _Color; 31 | 32 | v2f vert (appdata v) 33 | { 34 | v2f o; 35 | o.vertex = mul(UNITY_MATRIX_MVP, v.vertex); 36 | o.size = _PointSize; 37 | 38 | return o; 39 | } 40 | 41 | fixed4 frag (v2f i) : SV_Target 42 | { 43 | return _Color; 44 | } 45 | ENDCG 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Shaders/PointCloud.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d889a88b50cc4d65b025d5068d78df6 3 | timeCreated: 1502314526 4 | licenseType: Pro 5 | ShaderImporter: 6 | externalObjects: {} 7 | defaultTextures: [] 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7432e7a07e18144ebaebf4174793acc7 3 | folderAsset: yes 4 | timeCreated: 1524038521 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Textures/AugmentedImageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/Common/Materials/Textures/AugmentedImageIcon.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Textures/CloudAnchorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/Common/Materials/Textures/CloudAnchorIcon.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Textures/ComputerVisionIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/Common/Materials/Textures/ComputerVisionIcon.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Textures/HelloARIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/Common/Materials/Textures/HelloARIcon.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Materials/Textures/TriGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/Common/Materials/Textures/TriGrid.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a49f0770e9fb042259c00241828b5858 3 | folderAsset: yes 4 | timeCreated: 1501206109 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Prefabs/AndyBlue.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b27e8d7fe70df464188ea5dcf2af0bb3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Prefabs/AndyGreen.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 242a320930b81430ba610f94f9b760c8 3 | timeCreated: 1503351405 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Prefabs/AndyGreenDiffuse.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63e9325810cb14b9e8e0590d57d87afb 3 | timeCreated: 1503351405 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Prefabs/DetectedPlaneVisualizer.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a35c744e5010405c847fad90282d2be 3 | timeCreated: 1502832523 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/Common/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Roboto-Regular.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f66655b38428d40769e9e41ee237cbdc 3 | timeCreated: 1503346684 4 | licenseType: Free 5 | TrueTypeFontImporter: 6 | externalObjects: {} 7 | serializedVersion: 4 8 | fontSize: 16 9 | forceTextureCase: -2 10 | characterSpacing: 0 11 | characterPadding: 1 12 | includeFontData: 1 13 | fontName: Roboto 14 | fontNames: 15 | - Roboto 16 | fallbackFontReferences: [] 17 | customCharacters: 18 | fontRenderingMode: 0 19 | ascentCalculationMode: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66f6c6b339347425a957ec956c9fe931 3 | folderAsset: yes 4 | timeCreated: 1524019810 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c669a4cc43174caea1a3748b76f2652 3 | timeCreated: 1524423123 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/DetectedPlaneVisualizer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23e3f20de6c2e405a93736a38f74b0fb 3 | timeCreated: 1502338316 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/Common/Scripts/PointcloudVisualizer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d5645b79cc5e4251827ffe171ed4658 3 | timeCreated: 1502314583 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7af44c1128a614f72a62d613e2c5b61d 3 | folderAsset: yes 4 | timeCreated: 1512755870 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bec192a39069f44f8ae625bd826b4e53 3 | folderAsset: yes 4 | timeCreated: 1501723767 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Materials/EdgeDetectionBackground.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7004efaaedb14dfcba62eea5c70c9d2 3 | timeCreated: 1520026171 4 | licenseType: Pro 5 | ShaderImporter: 6 | externalObjects: {} 7 | defaultTextures: [] 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Materials/EdgeDetectionBackgroundMaterial.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: EdgeDetectionBackgroundMaterial 10 | m_Shader: {fileID: 4800000, guid: b7004efaaedb14dfcba62eea5c70c9d2, type: 3} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _ImageTex: 22 | m_Texture: {fileID: 0} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | - _MainTex: 26 | m_Texture: {fileID: 0} 27 | m_Scale: {x: 1, y: 1} 28 | m_Offset: {x: 0, y: 0} 29 | m_Floats: [] 30 | m_Colors: [] 31 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Materials/EdgeDetectionBackgroundMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44aa46aeaaf4d46a79e18f3e2da31ccc 3 | timeCreated: 1512581681 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 2100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c8e17f48a997417eac4ae975493b6a1 3 | folderAsset: yes 4 | timeCreated: 1511980390 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Plugins/libarcore_camera_utility.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/ComputerVision/Plugins/libarcore_camera_utility.so -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Plugins/src.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88691640f915f42f6937d8d0122d69bd 3 | folderAsset: yes 4 | timeCreated: 1513277705 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe5fc815b621d4801ac251a35d054ac1 3 | timeCreated: 1513277715 4 | licenseType: Pro 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/arcore_camera_utility.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/arcore_camera_utility.zip -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/arcore_camera_utility.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 218bec0cf31a949a18e480486444ca54 3 | timeCreated: 1513277705 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed63ed01b7e4c427d8d897825c5ed5dd 3 | folderAsset: yes 4 | timeCreated: 1501206008 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Scenes/ComputerVision.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ef0f7f7f2c7b4285b707265348bbffd 3 | timeCreated: 1512755571 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02f1f705271f6408cb81efb900b3b2bb 3 | folderAsset: yes 4 | timeCreated: 1501723747 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Scripts/ComputerVisionController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0471ee42f4eac4098805c8b4aae4875c 3 | timeCreated: 1512755448 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Scripts/EdgeDetector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4efa5fefaf4064b6f944e9c9d1803813 3 | timeCreated: 1512175258 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Scripts/PointClickHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8d892bd63f844f019c3cfe201f6ea03 3 | timeCreated: 1530903374 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Scripts/TextureReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8ba03f2a23f74384ac6625e269b5f50 3 | timeCreated: 1512525798 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Scripts/TextureReaderApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6c5057504d004df59cb05eeea4454ae 3 | timeCreated: 1511999811 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fc78f95b5b944e5fa1707fdc27c441a 3 | folderAsset: yes 4 | timeCreated: 1512755448 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70b98779a4ac04ee98945fbc05edc737 3 | folderAsset: yes 4 | timeCreated: 1501206008 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/Scenes/HelloAR.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6a6fa04348cb45c9b0221eb19c946da 3 | timeCreated: 1501723683 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bdaf1631fbbf45988be2a4ea863865f 3 | folderAsset: yes 4 | timeCreated: 1501723747 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/Scripts/HelloARController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26074b15f9c13404d858bfedb8b8c00c 3 | timeCreated: 1502419589 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a00108229b1e04acd805e57abcdff773 3 | folderAsset: yes 4 | timeCreated: 1492558533 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Prefabs/ARCore Device.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c10877f7cd5764de18d46d7b777d1faa 3 | timeCreated: 1501460862 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/Prefabs/Environmental Light.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf498fc35b538884db557f7a9a2c0ef9 3 | timeCreated: 1512062703 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 0 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84e45386d8da3497591c38deb2bccd02 3 | folderAsset: yes 4 | timeCreated: 1502400656 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/BuildResources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9da22a96aa2b42d98498bb88b1338d3 3 | folderAsset: yes 4 | timeCreated: 1522854863 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/BuildResources/cloud_anchor_manifest.aartemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/SDK/BuildResources/cloud_anchor_manifest.aartemplate -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/BuildResources/cloud_anchor_manifest.aartemplate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e182918f0b8c4929a3d4b0af0ed6f56 3 | timeCreated: 1523391965 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1e9a08d000a446c9ad506ecb3a4d083 3 | folderAsset: yes 4 | timeCreated: 1513969093 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ede998a9371e74aa6a759743f41b3eb6 3 | folderAsset: yes 4 | timeCreated: 1513969093 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42098948be8564f678777d26e6906df3 3 | folderAsset: yes 4 | timeCreated: 1513969093 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_shared.dll -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c22c793c4b5f447bbb532e92cb93d5ac 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33d076be2f74340b98cb58cefe9122f7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents/MacOS/arcore_instant_preview_unity_plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents/MacOS/arcore_instant_preview_unity_plugin -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents/MacOS/arcore_instant_preview_unity_plugin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27a7f7613c41541ef8517d1b5390962b 3 | timeCreated: 1516418595 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents/MacOS/libarcore_instant_preview_shared.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents/MacOS/libarcore_instant_preview_shared.dylib -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.bundle/Contents/MacOS/libarcore_instant_preview_shared.dylib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a49dee3272c24e7794351bb17e92bd3 3 | timeCreated: 1516418595 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/SDK/InstantPreview/Plugins/x86_64/arcore_instant_preview_unity_plugin.dll -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a10b012db03ac404a87dcb0519846527 3 | folderAsset: yes 4 | timeCreated: 1513969093 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreview.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreview.apk -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreview.apk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf7b10762fe921e40a18151a6c92a8a6 3 | timeCreated: 1515546772 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewInput.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed2d2995c742a6c4490fa51080dbf4cf 3 | timeCreated: 1512422473 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fdf64234fd4449f0ae43759550bfbee 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewTrackedPoseDriver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 307167e96a9af144789862588807c91b 3 | timeCreated: 1512450063 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewWarning.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce085fb7021294a3da6370e9094b0ae6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2c4e904b5e6b425f8ab111db67d7908 3 | folderAsset: yes 4 | timeCreated: 1497981256 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Materials/ARBackground.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03ad0130a037647aeb60218f61aca114 3 | timeCreated: 1498003566 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Materials/ARBackground.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 025775b2b3616154f9eec0261bb8a581 3 | timeCreated: 1510285086 4 | licenseType: Pro 5 | ShaderImporter: 6 | externalObjects: {} 7 | defaultTextures: [] 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93be2b9777c348648a2d9151b7e233fc 3 | folderAsset: yes 4 | timeCreated: 1501825151 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/arcore_arkit_integration.mm: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface ARSessionCast : NSObject 4 | { 5 | @public 6 | ARSession* _session; 7 | } 8 | @end 9 | 10 | @implementation ARSessionCast 11 | 12 | extern "C" ARSession* ARCoreARKitIntegration_castUnitySessionToARKitSession(void* sessionToCast) 13 | { 14 | ARSessionCast *nativeSession = (__bridge ARSessionCast*)(sessionToCast); 15 | ARSession* session = nativeSession->_session; 16 | 17 | return session; 18 | } 19 | 20 | extern "C" ARFrame* ARCoreARKitIntegration_getCurrentFrame(ARSession* arkitSession) 21 | { 22 | return arkitSession.currentFrame; 23 | } 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/arcore_arkit_integration.mm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df35767d8f34c46728297c632ecf7137 3 | timeCreated: 1524446113 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Any: 15 | second: 16 | enabled: 0 17 | settings: {} 18 | - first: 19 | Editor: Editor 20 | second: 21 | enabled: 0 22 | settings: 23 | DefaultValueInitialized: true 24 | - first: 25 | iPhone: iOS 26 | second: 27 | enabled: 1 28 | settings: {} 29 | - first: 30 | tvOS: tvOS 31 | second: 32 | enabled: 1 33 | settings: {} 34 | userData: 35 | assetBundleName: 36 | assetBundleVariant: 37 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/arcore_client.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/SDK/Plugins/arcore_client.aar -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/arcore_unity.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/SDK/Plugins/arcore_unity.aar -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/google_ar_optional.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/SDK/Plugins/google_ar_optional.aar -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/google_ar_optional.aar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2fd4640a9f7349438a5920ea2fb35f2 3 | timeCreated: 1518222616 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Android: Android 15 | second: 16 | enabled: 1 17 | settings: {} 18 | - first: 19 | Any: 20 | second: 21 | enabled: 0 22 | settings: {} 23 | - first: 24 | Editor: Editor 25 | second: 26 | enabled: 0 27 | settings: 28 | DefaultValueInitialized: true 29 | userData: 30 | assetBundleName: 31 | assetBundleVariant: 32 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/google_ar_required.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/SDK/Plugins/google_ar_required.aar -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/google_ar_required.aar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb4b89ba21eac484797cfca938a1a5ea 3 | timeCreated: 1518222591 4 | licenseType: Pro 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Android: Android 15 | second: 16 | enabled: 1 17 | settings: {} 18 | - first: 19 | Any: 20 | second: 21 | enabled: 0 22 | settings: {} 23 | - first: 24 | Editor: Editor 25 | second: 26 | enabled: 0 27 | settings: 28 | DefaultValueInitialized: true 29 | userData: 30 | assetBundleName: 31 | assetBundleVariant: 32 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/unityandroidpermissions.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/SDK/Plugins/unityandroidpermissions.aar -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/unityandroidpermissions.aar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd091fc8013c942f586c1672b8ee2b27 3 | timeCreated: 1500400815 4 | licenseType: Free 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Android: Android 15 | second: 16 | enabled: 1 17 | settings: {} 18 | - first: 19 | Any: 20 | second: 21 | enabled: 0 22 | settings: {} 23 | - first: 24 | Editor: Editor 25 | second: 26 | enabled: 0 27 | settings: 28 | DefaultValueInitialized: true 29 | userData: 30 | assetBundleName: 31 | assetBundleVariant: 32 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/unitygar.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/GoogleARCore/SDK/Plugins/unitygar.aar -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/unitygar.aar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f62612db4b24deb43ada3a769754a2f7 3 | timeCreated: 1503511556 4 | licenseType: Free 5 | PluginImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | isOverridable: 0 12 | platformData: 13 | - first: 14 | Android: Android 15 | second: 16 | enabled: 1 17 | settings: {} 18 | - first: 19 | Any: 20 | second: 21 | enabled: 0 22 | settings: {} 23 | - first: 24 | Editor: Editor 25 | second: 26 | enabled: 0 27 | settings: 28 | DefaultValueInitialized: true 29 | userData: 30 | assetBundleName: 31 | assetBundleVariant: 32 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f3875959d8dd4bdeb9620e0eb96fb3b 3 | folderAsset: yes 4 | timeCreated: 1501446012 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ARCoreBackgroundRenderer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb172c260d42e4f62945afda50892c0c 3 | timeCreated: 1510461368 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ARCoreSession.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4ca0c6a3af6b4635b7e98c6ea0a0cf9 3 | timeCreated: 1510461671 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ARCoreSessionConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53ac32fab2599402fb6d154adf4c1e40 3 | timeCreated: 1510876906 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Anchor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd5c45a099b834b8d847a3ba64b2c8ec 3 | timeCreated: 1502157890 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: -16000 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0726c8b601b041069fad86754497703 3 | timeCreated: 1502330118 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AndroidPermissionsRequestResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7676570d2869469a8e061cbd3d90c9f 3 | timeCreated: 1502330118 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11813694e8abb437eb9ef46ed1cc67c5 3 | folderAsset: yes 4 | timeCreated: 1502400396 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/NativeSession.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d592900cfcf4d46c69256dbe400dec56 3 | timeCreated: 1516388608 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cef4efd6b93e74f2fa2f541212fa6195 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiApkInstallStatusExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3345208dea93f4ca6a361f8852a87704 3 | timeCreated: 1517873495 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiApkInstallationStatus.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2017 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCoreInternal 22 | { 23 | internal enum ApiApkInstallationStatus 24 | { 25 | Uninitialized = 0, 26 | Requested = 1, 27 | Success = 100, 28 | Error = 200, 29 | ErrorDeviceNotCompatible = 201, 30 | ErrorUserDeclined = 203, 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiApkInstallationStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7aa753c5e597b4841b03ea5f7f21326f 3 | timeCreated: 1517874709 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiArStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2632806855cc1405ca80cf82ad68f50a 3 | timeCreated: 1511201582 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiArStatusExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea2a292110d0345f1acb6aea2f69228c 3 | timeCreated: 1523839399 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAvailability.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2017 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCoreInternal 22 | { 23 | internal enum ApiAvailability 24 | { 25 | UnknownError = 0, 26 | UnknownChecking = 1, 27 | UnknownTimedOut = 2, 28 | UnsupportedDeviceNotCapable = 100, 29 | SupportedNotInstalled = 201, 30 | SupportedApkTooOld = 202, 31 | SupportedInstalled = 203 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAvailability.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2ff5d80474fa4dcf979bc5ec9b89ca4 3 | timeCreated: 1517858100 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiAvailabilityExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da78fe0b9a17c46dea099872f469ccd7 3 | timeCreated: 1517871435 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraFocusMode.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2017 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCoreInternal 22 | { 23 | internal enum ApiCameraFocusMode 24 | { 25 | Fixed = 0, 26 | Auto = 1, 27 | } 28 | } -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraFocusMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f65b9d078b2845138ef70cdd04e3c73 3 | timeCreated: 1529969528 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCameraMetadata.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfdd6a8d3f3624cc68c5c22390d84305 3 | timeCreated: 1511898550 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorMode.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2018 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCoreInternal.CrossPlatform 22 | { 23 | internal enum ApiCloudAnchorMode 24 | { 25 | Disabled = 0, 26 | Enabled = 1, 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d4558a37894940f89ca1e8aec3bffd0 3 | timeCreated: 1523839648 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50ba1888bff2542ae98827586e95f255 3 | timeCreated: 1523839648 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiCloudAnchorStateExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d34b5c2dd26b4d69940a1a3b98afa17 3 | timeCreated: 1523839648 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiConstants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 020d4ce00b42e47d2b46e7aa6244bedb 3 | timeCreated: 1509553365 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDisplayUvCoords.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed17abe8b8d17dc44ae53ea9840cd4dc 3 | timeCreated: 1510289770 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiDisplayUvCoordsExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7bb05187099e74075868cb33b22f51b8 3 | timeCreated: 1520038125 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiFeaturePointOrientationMode.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2017 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCoreInternal 22 | { 23 | using System.Diagnostics.CodeAnalysis; 24 | 25 | [SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1600:ElementsMustBeDocumented", 26 | Justification = "Internal")] 27 | public enum ApiFeaturePointOrientationMode 28 | { 29 | Identity = 0, 30 | SurfaceNormal = 1, 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiFeaturePointOrientationMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e55289de34ec44b191ed1bdc5b17c9d 3 | timeCreated: 1517185900 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiFeaturePointOrientationModeExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7f21e3757d39475aae8f4a13d02253a 3 | timeCreated: 1517185900 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimateState.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2017 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCoreInternal 22 | { 23 | internal enum ApiLightEstimateState 24 | { 25 | NotValid = 0, 26 | Valid = 1, 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimateState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edc967aa80d4104418f83a5d540219ca 3 | timeCreated: 1510799673 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimateStateExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b62de06fc1d1854d8e46bfb414db000 3 | timeCreated: 1510799673 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimationMode.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2017 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCoreInternal 22 | { 23 | using System.Diagnostics.CodeAnalysis; 24 | 25 | [SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1600:ElementsMustBeDocumented", 26 | Justification = "Internal")] 27 | public enum ApiLightEstimationMode 28 | { 29 | Disabled = 0, 30 | AmbientIntensity = 1, 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiLightEstimationMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31136b31f422e49a5b4307c1b3bff384 3 | timeCreated: 1512782847 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneFindingMode.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2017 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCoreInternal 22 | { 23 | internal enum ApiPlaneFindingMode 24 | { 25 | Disabled = 0, 26 | Horizontal = 1, 27 | Vertical = 2, 28 | HorizontalAndVertical = 3, 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneFindingMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f21ec92bd25d0434ca6f063262f0ede5 3 | timeCreated: 1512178510 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneType.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2018 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCoreInternal 22 | { 23 | internal enum ApiPlaneType 24 | { 25 | HorizontalUpwardFacing = 0, 26 | HorizontalDownwardFacing = 1, 27 | Vertical = 2, 28 | } 29 | } -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06144a2d26cd942fd976c39592bba2ac 3 | timeCreated: 1530545574 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPlaneTypeExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 613b2ca03235f42a5a02a182556426b4 3 | timeCreated: 1530545815 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPoseData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d4a3892884f34b018a13b62fd1615f1 3 | timeCreated: 1510174272 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8a0d471a5e1c486fb61de90a976a6d3 3 | timeCreated: 1518035095 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f77bf9ab0d39f4875b26d70fce838285 3 | timeCreated: 1513291504 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiPrestoStatusExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20257a5d02b574ec8a372bb9e319d8b3 3 | timeCreated: 1513294266 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackableType.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2017 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCoreInternal 22 | { 23 | internal enum ApiTrackableType 24 | { 25 | Invalid = 0, 26 | BaseTrackable = 0x41520100, 27 | Plane = 0x41520101, 28 | Point = 0x41520102, 29 | AugmentedImage = 0x41520104, 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackableType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8348fa5338bd4e8abfa9ebc30d296fb 3 | timeCreated: 1509300062 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingState.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2017 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCoreInternal 22 | { 23 | internal enum ApiTrackingState 24 | { 25 | Tracking = 0, 26 | Paused = 1, 27 | Stopped = 2, 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 226925a61d2444e8d9a12435697ce770 3 | timeCreated: 1510543828 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingStateExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e227d0e11c8e0498a88231ab7e5f9da8 3 | timeCreated: 1510610474 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiTrackingStateXPExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9582daff82de648c79311efef6d3ef3c 3 | timeCreated: 1523839648 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiUpdateMode.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2017 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCoreInternal 22 | { 23 | internal enum ApiUpdateMode 24 | { 25 | Blocking = 0, 26 | LatestCameraImage = 1, 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Types/ApiUpdateMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d36ec8d5b9b14aefb9f136006e51d6a 3 | timeCreated: 1510876906 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3e11dc32dbb64058b5a1d4bfe746fd0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AnchorApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0301646575b004ceca83800c3b3c9f06 3 | timeCreated: 1509305507 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedImageApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 054ec0e9dd5804ac0b3ea5ec840af04f 3 | timeCreated: 1520625981 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/AugmentedImageDatabaseApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4272983ec6fb4cdf9b00827bf70109c 3 | timeCreated: 1520892113 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fdb35ceae7cf491a978d2f4a1c45f2c 3 | timeCreated: 1510257333 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3968b7ba72bd646cb8ebb992919e4d4b 3 | timeCreated: 1525897628 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraConfigListApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba403831a101c417ab6b6dd3c0a1e6c2 3 | timeCreated: 1525898270 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/CameraMetadataApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d972b11e53fb14a5cb38b3b81e420a7a 3 | timeCreated: 1511395337 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/FrameApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8343d1d4c171649e18d1c562131e1a22 3 | timeCreated: 1509578063 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/HitTestApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9732fd9cd933b45b9b101341baf74b73 3 | timeCreated: 1510610167 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/ImageApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a3a276a11cf042cc852e5b9f699553c 3 | timeCreated: 1519866731 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/LightEstimateApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1208855bfb606b34092b04a38c785ff9 3 | timeCreated: 1510799673 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PlaneApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc57253c2a28846679a773e6c2ee8c32 3 | timeCreated: 1509300062 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71ae835ce954d488a85396c79162f733 3 | timeCreated: 1510617062 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PointCloudApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6fca0e25bb6e4612acb66cacc00f8ff 3 | timeCreated: 1509468914 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/PoseApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bb1ac230a9054569b08d1ca210d8b01 3 | timeCreated: 1509300062 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e62f0c78c398d4404a32f71b57e153e4 3 | timeCreated: 1509504247 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/SessionConfigApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5bad7cdbe53c84daa86747adecf2feb1 3 | timeCreated: 1510876906 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87745264d13d44f2a8295d25c2d6666e 3 | timeCreated: 1509300062 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Api/Wrappers/TrackableListApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d2c4263ac8ea480e98fbaf3e7c08815 3 | timeCreated: 1510542389 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ApkAvailabilityStatus.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2017 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCore 22 | { 23 | /// 24 | /// Possible statuses for the ARCore APK availability on a device. 25 | /// 26 | public enum ApkAvailabilityStatus 27 | { 28 | UnknownError = 0, 29 | UnknownChecking = 1, 30 | UnknownTimedOut = 2, 31 | UnsupportedDeviceNotCapable = 100, 32 | SupportedNotInstalled = 201, 33 | SupportedApkTooOld = 202, 34 | SupportedInstalled = 203 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ApkAvailabilityStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56892237bd519491d9a60f5ebd3e0f72 3 | timeCreated: 1517868046 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ApkInstallationStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1de1e6e76a30499e970bb552522dec7 3 | timeCreated: 1517858804 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Async.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3aabcae5f79543dea8251d640bde6ad 3 | folderAsset: yes 4 | timeCreated: 1502330118 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Async/WaitForTaskCompletionYieldInstruction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ba38d18d01304b4ab5105846c55aff1 3 | timeCreated: 1502330118 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AsyncTask.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d48675563f8a14e85bb73c0a6d45d9f0 3 | timeCreated: 1503943281 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedImage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38414ed7439a24b24804673831d43b8d 3 | timeCreated: 1521226213 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea1208cb4bfc946f7aa1d7b5348cb086 3 | timeCreated: 1520542268 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/AugmentedImageDatabaseEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 357a936764f934f47915767e86b1fa5d 3 | timeCreated: 1521160584 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60b6822e44b904990a727e5a40b8cc95 3 | timeCreated: 1526071064 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraFocusMode.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2018 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCore 22 | { 23 | /// 24 | /// Selects the auto focus behavior of the camera. 25 | /// 26 | public enum CameraFocusMode 27 | { 28 | /// 29 | /// Fixed camera focus mode. 30 | /// 31 | Fixed = 0, 32 | 33 | /// 34 | /// Auto camera focus mode. 35 | /// 36 | Auto = 1, 37 | } 38 | } -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraFocusMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da1d5a2f83bc74720aba32d7351e8352 3 | timeCreated: 1529969232 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraImageBytes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9e4048a8fa07415da1df0c57b405bf1 3 | timeCreated: 1520292979 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraIntrinsics.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3054fc12adfd94079bdae62d51dabb07 3 | timeCreated: 1526596659 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraMetadataTag.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68f2bf600965540b080a2244b1221f8e 3 | timeCreated: 1511913936 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CameraMetadataValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7bf42f9fcf4548e8bfeb90b36d40891 3 | timeCreated: 1511904539 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CloudAnchorResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 070f56dcf712049ff81d47307949d141 3 | timeCreated: 1523839399 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/CloudServiceResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30b5d30856de549f6bab9001744e8ae7 3 | timeCreated: 1523839399 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Deprecated.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c9482ea60c314668859beb7b9694eaa 3 | folderAsset: yes 4 | timeCreated: 1524257072 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPlane.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0da9530b1f65342d39dac56c8d416c48 3 | timeCreated: 1524257072 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPoint.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a185f38716bd44e29230f20d84c58ba 3 | timeCreated: 1524257073 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPointOrientationMode.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2017 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCore 22 | { 23 | /// 24 | /// Deprecated version of FeaturePointOrientationMode. 25 | /// 26 | [System.Obsolete("This enum has been renamed to FeaturePointOrientationMode. See https://github.com/google-ar/arcore-unity-sdk/releases/tag/v1.2.0")] 27 | public enum TrackedPointOrientationMode 28 | { 29 | Identity = 0, 30 | SurfaceNormal = 1, 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Deprecated/TrackedPointOrientationMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e09a17f6fcb348008625a6619788ede 3 | timeCreated: 1524257073 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DetectedPlane.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2d0f75c2c2744f5c8b7c0a18da840a6 3 | timeCreated: 1502152830 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DetectedPlaneFindingMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 424f61f9de720442c858b69505f99cac 3 | timeCreated: 1524187637 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DetectedPlaneType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 782c7b1f876914134985657c58d06ca3 3 | timeCreated: 1530544935 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/DisplayUvCoords.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6f63f1692fd0421e84e300081d1555a 3 | timeCreated: 1520026166 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfb05be3ca34b4826b62df99f182da2b 3 | folderAsset: yes 4 | timeCreated: 1518226182 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreIOSSupportHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19d31e3098f2d425a90ac698821149ba 3 | timeCreated: 1531256569 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreIOSSupportPreprocessBuild.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4aac9841676f4e6cb827a00c9f15017 3 | timeCreated: 1530557113 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreProjectSettingsWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c59ff1ab3d66a449fb8c5d35ea110f5a 3 | timeCreated: 1524521974 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ARCoreSupportedPreprocessBuild.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce9d9c7630c1141a1afea7d1fece4592 3 | timeCreated: 1535654460 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/AssetHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 492b47aeb895248d089cc3528f6b9725 3 | timeCreated: 1524258825 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabaseContextMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a792d31eaa464c5ea7c824e0830f900 3 | timeCreated: 1521051285 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabaseInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e9323481080a4014baef83b68be5213 3 | timeCreated: 1523559932 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/AugmentedImageDatabasePreprocessBuild.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecaa7340672f2422ea4fa43bfe9cde02 3 | timeCreated: 1520644922 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/BackgroundJobExecutor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83c357ff8c8a14fedad867757b353d48 3 | timeCreated: 1524298011 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/CloudAnchorPreprocessBuild.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10733afb1b9e94fecae45969433d378e 3 | timeCreated: 1523839648 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ExampleBuildHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 884ed47650fd4e74e9c0476d5b3b7566 3 | timeCreated: 1533078028 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/ExamplePreprocessBuild.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef4c554de5f7140628a41065f860e163 3 | timeCreated: 1526183456 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/PreprocessBuildBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38666438f849442e5a0eddd6d94920ee 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Editor/RequiredOptionalPreprocessBuild.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56700f06605bb44788a3b517a713b37f 3 | timeCreated: 1523986444 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/EnvironmentalLight.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92a4cf446a0c7334aaceb5457be27894 3 | timeCreated: 1510799851 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ExperimentSupport.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d51fb14a4135e4dc8b0a44e9c4aec87e 3 | folderAsset: yes 4 | timeCreated: 1520896908 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b1fb11cb21344e5481251e0368796c5 3 | timeCreated: 1521171547 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/ExperimentSupport/ExperimentManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c1580327312f4d358718f9cbc999ae7 3 | timeCreated: 1521171255 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/FeaturePoint.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7990c0cac50a48a29eba12ee1f730bc 3 | timeCreated: 1510616957 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/FeaturePointOrientationMode.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2017 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCore 22 | { 23 | /// 24 | /// The orientation mode for a FeaturePoint. 25 | /// 26 | public enum FeaturePointOrientationMode 27 | { 28 | Identity = 0, 29 | SurfaceNormal = 1, 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/FeaturePointOrientationMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f605e8f0dd31a453083b47fb68477792 3 | timeCreated: 1516989852 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Frame.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f23179d83fac54b6898d7f842a3ecf83 3 | timeCreated: 1503161028 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/LightEstimate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fda591ded80f4d6489368b5527603e86 3 | timeCreated: 1502160887 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/LightEstimateState.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2017 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCore 22 | { 23 | /// 24 | /// Possible states for . 25 | /// 26 | public enum LightEstimateState 27 | { 28 | /// 29 | /// Estimate is not valid and should not be used. 30 | /// 31 | NotValid, 32 | 33 | /// 34 | /// Estimate is valid. 35 | /// 36 | Valid, 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/LightEstimateState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f3ad9d6ff6f214438ef1a961ef9b921 3 | timeCreated: 1510799673 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e71c3224f80341e8bce7e10bfca6462 3 | folderAsset: yes 4 | timeCreated: 1510945633 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/ARCoreAndroidLifecycleManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c36b39a5d19034f6991e0c51fc4fd163 3 | timeCreated: 1523832170 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/ARCoreIOSLifecycleManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f473ce5ea39740e2b360049aa7e589e 3 | timeCreated: 1523832170 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/ARPrestoCallbackManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 286c45212c17d49c29e201174d9fe125 3 | timeCreated: 1523834135 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/CloudServiceManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b0a1d40847a1498b9db19033c008ea0 3 | timeCreated: 1523839648 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/ILifecycleManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d6c392b4b83147e3b6b92e359ea4589 3 | timeCreated: 1523837727 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/LifecycleManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 864c8242be03c4aec8427b8a2286c601 3 | timeCreated: 1523814052 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Managers/TrackableManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27167ddd916ef43bbaacd5878c2ae213 3 | timeCreated: 1510945633 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/PointCloudPoint.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f24ed3047ed4646bfab6a8a530dc432c 3 | timeCreated: 1510947955 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Session.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37d4175d892ef4e6190e38f26d22434c 3 | timeCreated: 1502156672 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/SessionStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30a41262cba2646c98f6d3cf4e46fb2a 3 | timeCreated: 1516741153 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/SessionStatusExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8d6e0fc3b3bc44218e96690668c05b4 3 | timeCreated: 1517519681 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Trackable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df152580aca434d62a87d4dfefe9ca93 3 | timeCreated: 1508869129 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/TrackableHit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f69a232195c4d4a699cc8501f6ee7649 3 | timeCreated: 1502302494 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/TrackableHitFlags.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a541164e523764394a27cc3803637e58 3 | timeCreated: 1502302494 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/TrackableQueryFilter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21d75659f8470494cbefd71c8b7f25bd 3 | timeCreated: 1510770155 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/TrackingState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 190efca65a78647b7a60e0e4b2288b27 3 | timeCreated: 1510509514 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df74476279e4c4797bdcc1ff52177a3e 3 | folderAsset: yes 4 | timeCreated: 1502401080 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/ARCoreProjectSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68605a05829544832b871afc8bf03168 3 | timeCreated: 1518470830 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/ARDebug.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84b5f07f2795d472e9c6e7bc3ed8bf35 3 | timeCreated: 1502425714 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/ConversionHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a1be6e2816d24b2ea1d6ec5f4be479d 3 | timeCreated: 1510266639 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/DllImportNoop.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // 4 | // Copyright 2018 Google Inc. All Rights Reserved. 5 | // 6 | // Licensed under the Apache License, Version 2.0 (the "License"); 7 | // you may not use this file except in compliance with the License. 8 | // You may obtain a copy of the License at 9 | // 10 | // http://www.apache.org/licenses/LICENSE-2.0 11 | // 12 | // Unless required by applicable law or agreed to in writing, software 13 | // distributed under the License is distributed on an "AS IS" BASIS, 14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | // See the License for the specific language governing permissions and 16 | // limitations under the License. 17 | // 18 | // 19 | //----------------------------------------------------------------------- 20 | 21 | namespace GoogleARCoreInternal 22 | { 23 | internal class DllImportNoop : System.Attribute 24 | { 25 | public DllImportNoop(string dllName) 26 | { 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/DllImportNoop.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5d95bc37d19043e5af128f53138e015 3 | timeCreated: 1523981664 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/IntPtrEqualityComparer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef23faba8749e46a5bd33fa98d0b4445 3 | timeCreated: 1513114243 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/MarshalingHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ced698934296748419bf72ad4ac8a66b 3 | timeCreated: 1502400449 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/ShellHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18f728f329c6b478cb2f01391aae637b 3 | timeCreated: 1521159754 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/SuppressMemoryAllocationErrorAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acf5344548bed4ce9beaf35de48a782b 3 | timeCreated: 1533597023 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/Utility/ThrottledLogMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91b145f8e2f3a482da2fbde1bdc74156 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/XPAnchor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5955f790d56e342a58a320878015d119 3 | timeCreated: 1523839399 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/XPSession.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2b12594e288d49f8beaef9f626a0e11 3 | timeCreated: 1523839399 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/XPSessionStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8003bb55ac97a447aac1d426fdf75e29 3 | timeCreated: 1523839399 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Scripts/XPTrackingState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 986bb1dcdf79e4097bb22336240f4f90 3 | timeCreated: 1523839399 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1eabf19c83b864929947190e702e7bb0 3 | folderAsset: yes 4 | timeCreated: 1524194164 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Materials/BlackFrame.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f39aa53d6c06b49f5900f55d11705b08 3 | timeCreated: 1520492066 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 0 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Materials/Frame.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Materials/Frame.jpg -------------------------------------------------------------------------------- /Assets/Materials/FrameAlpha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Materials/FrameAlpha.jpg -------------------------------------------------------------------------------- /Assets/Materials/Mask.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 844e8487ff004429eb5dd12db46d7c0a 3 | timeCreated: 1524250772 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 2100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Materials/Portal.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5404a27502fb041ac95ba88bb55c0a92 3 | timeCreated: 1523576574 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 2100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Materials/TargetVertical.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff8f6c25416b446c795090a0ff84090d 3 | timeCreated: 1520492066 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 0 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Materials/Transmo.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f02cac4e5b5c64df399d084ac06f0268 3 | timeCreated: 1523576574 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 2100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PlayServicesResolver.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3df035f61e3bb402f86bb6d3a0766af4 3 | folderAsset: yes 4 | timeCreated: 1523991686 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PlayServicesResolver/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5134f523e5e148eaacc726ea44f0bc3 3 | folderAsset: yes 4 | timeCreated: 1524177981 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/PlayServicesResolver/Editor/Google.IOSResolver_v1.2.95.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/PlayServicesResolver/Editor/Google.IOSResolver_v1.2.95.0.dll -------------------------------------------------------------------------------- /Assets/PlayServicesResolver/Editor/Google.IOSResolver_v1.2.95.0.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 146fb1f1c7a148e0a45842341619f416 3 | labels: 4 | - gvh 5 | - gvh_targets-editor 6 | - gvh_version-1.2.95.0 7 | timeCreated: 1545858169 8 | licenseType: Free 9 | PluginImporter: 10 | externalObjects: {} 11 | serializedVersion: 2 12 | iconMap: {} 13 | executionOrder: {} 14 | isPreloaded: 0 15 | isOverridable: 0 16 | platformData: 17 | - first: 18 | Any: 19 | second: 20 | enabled: 0 21 | settings: {} 22 | - first: 23 | Editor: Editor 24 | second: 25 | enabled: 1 26 | settings: 27 | DefaultValueInitialized: true 28 | - first: 29 | Windows Store Apps: WindowsStoreApps 30 | second: 31 | enabled: 0 32 | settings: 33 | CPU: AnyCPU 34 | userData: 35 | assetBundleName: 36 | assetBundleVariant: 37 | -------------------------------------------------------------------------------- /Assets/PlayServicesResolver/Editor/Google.JarResolver_v1.2.95.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/PlayServicesResolver/Editor/Google.JarResolver_v1.2.95.0.dll -------------------------------------------------------------------------------- /Assets/PlayServicesResolver/Editor/Google.JarResolver_v1.2.95.0.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0709f79196d64d11b8171d4ee0249cfe 3 | labels: 4 | - gvh 5 | - gvh_targets-editor 6 | - gvh_version-1.2.95.0 7 | timeCreated: 1545858172 8 | licenseType: Free 9 | PluginImporter: 10 | externalObjects: {} 11 | serializedVersion: 2 12 | iconMap: {} 13 | executionOrder: {} 14 | isPreloaded: 0 15 | isOverridable: 0 16 | platformData: 17 | - first: 18 | Any: 19 | second: 20 | enabled: 0 21 | settings: {} 22 | - first: 23 | Editor: Editor 24 | second: 25 | enabled: 1 26 | settings: 27 | DefaultValueInitialized: true 28 | - first: 29 | Windows Store Apps: WindowsStoreApps 30 | second: 31 | enabled: 0 32 | settings: 33 | CPU: AnyCPU 34 | userData: 35 | assetBundleName: 36 | assetBundleVariant: 37 | -------------------------------------------------------------------------------- /Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll -------------------------------------------------------------------------------- /Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56f275e07a2440319f9d6561ac43e9f7 3 | labels: 4 | - gvh 5 | - gvh_targets-editor 6 | - gvh_version-1.2.95.0 7 | PluginImporter: 8 | externalObjects: {} 9 | serializedVersion: 2 10 | iconMap: {} 11 | executionOrder: {} 12 | isPreloaded: 0 13 | isOverridable: 0 14 | platformData: 15 | - first: 16 | Any: 17 | second: 18 | enabled: 0 19 | settings: {} 20 | - first: 21 | Editor: Editor 22 | second: 23 | enabled: 1 24 | settings: 25 | DefaultValueInitialized: true 26 | - first: 27 | Windows Store Apps: WindowsStoreApps 28 | second: 29 | enabled: 0 30 | settings: 31 | CPU: AnyCPU 32 | userData: 33 | assetBundleName: 34 | assetBundleVariant: 35 | -------------------------------------------------------------------------------- /Assets/PlayServicesResolver/Editor/Google.VersionHandlerImpl_v1.2.95.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/PlayServicesResolver/Editor/Google.VersionHandlerImpl_v1.2.95.0.dll -------------------------------------------------------------------------------- /Assets/PlayServicesResolver/Editor/Google.VersionHandlerImpl_v1.2.95.0.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67c44228c30d4c3198971fa4375e857d 3 | labels: 4 | - gvh 5 | - gvh_targets-editor 6 | - gvh_version-1.2.95.0 7 | PluginImporter: 8 | externalObjects: {} 9 | serializedVersion: 2 10 | iconMap: {} 11 | executionOrder: {} 12 | isPreloaded: 0 13 | isOverridable: 0 14 | platformData: 15 | - first: 16 | Any: 17 | second: 18 | enabled: 0 19 | settings: {} 20 | - first: 21 | Editor: Editor 22 | second: 23 | enabled: 1 24 | settings: 25 | DefaultValueInitialized: true 26 | - first: 27 | Windows Store Apps: WindowsStoreApps 28 | second: 29 | enabled: 0 30 | settings: 31 | CPU: AnyCPU 32 | userData: 33 | assetBundleName: 34 | assetBundleVariant: 35 | -------------------------------------------------------------------------------- /Assets/PlayServicesResolver/Editor/play-services-resolver_v1.2.95.0.txt: -------------------------------------------------------------------------------- 1 | Assets/PlayServicesResolver/Editor/Google.IOSResolver_v1.2.95.0.dll 2 | Assets/PlayServicesResolver/Editor/Google.IOSResolver_v1.2.95.0.dll.mdb 3 | Assets/PlayServicesResolver/Editor/Google.JarResolver_v1.2.95.0.dll 4 | Assets/PlayServicesResolver/Editor/Google.JarResolver_v1.2.95.0.dll.mdb 5 | Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll 6 | Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll.mdb 7 | Assets/PlayServicesResolver/Editor/Google.VersionHandlerImpl_v1.2.95.0.dll 8 | Assets/PlayServicesResolver/Editor/Google.VersionHandlerImpl_v1.2.95.0.dll.mdb 9 | -------------------------------------------------------------------------------- /Assets/PlayServicesResolver/Editor/play-services-resolver_v1.2.95.0.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 916ff33d9eb84dd29ae80bfdecc20f79 3 | labels: 4 | - gvh 5 | - gvh_manifest 6 | - gvh_version-1.2.95.0 7 | timeCreated: 1474401009 8 | licenseType: Pro 9 | TextScriptImporter: 10 | externalObjects: {} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca5e4046da0904db9ba07dec3cd1563c 3 | folderAsset: yes 4 | timeCreated: 1524194164 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Prefabs/PortalSquare48.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Prefabs/PortalSquare48.fbx -------------------------------------------------------------------------------- /Assets/Prefabs/PortalSquareMask.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Prefabs/PortalSquareMask.fbx -------------------------------------------------------------------------------- /Assets/Prefabs/TRANSMO_EXP_015.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Prefabs/TRANSMO_EXP_015.fbx -------------------------------------------------------------------------------- /Assets/Prefabs/TransmoPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 045534ce5dc504f54a4d5aedf4ca2157 3 | timeCreated: 1524193939 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Prefabs/TransmoPrefabAnimated.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3d0c1ba9e9b2460196d940c068a246a 3 | timeCreated: 1524446661 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9618e2f83b5a4ce38c0ac9f8e6968d5 3 | folderAsset: yes 4 | timeCreated: 1524194164 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/ICON.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae880a7deffa14a0d8e324af01dd6606 3 | folderAsset: yes 4 | timeCreated: 1524198805 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/ICON/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/ICON/icon.png -------------------------------------------------------------------------------- /Assets/Resources/PORTAL.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96cc0761737ea41e6abdf884c9658ced 3 | folderAsset: yes 4 | timeCreated: 1524194164 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/PORTAL/A_TRANSMO_PORTAL_BAKE_001_0099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/PORTAL/A_TRANSMO_PORTAL_BAKE_001_0099.png -------------------------------------------------------------------------------- /Assets/Resources/PORTAL/TRANSMO_PORTAL_BAKE_001_0099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/PORTAL/TRANSMO_PORTAL_BAKE_001_0099.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abd482fb3572f412ebaf0d0901cd0728 3 | folderAsset: yes 4 | timeCreated: 1524444211 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0000.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0001.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0002.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0003.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0004.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0005.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0006.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0007.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0008.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0009.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/A_TRANSMO_BAKE_004_0010.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0000.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0001.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0002.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0003.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0004.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0005.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0006.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0007.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0008.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0009.png -------------------------------------------------------------------------------- /Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/Resources/TRANSMO_BAKE_004/TRANSMO_BAKE_004_0010.png -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3e35914ee68740daaf61ad15d40240e 3 | folderAsset: yes 4 | timeCreated: 1524196161 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Scenes/Transmo.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd5d93253b8b14b08b96abc550761ee7 3 | timeCreated: 1524196174 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2f56803916a1430090a336b9f6a2ed4 3 | folderAsset: yes 4 | timeCreated: 1524009167 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Scripts/FirstFrameScale.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4853a1b5c1bcf4d8ea43d942a5aa6631 3 | timeCreated: 1524009416 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/FirstFrameTransparency.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e643bf0b5ea7442688020f09cdc4ac6d 3 | timeCreated: 1524179703 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/IORenderTransmo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49931153f8674499fa11cf147cfdfdc2 3 | timeCreated: 1524444212 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/PerspectiveBlendLine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab916e5f8ad2a4d308c6450f7e86b37b 3 | timeCreated: 1524009167 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/TransmoController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ca89d41174a94eac8270d2aa2cb4e15 3 | timeCreated: 1524010557 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/TransmoObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 596a3494e72534d5c93f4e1f4cdbbcc1 3 | timeCreated: 1524070618 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Settings.StyleCop.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b033c807b1b574d8084249e97cd905d3 3 | timeCreated: 1524089124 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a473cab6f66d34d348d9e3e4c24bd70b 3 | folderAsset: yes 4 | timeCreated: 1524194226 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Shaders/Mask.shader: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | Shader "Unlit/Mask" 16 | { 17 | SubShader 18 | { 19 | ZWrite On 20 | ColorMask 0 21 | 22 | Stencil{ 23 | Ref 1 24 | Pass replace 25 | } 26 | 27 | Pass{} 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Assets/Shaders/Mask.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 053903685666f4e6898ec999cd7fa510 3 | timeCreated: 1524250414 4 | licenseType: Pro 5 | ShaderImporter: 6 | externalObjects: {} 7 | defaultTextures: [] 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Shaders/Transparent.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 962fa998e5b1f48b7a0eae6f8eaeaad4 3 | timeCreated: 1524016465 4 | licenseType: Pro 5 | ShaderImporter: 6 | externalObjects: {} 7 | defaultTextures: [] 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/TargetDatabase.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c00b47ef6551467390e77b9e5dff6e3 3 | folderAsset: yes 4 | timeCreated: 1524194164 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/TargetDatabase/TransmoTarget.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1a3d525d38b04529b8a76165c22e96a 3 | timeCreated: 1524447845 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/TargetDatabase/TransmoTargetSessionConfig.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_GameObject: {fileID: 0} 9 | m_Enabled: 1 10 | m_EditorHideFlags: 0 11 | m_Script: {fileID: 11500000, guid: 53ac32fab2599402fb6d154adf4c1e40, type: 3} 12 | m_Name: TransmoTargetSessionConfig 13 | m_EditorClassIdentifier: 14 | MatchCameraFramerate: 1 15 | PlaneFindingMode: 0 16 | EnableLightEstimation: 1 17 | EnableCloudAnchor: 0 18 | AugmentedImageDatabase: {fileID: 11400000, guid: f1a3d525d38b04529b8a76165c22e96a, 19 | type: 2} 20 | -------------------------------------------------------------------------------- /Assets/TargetDatabase/TransmoTargetSessionConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e43c71c327e0240c595865f52619c250 3 | timeCreated: 1524065686 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/TargetDatabase/Vertical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/arcore-illusive-images/b30d5a82d0618b00a65e7733271f2a1da6ee7553/Assets/TargetDatabase/Vertical.jpg -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How to Contribute 2 | 3 | We'd love to accept your patches and contributions to this project. There are 4 | just a few small guidelines you need to follow. 5 | 6 | ## Contributor License Agreement 7 | 8 | Contributions to this project must be accompanied by a Contributor License 9 | Agreement. You (or your employer) retain the copyright to your contribution, 10 | this simply gives us permission to use and redistribute your contributions as 11 | part of the project. Head over to to see 12 | your current agreements on file or to sign a new one. 13 | 14 | You generally only need to submit a CLA once, so if you've already submitted one 15 | (even if it was for a different project), you probably don't need to do it 16 | again. 17 | 18 | ## Code reviews 19 | 20 | All submissions, including submissions by project members, require review. We 21 | use GitHub pull requests for this purpose. Consult 22 | [GitHub Help](https://help.github.com/articles/about-pull-requests/) for more 23 | information on using pull requests. 24 | 25 | ## Community Guidelines 26 | 27 | This project follows [Google's Open Source Community 28 | Guidelines](https://opensource.google.com/conduct/). 29 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | m_Volume: 1 7 | Rolloff Scale: 1 8 | Doppler Factor: 1 9 | Default Speaker Mode: 2 10 | m_SampleRate: 0 11 | m_DSPBufferSize: 0 12 | m_VirtualVoiceCount: 512 13 | m_RealVoiceCount: 32 14 | m_SpatializerPlugin: 15 | m_AmbisonicDecoderPlugin: 16 | m_DisableAudio: 0 17 | m_VirtualizeEffects: 1 18 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 7 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_ClothInterCollisionDistance: 0 18 | m_ClothInterCollisionStiffness: 0 19 | m_ContactsGeneration: 1 20 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 21 | m_AutoSimulation: 1 22 | m_AutoSyncTransforms: 1 23 | m_ClothInterCollisionSettingsToggle: 0 24 | m_ContactPairsMode: 0 25 | m_BroadphaseType: 0 26 | m_WorldBounds: 27 | m_Center: {x: 0, y: 0, z: 0} 28 | m_Extent: {x: 250, y: 250, z: 250} 29 | m_WorldSubdivisions: 8 30 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/Scenes/Transmo.unity 10 | guid: cd5d93253b8b14b08b96abc550761ee7 11 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 7 7 | m_ExternalVersionControlSupport: Hidden Meta Files 8 | m_SerializationMode: 2 9 | m_LineEndingsForNewScripts: 1 10 | m_DefaultBehaviorMode: 0 11 | m_SpritePackerMode: 0 12 | m_SpritePackerPaddingPower: 1 13 | m_EtcTextureCompressorBehavior: 1 14 | m_EtcTextureFastCompressor: 1 15 | m_EtcTextureNormalCompressor: 2 16 | m_EtcTextureBestCompressor: 4 17 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp 18 | m_ProjectGenerationRootNamespace: 19 | m_UserGeneratedProjectSuffix: 20 | m_CollabEditorSettings: 21 | inProgressEnabled: 1 22 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.4.10f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | m_Enabled: 1 7 | m_TestMode: 0 8 | m_TestEventUrl: 9 | m_TestConfigUrl: 10 | m_TestInitMode: 0 11 | CrashReportingSettings: 12 | m_EventUrl: https://perf-events.cloud.unity3d.com/api/events/crashes 13 | m_NativeEventUrl: https://perf-events.cloud.unity3d.com/symbolicate 14 | m_Enabled: 0 15 | m_CaptureEditorExceptions: 1 16 | UnityPurchasingSettings: 17 | m_Enabled: 0 18 | m_TestMode: 0 19 | UnityAnalyticsSettings: 20 | m_Enabled: 1 21 | m_InitializeOnStartup: 1 22 | m_TestMode: 0 23 | m_TestEventUrl: 24 | m_TestConfigUrl: 25 | UnityAdsSettings: 26 | m_Enabled: 0 27 | m_InitializeOnStartup: 1 28 | m_TestMode: 0 29 | m_IosGameId: 30 | m_AndroidGameId: 31 | m_GameIds: {} 32 | m_GameId: 33 | PerformanceReportingSettings: 34 | m_Enabled: 0 35 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # This is a demo project of ARcore 2 | 3 | Sample Unity Project for an augmented reality app using ARCore's Augmented Images feature. This is not an officially supported Google product. 4 | 5 | ### Prerequisites 6 | 7 | Please refer to the QuickStart Guide in order to install the following: 8 | 9 | - Android Studio with the Android SDK version 7.0(API Level 24) or higher. 10 | - Unity 2017.3.0f2 or higher with the Android Build Support component. 11 | - ARCore SDK for Unity. 12 | - An Android supported device. 13 | 14 | ### Running the Project 15 | 16 | In order to run the demo app please follow these instructions. 17 | 18 | - Open the Unity Project. 19 | - Open the "Transmo.unity" scene located in the Assets/Scenes folder. 20 | - Print out or open the target image on your screen (Vertical.jpg in Assets/TargetDatabase/). 21 | - Make sure your device is connected to your machine and then select **File > Build and Run**. Unity will then build the project into an APK, and install and launch on your device. 22 | - Center the target into the frame of the device to initiate the experience. 23 | - Move your device from the left or to right of the target in order to experience the shape's transformation. 24 | -------------------------------------------------------------------------------- /UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | --------------------------------------------------------------------------------