├── .gitignore ├── Assets ├── ARTabletop.meta ├── ARTabletop │ ├── ARTableMapVisualizer.meta │ ├── ARTableMapVisualizer │ │ ├── ARTabletopMapVisualizer.asset │ │ ├── ARTabletopMapVisualizer.asset.meta │ │ ├── ClipBuildingHeightModifier.asset │ │ ├── ClipBuildingHeightModifier.asset.meta │ │ ├── ClipBuildingLayerModifier.asset │ │ ├── ClipBuildingLayerModifier.asset.meta │ │ ├── ClipBuildingTextureModifier.asset │ │ ├── ClipBuildingTextureModifier.asset.meta │ │ ├── ClipBuildingUvModifier.asset │ │ ├── ClipBuildingUvModifier.asset.meta │ │ ├── ClipMapBuildings.asset │ │ ├── ClipMapBuildings.asset.meta │ │ ├── ClipMapFlatTerrainFactory.asset │ │ ├── ClipMapFlatTerrainFactory.asset.meta │ │ ├── ClipMapImageFactory.asset │ │ ├── ClipMapImageFactory.asset.meta │ │ ├── ClipMapVectorFactory.asset │ │ ├── ClipMapVectorFactory.asset.meta │ │ ├── ClipMergedBuildingStack.asset │ │ ├── ClipMergedBuildingStack.asset.meta │ │ ├── ClipPolygonModifier.asset │ │ └── ClipPolygonModifier.asset.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Clip_BuildingsMaterial.mat │ │ ├── Clip_BuildingsMaterial.mat.meta │ │ ├── Clip_BuildingsMaterial_top.mat │ │ ├── Clip_BuildingsMaterial_top.mat.meta │ │ ├── Clip_TerrainMaterial.mat │ │ └── Clip_TerrainMaterial.mat.meta │ ├── Prefab.meta │ ├── Prefab │ │ ├── TabletopSetup.prefab │ │ └── TabletopSetup.prefab.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── ARPlaneHandler.cs │ │ ├── ARPlaneHandler.cs.meta │ │ ├── ARTableTileProvider.cs │ │ ├── ARTableTileProvider.cs.meta │ │ ├── PlaceMapOnARPlane.cs │ │ ├── PlaceMapOnARPlane.cs.meta │ │ ├── UpdateShaderCoordinatesByARPlane.cs │ │ └── UpdateShaderCoordinatesByARPlane.cs.meta │ ├── Shader.meta │ ├── Shader │ │ ├── Clip_Box.shader │ │ ├── Clip_Box.shader.meta │ │ ├── LICENSE.txt │ │ └── LICENSE.txt.meta │ ├── Textures.meta │ └── Textures │ │ ├── Green_Texture.png │ │ ├── Green_Texture.png.meta │ │ ├── orange_texture.png │ │ ├── orange_texture.png.meta │ │ ├── red_texture.png │ │ ├── red_texture.png.meta │ │ ├── yellow_texture.png │ │ └── yellow_texture.png.meta ├── GoogleARCore.meta ├── GoogleARCore │ ├── Configurations.meta │ ├── Configurations │ │ ├── DefaultSessionConfig.asset │ │ └── DefaultSessionConfig.asset.meta │ ├── Examples.meta │ ├── Examples │ │ ├── ComputerVision.meta │ │ ├── ComputerVision │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── AREdgeDetectionBackground.shader │ │ │ │ ├── AREdgeDetectionBackground.shader.meta │ │ │ │ ├── AREdgeDetectionBackgroundMaterial.mat │ │ │ │ └── AREdgeDetectionBackgroundMaterial.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 │ │ │ │ ├── TextureReader.cs │ │ │ │ ├── TextureReader.cs.meta │ │ │ │ ├── TextureReaderApi.cs │ │ │ │ └── TextureReaderApi.cs.meta │ │ ├── HelloAR.meta │ │ └── HelloAR │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ ├── Andy.meta │ │ │ ├── Andy │ │ │ │ ├── Andy.obj │ │ │ │ ├── Andy.obj.meta │ │ │ │ ├── AndyBlobShadow.obj │ │ │ │ ├── AndyBlobShadow.obj.meta │ │ │ │ ├── AndyBlobShadow.png │ │ │ │ ├── AndyBlobShadow.png.meta │ │ │ │ ├── AndyMaterial.mat │ │ │ │ ├── AndyMaterial.mat.meta │ │ │ │ ├── AndyShadowMaterial.mat │ │ │ │ ├── AndyShadowMaterial.mat.meta │ │ │ │ ├── Andy_DiffuseLit.png │ │ │ │ └── Andy_DiffuseLit.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 │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon.png.meta │ │ │ │ ├── TriGrid.png │ │ │ │ └── TriGrid.png.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ ├── Andy.prefab │ │ │ ├── Andy.prefab.meta │ │ │ ├── TrackedPlaneVisualizer.prefab │ │ │ └── TrackedPlaneVisualizer.prefab.meta │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Regular.ttf.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ ├── HelloAR.unity │ │ │ └── HelloAR.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ ├── HelloARController.cs │ │ │ ├── HelloARController.cs.meta │ │ │ ├── PointcloudVisualizer.cs │ │ │ ├── PointcloudVisualizer.cs.meta │ │ │ ├── TrackedPlaneVisualizer.cs │ │ │ └── TrackedPlaneVisualizer.cs.meta │ ├── LICENSE │ ├── LICENSE.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── ARCore Device.prefab │ │ ├── ARCore Device.prefab.meta │ │ ├── Environmental Light.prefab │ │ └── Environmental Light.prefab.meta │ ├── SDK.meta │ └── SDK │ │ ├── Materials.meta │ │ ├── Materials │ │ ├── ARBackground.mat │ │ ├── ARBackground.mat.meta │ │ ├── ARBackground.shader │ │ └── ARBackground.shader.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ ├── arcore_client.aar │ │ ├── arcore_client.aar.meta │ │ ├── libarcore_unity_api.so │ │ ├── libarcore_unity_api.so.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 │ │ ├── AnchorApi.cs │ │ ├── AnchorApi.cs.meta │ │ ├── ApiArStatus.cs │ │ ├── ApiArStatus.cs.meta │ │ ├── ApiCameraMetadata.cs │ │ ├── ApiCameraMetadata.cs.meta │ │ ├── ApiConstants.cs │ │ ├── ApiConstants.cs.meta │ │ ├── ApiDisplayUvCoords.cs │ │ ├── ApiDisplayUvCoords.cs.meta │ │ ├── ApiLightEstimateState.cs │ │ ├── ApiLightEstimateState.cs.meta │ │ ├── ApiLightEstimateStateExtensions.cs │ │ ├── ApiLightEstimateStateExtensions.cs.meta │ │ ├── ApiPlaneFindingMode.cs │ │ ├── ApiPlaneFindingMode.cs.meta │ │ ├── ApiPoseData.cs │ │ ├── ApiPoseData.cs.meta │ │ ├── ApiTrackableType.cs │ │ ├── ApiTrackableType.cs.meta │ │ ├── ApiTrackableTypeExtensions.cs │ │ ├── ApiTrackableTypeExtensions.cs.meta │ │ ├── ApiTrackingState.cs │ │ ├── ApiTrackingState.cs.meta │ │ ├── ApiTrackingStateExtensions.cs │ │ ├── ApiTrackingStateExtensions.cs.meta │ │ ├── ApiUpdateMode.cs │ │ ├── ApiUpdateMode.cs.meta │ │ ├── CameraApi.cs │ │ ├── CameraApi.cs.meta │ │ ├── CameraMetadataApi.cs │ │ ├── CameraMetadataApi.cs.meta │ │ ├── FrameApi.cs │ │ ├── FrameApi.cs.meta │ │ ├── HitTestApi.cs │ │ ├── HitTestApi.cs.meta │ │ ├── LightEstimateApi.cs │ │ ├── LightEstimateApi.cs.meta │ │ ├── NativeApi.cs │ │ ├── NativeApi.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 │ │ ├── ApiLightEstimationMode.cs │ │ ├── ApiLightEstimationMode.cs.meta │ │ ├── Async.meta │ │ ├── Async │ │ ├── WaitForTaskCompletionYieldInstruction.cs │ │ └── WaitForTaskCompletionYieldInstruction.cs.meta │ │ ├── AsyncTask.cs │ │ ├── AsyncTask.cs.meta │ │ ├── CameraMetadataTag.cs │ │ ├── CameraMetadataTag.cs.meta │ │ ├── CameraMetadataValue.cs │ │ ├── CameraMetadataValue.cs.meta │ │ ├── EnvironmentalLight.cs │ │ ├── EnvironmentalLight.cs.meta │ │ ├── Frame.cs │ │ ├── Frame.cs.meta │ │ ├── LightEstimate.cs │ │ ├── LightEstimate.cs.meta │ │ ├── LightEstimateState.cs │ │ ├── LightEstimateState.cs.meta │ │ ├── Managers.meta │ │ ├── Managers │ │ ├── CameraMetadataManager.cs │ │ ├── CameraMetadataManager.cs.meta │ │ ├── FrameManager.cs │ │ ├── FrameManager.cs.meta │ │ ├── PointCloudManager.cs │ │ ├── PointCloudManager.cs.meta │ │ ├── SessionManager.cs │ │ ├── SessionManager.cs.meta │ │ ├── TrackableManager.cs │ │ └── TrackableManager.cs.meta │ │ ├── PointCloudPoint.cs │ │ ├── PointCloudPoint.cs.meta │ │ ├── Session.cs │ │ ├── Session.cs.meta │ │ ├── SessionConnectionState.cs │ │ ├── SessionConnectionState.cs.meta │ │ ├── Trackable.cs │ │ ├── Trackable.cs.meta │ │ ├── TrackableHit.cs │ │ ├── TrackableHit.cs.meta │ │ ├── TrackableHitFlags.cs │ │ ├── TrackableHitFlags.cs.meta │ │ ├── TrackableQueryFilter.cs │ │ ├── TrackableQueryFilter.cs.meta │ │ ├── TrackedPlane.cs │ │ ├── TrackedPlane.cs.meta │ │ ├── TrackedPoint.cs │ │ ├── TrackedPoint.cs.meta │ │ ├── TrackingState.cs │ │ ├── TrackingState.cs.meta │ │ ├── Utility.meta │ │ └── Utility │ │ ├── ARDebug.cs │ │ ├── ARDebug.cs.meta │ │ ├── ConversionHelper.cs │ │ ├── ConversionHelper.cs.meta │ │ ├── IntPtrEqualityComparer.cs │ │ ├── IntPtrEqualityComparer.cs.meta │ │ ├── MarshalingHelper.cs │ │ └── MarshalingHelper.cs.meta ├── Mapbox.meta ├── Mapbox │ ├── Core.meta │ ├── Core │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── Android.meta │ │ │ ├── Android │ │ │ │ ├── animated-vector-drawable-25.1.0.aar │ │ │ │ ├── animated-vector-drawable-25.1.0.aar.meta │ │ │ │ ├── appcompat-v7-25.1.0.aar │ │ │ │ ├── appcompat-v7-25.1.0.aar.meta │ │ │ │ ├── mapbox-android-telemetry-2-1-0.aar │ │ │ │ ├── mapbox-android-telemetry-2-1-0.aar.meta │ │ │ │ ├── okhttp-3.8.0.jar │ │ │ │ ├── okhttp-3.8.0.jar.meta │ │ │ │ ├── okio-1.13.0.jar │ │ │ │ ├── okio-1.13.0.jar.meta │ │ │ │ ├── support-compat-25.1.0.aar │ │ │ │ ├── support-compat-25.1.0.aar.meta │ │ │ │ ├── support-core-ui-25.1.0.aar │ │ │ │ ├── support-core-ui-25.1.0.aar.meta │ │ │ │ ├── support-core-utils-25.1.0.aar │ │ │ │ ├── support-core-utils-25.1.0.aar.meta │ │ │ │ ├── support-media-compat-25.1.0.aar │ │ │ │ ├── support-media-compat-25.1.0.aar.meta │ │ │ │ ├── support-v4-25.1.0.aar │ │ │ │ ├── support-v4-25.1.0.aar.meta │ │ │ │ ├── support-vector-drawable-25.1.0.aar │ │ │ │ └── support-vector-drawable-25.1.0.aar.meta │ │ │ ├── Mapbox.meta │ │ │ ├── Mapbox │ │ │ │ ├── vector-tile-cs.meta │ │ │ │ └── vector-tile-cs │ │ │ │ │ ├── ExtensionMethods.meta │ │ │ │ │ ├── ExtensionMethods │ │ │ │ │ ├── Enums.cs │ │ │ │ │ ├── Enums.cs.meta │ │ │ │ │ ├── VectorTile.cs │ │ │ │ │ ├── VectorTile.cs.meta │ │ │ │ │ ├── VectorTileFeature.cs │ │ │ │ │ └── VectorTileFeature.cs.meta │ │ │ │ │ ├── Geometry.meta │ │ │ │ │ ├── Geometry │ │ │ │ │ ├── DecodeGeometry.cs │ │ │ │ │ ├── DecodeGeometry.cs.meta │ │ │ │ │ ├── Geometry.cs │ │ │ │ │ ├── Geometry.cs.meta │ │ │ │ │ ├── Util.cs │ │ │ │ │ ├── Util.cs.meta │ │ │ │ │ ├── clipper.cs │ │ │ │ │ └── clipper.cs.meta │ │ │ │ │ ├── PbfReader.meta │ │ │ │ │ ├── PbfReader │ │ │ │ │ ├── Constants.cs │ │ │ │ │ ├── Constants.cs.meta │ │ │ │ │ ├── PbfReader.cs │ │ │ │ │ └── PbfReader.cs.meta │ │ │ │ │ ├── VectorTileReader.meta │ │ │ │ │ └── VectorTileReader │ │ │ │ │ ├── VectorTile.cs │ │ │ │ │ ├── VectorTile.cs.meta │ │ │ │ │ ├── VectorTileFeature.cs │ │ │ │ │ ├── VectorTileFeature.cs.meta │ │ │ │ │ ├── VectorTileLayer.cs │ │ │ │ │ ├── VectorTileLayer.cs.meta │ │ │ │ │ ├── VectorTileReader.cs │ │ │ │ │ └── VectorTileReader.cs.meta │ │ │ ├── ThirdParty.meta │ │ │ ├── ThirdParty │ │ │ │ ├── Mapbox.IO.Compression.meta │ │ │ │ ├── Mapbox.IO.Compression │ │ │ │ │ ├── net35.meta │ │ │ │ │ ├── net35 │ │ │ │ │ │ ├── Mapbox.IO.Compression.dll │ │ │ │ │ │ ├── Mapbox.IO.Compression.dll.meta │ │ │ │ │ │ ├── Mapbox.IO.Compression.pdb │ │ │ │ │ │ └── Mapbox.IO.Compression.pdb.meta │ │ │ │ │ ├── uap10.meta │ │ │ │ │ └── uap10 │ │ │ │ │ │ ├── Mapbox.IO.Compression.dll │ │ │ │ │ │ ├── Mapbox.IO.Compression.dll.meta │ │ │ │ │ │ ├── Mapbox.IO.Compression.pdb │ │ │ │ │ │ └── Mapbox.IO.Compression.pdb.meta │ │ │ │ ├── Mapbox.Json.meta │ │ │ │ └── Mapbox.Json │ │ │ │ │ ├── Net35.meta │ │ │ │ │ ├── Net35 │ │ │ │ │ ├── Mapbox.Json.dll │ │ │ │ │ ├── Mapbox.Json.dll.meta │ │ │ │ │ ├── Mapbox.Json.pdb │ │ │ │ │ └── Mapbox.Json.pdb.meta │ │ │ │ │ ├── Portable.meta │ │ │ │ │ └── Portable │ │ │ │ │ ├── Mapbox.Json.dll │ │ │ │ │ ├── Mapbox.Json.dll.meta │ │ │ │ │ ├── Mapbox.Json.pdb │ │ │ │ │ └── Mapbox.Json.pdb.meta │ │ │ ├── iOS.meta │ │ │ ├── iOS │ │ │ │ ├── MapboxMetricsClient.m │ │ │ │ ├── MapboxMetricsClient.m.meta │ │ │ │ ├── MapboxMobileEvents.meta │ │ │ │ └── MapboxMobileEvents │ │ │ │ │ ├── include.meta │ │ │ │ │ ├── include │ │ │ │ │ ├── MapboxMobileEvents.meta │ │ │ │ │ └── MapboxMobileEvents │ │ │ │ │ │ ├── MMEConstants.h │ │ │ │ │ │ ├── MMEConstants.h.meta │ │ │ │ │ │ ├── MMEEvent.h │ │ │ │ │ │ ├── MMEEvent.h.meta │ │ │ │ │ │ ├── MMEEventsManager.h │ │ │ │ │ │ ├── MMEEventsManager.h.meta │ │ │ │ │ │ ├── MMETypes.h │ │ │ │ │ │ ├── MMETypes.h.meta │ │ │ │ │ │ ├── MapboxMobileEvents.h │ │ │ │ │ │ └── MapboxMobileEvents.h.meta │ │ │ │ │ ├── libMapboxMobileEventsStatic.a │ │ │ │ │ └── libMapboxMobileEventsStatic.a.meta │ │ │ ├── link.xml │ │ │ ├── link.xml.meta │ │ │ ├── sqlite.meta │ │ │ └── sqlite │ │ │ │ ├── Android.meta │ │ │ │ ├── Android │ │ │ │ ├── libs.meta │ │ │ │ └── libs │ │ │ │ │ ├── armeabi-v7a.meta │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ ├── libsqlite3.so │ │ │ │ │ └── libsqlite3.so.meta │ │ │ │ │ ├── x86.meta │ │ │ │ │ └── x86 │ │ │ │ │ ├── libsqlite3.so │ │ │ │ │ └── libsqlite3.so.meta │ │ │ │ ├── x64.meta │ │ │ │ ├── x64 │ │ │ │ ├── sqlite3.dll │ │ │ │ └── sqlite3.dll.meta │ │ │ │ ├── x86.meta │ │ │ │ └── x86 │ │ │ │ ├── sqlite3.dll │ │ │ │ └── sqlite3.dll.meta │ │ ├── mapbox-sdk-cs.meta │ │ └── mapbox-sdk-cs │ │ │ ├── Directions.meta │ │ │ ├── Directions │ │ │ ├── DirectionResource.cs │ │ │ ├── DirectionResource.cs.meta │ │ │ ├── Directions.cs │ │ │ ├── Directions.cs.meta │ │ │ ├── Overview.cs │ │ │ ├── Overview.cs.meta │ │ │ ├── Response.meta │ │ │ ├── Response │ │ │ │ ├── Annotation.cs │ │ │ │ ├── Annotation.cs.meta │ │ │ │ ├── DirectionsResponse.cs │ │ │ │ ├── DirectionsResponse.cs.meta │ │ │ │ ├── Intersection.cs │ │ │ │ ├── Intersection.cs.meta │ │ │ │ ├── Leg.cs │ │ │ │ ├── Leg.cs.meta │ │ │ │ ├── Maneuver.cs │ │ │ │ ├── Maneuver.cs.meta │ │ │ │ ├── Route.cs │ │ │ │ ├── Route.cs.meta │ │ │ │ ├── Step.cs │ │ │ │ ├── Step.cs.meta │ │ │ │ ├── Waypoint.cs │ │ │ │ └── Waypoint.cs.meta │ │ │ ├── RoutingProfile.cs │ │ │ └── RoutingProfile.cs.meta │ │ │ ├── Geocoding.meta │ │ │ ├── Geocoding │ │ │ ├── ForwardGeocodeResource.cs │ │ │ ├── ForwardGeocodeResource.cs.meta │ │ │ ├── GeocodeResource.cs │ │ │ ├── GeocodeResource.cs.meta │ │ │ ├── Geocoder.cs │ │ │ ├── Geocoder.cs.meta │ │ │ ├── Response.meta │ │ │ ├── Response │ │ │ │ ├── Feature.cs │ │ │ │ ├── Feature.cs.meta │ │ │ │ ├── GeocodeResponse.cs │ │ │ │ ├── GeocodeResponse.cs.meta │ │ │ │ ├── Geometry.cs │ │ │ │ └── Geometry.cs.meta │ │ │ ├── ReverseGeocodeResource.cs │ │ │ └── ReverseGeocodeResource.cs.meta │ │ │ ├── Map.meta │ │ │ ├── Map │ │ │ ├── CanonicalTileId.cs │ │ │ ├── CanonicalTileId.cs.meta │ │ │ ├── ClassicRasterTile.cs │ │ │ ├── ClassicRasterTile.cs.meta │ │ │ ├── ClassicRetinaRasterTile.cs │ │ │ ├── ClassicRetinaRasterTile.cs.meta │ │ │ ├── Map.cs │ │ │ ├── Map.cs.meta │ │ │ ├── MapUtils.cs │ │ │ ├── MapUtils.cs.meta │ │ │ ├── RasterTile.cs │ │ │ ├── RasterTile.cs.meta │ │ │ ├── RawPngRasterTile.cs │ │ │ ├── RawPngRasterTile.cs.meta │ │ │ ├── RetinaRasterTile.cs │ │ │ ├── RetinaRasterTile.cs.meta │ │ │ ├── StyleOptimizedVectorTile.cs │ │ │ ├── StyleOptimizedVectorTile.cs.meta │ │ │ ├── Tile.cs │ │ │ ├── Tile.cs.meta │ │ │ ├── TileCover.cs │ │ │ ├── TileCover.cs.meta │ │ │ ├── TileErrorEventArgs.cs │ │ │ ├── TileErrorEventArgs.cs.meta │ │ │ ├── TileResource.cs │ │ │ ├── TileResource.cs.meta │ │ │ ├── UnwrappedTileId.cs │ │ │ ├── UnwrappedTileId.cs.meta │ │ │ ├── VectorTile.cs │ │ │ └── VectorTile.cs.meta │ │ │ ├── MapMatching.meta │ │ │ ├── MapMatching │ │ │ ├── MapMatcher.cs │ │ │ ├── MapMatcher.cs.meta │ │ │ ├── MapMatchingParameters.cs │ │ │ ├── MapMatchingParameters.cs.meta │ │ │ ├── MapMatchingResource.cs │ │ │ ├── MapMatchingResource.cs.meta │ │ │ ├── MapMatchingResponse.cs │ │ │ ├── MapMatchingResponse.cs.meta │ │ │ ├── MatchObject.cs │ │ │ ├── MatchObject.cs.meta │ │ │ ├── Tracepoint.cs │ │ │ └── Tracepoint.cs.meta │ │ │ ├── Platform.meta │ │ │ ├── Platform │ │ │ ├── Cache.meta │ │ │ ├── Cache │ │ │ │ ├── CachingWebFileSource.cs │ │ │ │ ├── CachingWebFileSource.cs.meta │ │ │ │ ├── ICache.cs │ │ │ │ ├── ICache.cs.meta │ │ │ │ ├── MbTilesCache.cs │ │ │ │ ├── MbTilesCache.cs.meta │ │ │ │ ├── MemoryCache.cs │ │ │ │ └── MemoryCache.cs.meta │ │ │ ├── FileSource.cs │ │ │ ├── FileSource.cs.meta │ │ │ ├── HTTPRequestNonThreaded.cs │ │ │ ├── HTTPRequestNonThreaded.cs.meta │ │ │ ├── HTTPRequestThreaded.cs │ │ │ ├── HTTPRequestThreaded.cs.meta │ │ │ ├── IAsyncRequest.cs │ │ │ ├── IAsyncRequest.cs.meta │ │ │ ├── IAsyncRequestFactory.cs │ │ │ ├── IAsyncRequestFactory.cs.meta │ │ │ ├── IFileSource.cs │ │ │ ├── IFileSource.cs.meta │ │ │ ├── IResource.cs │ │ │ ├── IResource.cs.meta │ │ │ ├── MbTiles.meta │ │ │ ├── MbTiles │ │ │ │ ├── MbTiles.cs │ │ │ │ ├── MbTiles.cs.meta │ │ │ │ ├── MetaData.cs │ │ │ │ ├── MetaData.cs.meta │ │ │ │ ├── MetaDataRequired.cs │ │ │ │ ├── MetaDataRequired.cs.meta │ │ │ │ ├── Tiles.cs │ │ │ │ └── Tiles.cs.meta │ │ │ ├── Resource.cs │ │ │ ├── Resource.cs.meta │ │ │ ├── Response.cs │ │ │ ├── Response.cs.meta │ │ │ ├── SQLite.meta │ │ │ └── SQLite │ │ │ │ ├── SQLite.cs │ │ │ │ └── SQLite.cs.meta │ │ │ ├── Tests.meta │ │ │ ├── Tests │ │ │ ├── UnitTests.meta │ │ │ └── UnitTests │ │ │ │ ├── Editor.meta │ │ │ │ └── Editor │ │ │ │ ├── BboxToGeoCoordinateBoundsConverterTest.cs │ │ │ │ ├── BboxToGeoCoordinateBoundsConverterTest.cs.meta │ │ │ │ ├── BearingFilterTest.cs │ │ │ │ ├── BearingFilterTest.cs.meta │ │ │ │ ├── CanonicalTileIdTest.cs │ │ │ │ ├── CanonicalTileIdTest.cs.meta │ │ │ │ ├── CompressionTest.cs │ │ │ │ ├── CompressionTest.cs.meta │ │ │ │ ├── DirectionResourceTest.cs │ │ │ │ ├── DirectionResourceTest.cs.meta │ │ │ │ ├── DirectionsTest.cs │ │ │ │ ├── DirectionsTest.cs.meta │ │ │ │ ├── FileSourceTest.cs │ │ │ │ ├── FileSourceTest.cs.meta │ │ │ │ ├── ForwardGeocodeResourceTest.cs │ │ │ │ ├── ForwardGeocodeResourceTest.cs.meta │ │ │ │ ├── GeoCoordinateBoundsTest.cs │ │ │ │ ├── GeoCoordinateBoundsTest.cs.meta │ │ │ │ ├── GeoCoordinateTest.cs │ │ │ │ ├── GeoCoordinateTest.cs.meta │ │ │ │ ├── GeocoderTest.cs │ │ │ │ ├── GeocoderTest.cs.meta │ │ │ │ ├── LonLatToGeoCoordinateConverterTest.cs │ │ │ │ ├── LonLatToGeoCoordinateConverterTest.cs.meta │ │ │ │ ├── MapMatcherTest.cs │ │ │ │ ├── MapMatcherTest.cs.meta │ │ │ │ ├── MapTest.cs │ │ │ │ ├── MapTest.cs.meta │ │ │ │ ├── PolylineToGeoCoordinateListConverterTest.cs │ │ │ │ ├── PolylineToGeoCoordinateListConverterTest.cs.meta │ │ │ │ ├── PolylineUtilsTest.cs │ │ │ │ ├── PolylineUtilsTest.cs.meta │ │ │ │ ├── ReverseGeocodeResourceTest.cs │ │ │ │ ├── ReverseGeocodeResourceTest.cs.meta │ │ │ │ ├── TileCoverTest.cs │ │ │ │ ├── TileCoverTest.cs.meta │ │ │ │ ├── TileResourceTest.cs │ │ │ │ ├── TileResourceTest.cs.meta │ │ │ │ ├── TileTest.cs │ │ │ │ ├── TileTest.cs.meta │ │ │ │ ├── TokenTest.cs │ │ │ │ ├── TokenTest.cs.meta │ │ │ │ ├── Utils.cs │ │ │ │ ├── Utils.cs.meta │ │ │ │ ├── VectorTileTest.cs │ │ │ │ └── VectorTileTest.cs.meta │ │ │ ├── Tokens.meta │ │ │ ├── Tokens │ │ │ ├── MapboxToken.cs │ │ │ ├── MapboxToken.cs.meta │ │ │ ├── MapboxTokenApi.cs │ │ │ └── MapboxTokenApi.cs.meta │ │ │ ├── Utils.meta │ │ │ └── Utils │ │ │ ├── BearingFilter.cs │ │ │ ├── BearingFilter.cs.meta │ │ │ ├── Compression.cs │ │ │ ├── Compression.cs.meta │ │ │ ├── Constants.cs │ │ │ ├── Constants.cs.meta │ │ │ ├── GeoCoordinate.cs │ │ │ ├── GeoCoordinate.cs.meta │ │ │ ├── GeoCoordinateBounds.cs │ │ │ ├── GeoCoordinateBounds.cs.meta │ │ │ ├── IObservable.cs │ │ │ ├── IObservable.cs.meta │ │ │ ├── IObserver.cs │ │ │ ├── IObserver.cs.meta │ │ │ ├── JsonConverters.meta │ │ │ ├── JsonConverters │ │ │ ├── BboxToGeoCoordinateBoundsConverter.cs │ │ │ ├── BboxToGeoCoordinateBoundsConverter.cs.meta │ │ │ ├── JsonConverters.cs │ │ │ ├── JsonConverters.cs.meta │ │ │ ├── LonLatToGeoCoordinateConverter.cs │ │ │ ├── LonLatToGeoCoordinateConverter.cs.meta │ │ │ ├── PolylineToGeoCoordinateListConverter.cs │ │ │ └── PolylineToGeoCoordinateListConverter.cs.meta │ │ │ ├── PolylineUtils.cs │ │ │ ├── PolylineUtils.cs.meta │ │ │ ├── UnixTimestampUtils.cs │ │ │ ├── UnixTimestampUtils.cs.meta │ │ │ ├── Vector2d.meta │ │ │ └── Vector2d │ │ │ ├── Mathd.cs │ │ │ ├── Mathd.cs.meta │ │ │ ├── RectD.cs │ │ │ ├── RectD.cs.meta │ │ │ ├── Vector2d.cs │ │ │ └── Vector2d.cs.meta │ ├── Examples.meta │ ├── Examples │ │ ├── 1_Explorer.meta │ │ ├── 1_Explorer │ │ │ ├── Explorer.unity │ │ │ ├── Explorer.unity.meta │ │ │ ├── ExplorerMapVisualizer.asset │ │ │ ├── ExplorerMapVisualizer.asset.meta │ │ │ ├── Modules.meta │ │ │ ├── Modules │ │ │ │ ├── AdminLayer.meta │ │ │ │ ├── AdminLayer │ │ │ │ │ ├── ExplorerAdminHeightModifier.asset │ │ │ │ │ ├── ExplorerAdminHeightModifier.asset.meta │ │ │ │ │ ├── ExplorerAdminLayer.asset │ │ │ │ │ ├── ExplorerAdminLayer.asset.meta │ │ │ │ │ ├── ExplorerBlack.mat │ │ │ │ │ ├── ExplorerBlack.mat.meta │ │ │ │ │ ├── ExplorerBlackMaterialModifier.asset │ │ │ │ │ ├── ExplorerBlackMaterialModifier.asset.meta │ │ │ │ │ ├── ExplorerDefaultAdmin.asset │ │ │ │ │ └── ExplorerDefaultAdmin.asset.meta │ │ │ │ ├── Aeroway.meta │ │ │ │ ├── Aeroway │ │ │ │ │ ├── ExplorerAeroway.mat │ │ │ │ │ ├── ExplorerAeroway.mat.meta │ │ │ │ │ ├── ExplorerAerowayLayer.asset │ │ │ │ │ ├── ExplorerAerowayLayer.asset.meta │ │ │ │ │ ├── ExplorerAerowayMaterialModifier.asset │ │ │ │ │ ├── ExplorerAerowayMaterialModifier.asset.meta │ │ │ │ │ ├── ExplorerDefaultAeroway.asset │ │ │ │ │ └── ExplorerDefaultAeroway.asset.meta │ │ │ │ ├── BarrierLine.meta │ │ │ │ ├── BarrierLine │ │ │ │ │ ├── ExplorerBarrierHeightModifier.asset │ │ │ │ │ ├── ExplorerBarrierHeightModifier.asset.meta │ │ │ │ │ ├── ExplorerBarrierLayer.asset │ │ │ │ │ ├── ExplorerBarrierLayer.asset.meta │ │ │ │ │ ├── ExplorerBarrierLineMeshModifier.asset │ │ │ │ │ ├── ExplorerBarrierLineMeshModifier.asset.meta │ │ │ │ │ ├── ExplorerDefaultBarrier.asset │ │ │ │ │ └── ExplorerDefaultBarrier.asset.meta │ │ │ │ ├── BuildingLayer.meta │ │ │ │ ├── BuildingLayer │ │ │ │ │ ├── ExplorerBuildingLayer.asset │ │ │ │ │ ├── ExplorerBuildingLayer.asset.meta │ │ │ │ │ ├── ExplorerDefaultBuilding.asset │ │ │ │ │ ├── ExplorerDefaultBuilding.asset.meta │ │ │ │ │ ├── ExplorerFlatTopHeightModifier.asset │ │ │ │ │ ├── ExplorerFlatTopHeightModifier.asset.meta │ │ │ │ │ ├── ExplorerWhite.mat │ │ │ │ │ ├── ExplorerWhite.mat.meta │ │ │ │ │ ├── ExplorerWhiteMaterialModifier.asset │ │ │ │ │ └── ExplorerWhiteMaterialModifier.asset.meta │ │ │ │ ├── Contour.meta │ │ │ │ ├── Contour │ │ │ │ │ ├── ExplorerContour.mat │ │ │ │ │ ├── ExplorerContour.mat.meta │ │ │ │ │ ├── ExplorerContourLayer.asset │ │ │ │ │ ├── ExplorerContourLayer.asset.meta │ │ │ │ │ ├── ExplorerContourMaterialModifier.asset │ │ │ │ │ ├── ExplorerContourMaterialModifier.asset.meta │ │ │ │ │ ├── ExplorerDefaultContour.asset │ │ │ │ │ └── ExplorerDefaultContour.asset.meta │ │ │ │ ├── ExplorerFeatureBehaviourModifier.asset │ │ │ │ ├── ExplorerFeatureBehaviourModifier.asset.meta │ │ │ │ ├── ExplorerHeightModifier.asset │ │ │ │ ├── ExplorerHeightModifier.asset.meta │ │ │ │ ├── ExplorerLineModifier.asset │ │ │ │ ├── ExplorerLineModifier.asset.meta │ │ │ │ ├── ExplorerPolygonModifier.asset │ │ │ │ ├── ExplorerPolygonModifier.asset.meta │ │ │ │ ├── ExplorerUvModifier.asset │ │ │ │ ├── ExplorerUvModifier.asset.meta │ │ │ │ ├── HillshadeLayer.meta │ │ │ │ ├── HillshadeLayer │ │ │ │ │ ├── ExplorerBrown.mat │ │ │ │ │ ├── ExplorerBrown.mat.meta │ │ │ │ │ ├── ExplorerBrownMaterialModifier.asset │ │ │ │ │ ├── ExplorerBrownMaterialModifier.asset.meta │ │ │ │ │ ├── ExplorerDefaultHillshade.asset │ │ │ │ │ ├── ExplorerDefaultHillshade.asset.meta │ │ │ │ │ ├── ExplorerHillshadeHeightModifier.asset │ │ │ │ │ ├── ExplorerHillshadeHeightModifier.asset.meta │ │ │ │ │ ├── ExplorerHillshadeLayer.asset │ │ │ │ │ └── ExplorerHillshadeLayer.asset.meta │ │ │ │ ├── ImageFactory.meta │ │ │ │ ├── ImageFactory │ │ │ │ │ ├── ExplorerImageFactory.asset │ │ │ │ │ └── ExplorerImageFactory.asset.meta │ │ │ │ ├── LabelLayers.meta │ │ │ │ ├── LabelLayers │ │ │ │ │ ├── ExplorerAirportLabelLayer.asset │ │ │ │ │ ├── ExplorerAirportLabelLayer.asset.meta │ │ │ │ │ ├── ExplorerCountryLabelLayer.asset │ │ │ │ │ ├── ExplorerCountryLabelLayer.asset.meta │ │ │ │ │ ├── ExplorerHousenumLabelLayer.asset │ │ │ │ │ ├── ExplorerHousenumLabelLayer.asset.meta │ │ │ │ │ ├── ExplorerMarineLabelLayer.asset │ │ │ │ │ ├── ExplorerMarineLabelLayer.asset.meta │ │ │ │ │ ├── ExplorerMountainPeakLabelLayer.asset │ │ │ │ │ ├── ExplorerMountainPeakLabelLayer.asset.meta │ │ │ │ │ ├── ExplorerPlaceLabelLayer.asset │ │ │ │ │ ├── ExplorerPlaceLabelLayer.asset.meta │ │ │ │ │ ├── ExplorerPoiLabelLayer.asset │ │ │ │ │ ├── ExplorerPoiLabelLayer.asset.meta │ │ │ │ │ ├── ExplorerRailstationLabelLayer.asset │ │ │ │ │ ├── ExplorerRailstationLabelLayer.asset.meta │ │ │ │ │ ├── ExplorerRoadLabelLayer.asset │ │ │ │ │ ├── ExplorerRoadLabelLayer.asset.meta │ │ │ │ │ ├── ExplorerStateLabelLayer.asset │ │ │ │ │ ├── ExplorerStateLabelLayer.asset.meta │ │ │ │ │ ├── ExplorerWaterLabelLayer.asset │ │ │ │ │ ├── ExplorerWaterLabelLayer.asset.meta │ │ │ │ │ ├── ExplorerWaterwayLabelLayer.asset │ │ │ │ │ └── ExplorerWaterwayLabelLayer.asset.meta │ │ │ │ ├── LandcoverLayer.meta │ │ │ │ ├── LandcoverLayer │ │ │ │ │ ├── ExplorerDarkGreen.mat │ │ │ │ │ ├── ExplorerDarkGreen.mat.meta │ │ │ │ │ ├── ExplorerDarkGreenMaterialModifier.asset │ │ │ │ │ ├── ExplorerDarkGreenMaterialModifier.asset.meta │ │ │ │ │ ├── ExplorerDefaultLandcover.asset │ │ │ │ │ ├── ExplorerDefaultLandcover.asset.meta │ │ │ │ │ ├── ExplorerLandCoverHeightModifier.asset │ │ │ │ │ ├── ExplorerLandCoverHeightModifier.asset.meta │ │ │ │ │ ├── ExplorerLandcoverLayer.asset │ │ │ │ │ └── ExplorerLandcoverLayer.asset.meta │ │ │ │ ├── LanduseLayer.meta │ │ │ │ ├── LanduseLayer │ │ │ │ │ ├── ExplorerDefaultLanduse.asset │ │ │ │ │ ├── ExplorerDefaultLanduse.asset.meta │ │ │ │ │ ├── ExplorerGreen.mat │ │ │ │ │ ├── ExplorerGreen.mat.meta │ │ │ │ │ ├── ExplorerGreenMaterialModifier.asset │ │ │ │ │ ├── ExplorerGreenMaterialModifier.asset.meta │ │ │ │ │ ├── ExplorerLanduseHeightModifier.asset │ │ │ │ │ ├── ExplorerLanduseHeightModifier.asset.meta │ │ │ │ │ ├── ExplorerLanduseLayer.asset │ │ │ │ │ └── ExplorerLanduseLayer.asset.meta │ │ │ │ ├── LanduseOverlayLayer.meta │ │ │ │ ├── LanduseOverlayLayer │ │ │ │ │ ├── ExplorerDefaultLanduseOverlay.asset │ │ │ │ │ ├── ExplorerDefaultLanduseOverlay.asset.meta │ │ │ │ │ ├── ExplorerLanduseOverlayHeightModifier.asset │ │ │ │ │ ├── ExplorerLanduseOverlayHeightModifier.asset.meta │ │ │ │ │ ├── ExplorerLanduseOverlayLayer.asset │ │ │ │ │ └── ExplorerLanduseOverlayLayer.asset.meta │ │ │ │ ├── MotorwayJunctionLayer.meta │ │ │ │ ├── MotorwayJunctionLayer │ │ │ │ │ ├── ExplorerDefaultPoint.asset │ │ │ │ │ ├── ExplorerDefaultPoint.asset.meta │ │ │ │ │ ├── ExplorerMotorwayJunctionLayer.asset │ │ │ │ │ ├── ExplorerMotorwayJunctionLayer.asset.meta │ │ │ │ │ ├── ExplorerPointPrefabModifier.asset │ │ │ │ │ ├── ExplorerPointPrefabModifier.asset.meta │ │ │ │ │ ├── PointPrefab.prefab │ │ │ │ │ └── PointPrefab.prefab.meta │ │ │ │ ├── Resources.meta │ │ │ │ ├── Resources │ │ │ │ │ ├── ExplorerCountryLabelPrefabModifier.asset │ │ │ │ │ ├── ExplorerCountryLabelPrefabModifier.asset.meta │ │ │ │ │ ├── ExplorerDefaultLabel.asset │ │ │ │ │ ├── ExplorerDefaultLabel.asset.meta │ │ │ │ │ ├── LabelPrefab.prefab │ │ │ │ │ └── LabelPrefab.prefab.meta │ │ │ │ ├── RoadLayer.meta │ │ │ │ ├── RoadLayer │ │ │ │ │ ├── ExplorerDefaultRoad.asset │ │ │ │ │ ├── ExplorerDefaultRoad.asset.meta │ │ │ │ │ ├── ExplorerGray.mat │ │ │ │ │ ├── ExplorerGray.mat.meta │ │ │ │ │ ├── ExplorerGrayMaterialModifier.asset │ │ │ │ │ ├── ExplorerGrayMaterialModifier.asset.meta │ │ │ │ │ ├── ExplorerRoadHeightModifier.asset │ │ │ │ │ ├── ExplorerRoadHeightModifier.asset.meta │ │ │ │ │ ├── ExplorerRoadLayer.asset │ │ │ │ │ └── ExplorerRoadLayer.asset.meta │ │ │ │ ├── TerrainFactory.meta │ │ │ │ ├── TerrainFactory │ │ │ │ │ ├── ExplorerFlatTerrainFactory.asset │ │ │ │ │ ├── ExplorerFlatTerrainFactory.asset.meta │ │ │ │ │ ├── ExplorerTerrainMaterial.mat │ │ │ │ │ └── ExplorerTerrainMaterial.mat.meta │ │ │ │ ├── TrafficLayer.meta │ │ │ │ ├── TrafficLayer │ │ │ │ │ ├── ExplorerTrafficLayer.asset │ │ │ │ │ ├── ExplorerTrafficLayer.asset.meta │ │ │ │ │ ├── HeavyTraffic.meta │ │ │ │ │ ├── HeavyTraffic │ │ │ │ │ │ ├── ExplorerHeavyTraffic.asset │ │ │ │ │ │ ├── ExplorerHeavyTraffic.asset.meta │ │ │ │ │ │ ├── ExplorerHeavyTrafficMaterial.asset │ │ │ │ │ │ ├── ExplorerHeavyTrafficMaterial.asset.meta │ │ │ │ │ │ ├── HeavyTrafficMaterial.mat │ │ │ │ │ │ └── HeavyTrafficMaterial.mat.meta │ │ │ │ │ ├── LowTraffic.meta │ │ │ │ │ ├── LowTraffic │ │ │ │ │ │ ├── ExplorerLowTraffic.asset │ │ │ │ │ │ ├── ExplorerLowTraffic.asset.meta │ │ │ │ │ │ ├── ExplorerTrafficHeight.asset │ │ │ │ │ │ ├── ExplorerTrafficHeight.asset.meta │ │ │ │ │ │ ├── ExplorerTrafficLineMesh.asset │ │ │ │ │ │ ├── ExplorerTrafficLineMesh.asset.meta │ │ │ │ │ │ ├── ExplorerTrafficMaterial.asset │ │ │ │ │ │ ├── ExplorerTrafficMaterial.asset.meta │ │ │ │ │ │ ├── LowTrafficMaterial.mat │ │ │ │ │ │ └── LowTrafficMaterial.mat.meta │ │ │ │ │ ├── ModerateTraffic.meta │ │ │ │ │ ├── ModerateTraffic │ │ │ │ │ │ ├── ExplorerModerateTraffic.asset │ │ │ │ │ │ ├── ExplorerModerateTraffic.asset.meta │ │ │ │ │ │ ├── ExplorerModerateTrafficMaterial.asset │ │ │ │ │ │ ├── ExplorerModerateTrafficMaterial.asset.meta │ │ │ │ │ │ ├── ModerateTrafficMaterial.mat │ │ │ │ │ │ └── ModerateTrafficMaterial.mat.meta │ │ │ │ │ ├── SevereTraffic.meta │ │ │ │ │ └── SevereTraffic │ │ │ │ │ │ ├── ExplorerSevereTraffic.asset │ │ │ │ │ │ ├── ExplorerSevereTraffic.asset.meta │ │ │ │ │ │ ├── ExplorerSevereTrafficMaterial.asset │ │ │ │ │ │ ├── ExplorerSevereTrafficMaterial.asset.meta │ │ │ │ │ │ ├── SevereTrafficMaterial.mat │ │ │ │ │ │ └── SevereTrafficMaterial.mat.meta │ │ │ │ ├── VectorFactory.meta │ │ │ │ ├── VectorFactory │ │ │ │ │ ├── ExplorerVectorFactory.asset │ │ │ │ │ └── ExplorerVectorFactory.asset.meta │ │ │ │ ├── WaterLayer.meta │ │ │ │ ├── WaterLayer │ │ │ │ │ ├── ExplorerBlue.mat │ │ │ │ │ ├── ExplorerBlue.mat.meta │ │ │ │ │ ├── ExplorerBlueMaterialModifier.asset │ │ │ │ │ ├── ExplorerBlueMaterialModifier.asset.meta │ │ │ │ │ ├── ExplorerDefaultWater.asset │ │ │ │ │ ├── ExplorerDefaultWater.asset.meta │ │ │ │ │ ├── ExplorerWaterHeightModifier.asset │ │ │ │ │ ├── ExplorerWaterHeightModifier.asset.meta │ │ │ │ │ ├── ExplorerWaterLayer.asset │ │ │ │ │ └── ExplorerWaterLayer.asset.meta │ │ │ │ ├── WaterwayLayer.meta │ │ │ │ └── WaterwayLayer │ │ │ │ │ ├── ExplorerDarkBlue.mat │ │ │ │ │ ├── ExplorerDarkBlue.mat.meta │ │ │ │ │ ├── ExplorerDarkBlueMaterialModifier.asset │ │ │ │ │ ├── ExplorerDarkBlueMaterialModifier.asset.meta │ │ │ │ │ ├── ExplorerDefaultWaterway.asset │ │ │ │ │ ├── ExplorerDefaultWaterway.asset.meta │ │ │ │ │ ├── ExplorerWaterwayLayer.asset │ │ │ │ │ └── ExplorerWaterwayLayer.asset.meta │ │ │ ├── Screenshots.meta │ │ │ └── Screenshots │ │ │ │ ├── explorer.png │ │ │ │ └── explorer.png.meta │ │ ├── 2_LocationProvider.meta │ │ ├── 2_LocationProvider │ │ │ ├── LocationProvider.unity │ │ │ ├── LocationProvider.unity.meta │ │ │ ├── LocationProviderVisualizer.asset │ │ │ ├── LocationProviderVisualizer.asset.meta │ │ │ ├── Screenshots.meta │ │ │ ├── Screenshots │ │ │ │ ├── LocationProvider.png │ │ │ │ └── LocationProvider.png.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── MapMatchingExample.cs │ │ │ │ ├── MapMatchingExample.cs.meta │ │ │ │ ├── PlotRoute.cs │ │ │ │ └── PlotRoute.cs.meta │ │ ├── 3_VoxelMap.meta │ │ ├── 3_VoxelMap │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Snow.mat │ │ │ │ ├── Snow.mat.meta │ │ │ │ ├── VoxelAtlas.mat │ │ │ │ └── VoxelAtlas.mat.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ │ ├── Bricks.fbx │ │ │ │ ├── Bricks.fbx.meta │ │ │ │ ├── Bush.fbx │ │ │ │ ├── Bush.fbx.meta │ │ │ │ ├── Grey Stone.fbx │ │ │ │ ├── Grey Stone.fbx.meta │ │ │ │ ├── Ground Brown.fbx │ │ │ │ ├── Ground Brown.fbx.meta │ │ │ │ ├── Ground Green.fbx │ │ │ │ ├── Ground Green.fbx.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Pixel Cube Atlas.mat │ │ │ │ │ └── Pixel Cube Atlas.mat.meta │ │ │ │ ├── Sand.fbx │ │ │ │ ├── Sand.fbx.meta │ │ │ │ ├── Water.fbx │ │ │ │ └── Water.fbx.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── VoxelTile.prefab │ │ │ │ ├── VoxelTile.prefab.meta │ │ │ │ ├── Voxels.meta │ │ │ │ └── Voxels │ │ │ │ │ ├── Bricks.prefab │ │ │ │ │ ├── Bricks.prefab.meta │ │ │ │ │ ├── Bush.prefab │ │ │ │ │ ├── Bush.prefab.meta │ │ │ │ │ ├── Grass.prefab │ │ │ │ │ ├── Grass.prefab.meta │ │ │ │ │ ├── Ground.prefab │ │ │ │ │ ├── Ground.prefab.meta │ │ │ │ │ ├── Sand.prefab │ │ │ │ │ ├── Sand.prefab.meta │ │ │ │ │ ├── Snow.prefab │ │ │ │ │ ├── Snow.prefab.meta │ │ │ │ │ ├── Stone.prefab │ │ │ │ │ ├── Stone.prefab.meta │ │ │ │ │ ├── Water.prefab │ │ │ │ │ └── Water.prefab.meta │ │ │ ├── Screenshots.meta │ │ │ ├── Screenshots │ │ │ │ ├── VoxelMap.png │ │ │ │ └── VoxelMap.png.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── TextureScaler.cs │ │ │ │ ├── TextureScaler.cs.meta │ │ │ │ ├── VoxelData.cs │ │ │ │ ├── VoxelData.cs.meta │ │ │ │ ├── VoxelFetcher.cs │ │ │ │ ├── VoxelFetcher.cs.meta │ │ │ │ ├── VoxelTile.cs │ │ │ │ └── VoxelTile.cs.meta │ │ │ ├── Textures.meta │ │ │ ├── Textures │ │ │ │ ├── VoxelAtlas.png │ │ │ │ └── VoxelAtlas.png.meta │ │ │ ├── VoxelMap.unity │ │ │ └── VoxelMap.unity.meta │ │ ├── 4_VectorTileMaps.meta │ │ ├── 4_VectorTileMaps │ │ │ ├── BasicVectorMap.meta │ │ │ ├── BasicVectorMap │ │ │ │ ├── BasicVectorMap.unity │ │ │ │ ├── BasicVectorMap.unity.meta │ │ │ │ ├── BasicVectorMapVisualizer.asset │ │ │ │ └── BasicVectorMapVisualizer.asset.meta │ │ │ ├── InteractiveStyledVectorMap.meta │ │ │ ├── InteractiveStyledVectorMap │ │ │ │ ├── InteractiveStyledVectorMap.unity │ │ │ │ ├── InteractiveStyledVectorMap.unity.meta │ │ │ │ ├── InteractiveStyledVectorMapVisualizer.asset │ │ │ │ ├── InteractiveStyledVectorMapVisualizer.asset.meta │ │ │ │ ├── Screenshots.meta │ │ │ │ └── Screenshots │ │ │ │ │ ├── InteractiveStyledVectorMap.png │ │ │ │ │ └── InteractiveStyledVectorMap.png.meta │ │ │ ├── PoiVectorMap.meta │ │ │ ├── PoiVectorMap │ │ │ │ ├── PoiVectorMap.unity │ │ │ │ ├── PoiVectorMap.unity.meta │ │ │ │ ├── PoiVectorVisualizer.asset │ │ │ │ └── PoiVectorVisualizer.asset.meta │ │ │ ├── TerrainVectorMap.meta │ │ │ └── TerrainVectorMap │ │ │ │ ├── TerrainVectorMap.unity │ │ │ │ ├── TerrainVectorMap.unity.meta │ │ │ │ ├── TerrainVectorMapVisualizer.asset │ │ │ │ └── TerrainVectorMapVisualizer.asset.meta │ │ ├── 5_ZoomableMap.meta │ │ ├── 5_ZoomableMap │ │ │ ├── Screenshots.meta │ │ │ ├── Screenshots │ │ │ │ ├── ZoomableMap.png │ │ │ │ └── ZoomableMap.png.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── SpawnOnMap.cs │ │ │ │ └── SpawnOnMap.cs.meta │ │ │ ├── ZoomableMap.unity │ │ │ ├── ZoomableMap.unity.meta │ │ │ ├── ZoomableMapVisualizer.asset │ │ │ └── ZoomableMapVisualizer.asset.meta │ │ ├── 6_Globe.meta │ │ ├── 6_Globe │ │ │ ├── Globe.unity │ │ │ ├── Globe.unity.meta │ │ │ ├── GlobeVisualizer.asset │ │ │ ├── GlobeVisualizer.asset.meta │ │ │ ├── Screenshots.meta │ │ │ ├── Screenshots │ │ │ │ ├── Globe.png │ │ │ │ └── Globe.png.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── DragRotate.cs │ │ │ │ ├── DragRotate.cs.meta │ │ │ │ ├── SpawnOnGlobeExample.cs │ │ │ │ └── SpawnOnGlobeExample.cs.meta │ │ ├── 7_Playground.meta │ │ ├── 7_Playground │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── Directions.unity │ │ │ │ ├── Directions.unity.meta │ │ │ │ ├── ForwardGeocoder.unity │ │ │ │ ├── ForwardGeocoder.unity.meta │ │ │ │ ├── RasterTile.unity │ │ │ │ ├── RasterTile.unity.meta │ │ │ │ ├── ReverseGeocoder.unity │ │ │ │ ├── ReverseGeocoder.unity.meta │ │ │ │ ├── VectorTile.unity │ │ │ │ └── VectorTile.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── DirectionsExample.cs │ │ │ │ ├── DirectionsExample.cs.meta │ │ │ │ ├── ForwardGeocoderExample.cs │ │ │ │ ├── ForwardGeocoderExample.cs.meta │ │ │ │ ├── RasterTileExample.cs │ │ │ │ ├── RasterTileExample.cs.meta │ │ │ │ ├── ReverseGeocoderExample.cs │ │ │ │ ├── ReverseGeocoderExample.cs.meta │ │ │ │ ├── VectorTileExample.cs │ │ │ │ └── VectorTileExample.cs.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── CustomMarkerPrefab.prefab │ │ │ ├── CustomMarkerPrefab.prefab.meta │ │ │ ├── ExampleDirectionsQuery.prefab │ │ │ ├── ExampleDirectionsQuery.prefab.meta │ │ │ ├── ForwardGeocoderCanvas.prefab │ │ │ ├── ForwardGeocoderCanvas.prefab.meta │ │ │ ├── InfoCanvas.prefab │ │ │ ├── InfoCanvas.prefab.meta │ │ │ ├── LoadingScreenCanvas.prefab │ │ │ ├── LoadingScreenCanvas.prefab.meta │ │ │ ├── LocationProvider.prefab │ │ │ ├── LocationProvider.prefab.meta │ │ │ ├── Player.prefab │ │ │ ├── Player.prefab.meta │ │ │ ├── ReloadMapCanvas.prefab │ │ │ └── ReloadMapCanvas.prefab.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── 3DPoiMarker.prefab │ │ │ ├── 3DPoiMarker.prefab.meta │ │ │ ├── BuildingMaterial.mat │ │ │ ├── BuildingMaterial.mat.meta │ │ │ ├── BuildingWallSlice.prefab │ │ │ ├── BuildingWallSlice.prefab.meta │ │ │ ├── Bush.prefab │ │ │ ├── Bush.prefab.meta │ │ │ ├── Bush2.prefab │ │ │ ├── Bush2.prefab.meta │ │ │ ├── Bush2Material.mat │ │ │ ├── Bush2Material.mat.meta │ │ │ ├── BushMaterial.mat │ │ │ ├── BushMaterial.mat.meta │ │ │ ├── DirectionsMaterial.mat │ │ │ ├── DirectionsMaterial.mat.meta │ │ │ ├── DriveBuildingMaterial.mat │ │ │ ├── DriveBuildingMaterial.mat.meta │ │ │ ├── Frame.png │ │ │ ├── Frame.png.meta │ │ │ ├── GreenMaterial.mat │ │ │ ├── GreenMaterial.mat.meta │ │ │ ├── HeavyTrafficMat.mat │ │ │ ├── HeavyTrafficMat.mat.meta │ │ │ ├── LocationProviderMapMaterial.mat │ │ │ ├── LocationProviderMapMaterial.mat.meta │ │ │ ├── LowPolyTerrainMaterial.mat │ │ │ ├── LowPolyTerrainMaterial.mat.meta │ │ │ ├── MakiPrefab.prefab │ │ │ ├── MakiPrefab.prefab.meta │ │ │ ├── MakiUiPrefab.prefab │ │ │ ├── MakiUiPrefab.prefab.meta │ │ │ ├── ModerateTrafficMat.mat │ │ │ ├── ModerateTrafficMat.mat.meta │ │ │ ├── OrangeMaterial.mat │ │ │ ├── OrangeMaterial.mat.meta │ │ │ ├── PoiMaterial.mat │ │ │ ├── PoiMaterial.mat.meta │ │ │ ├── RoadMaterial.mat │ │ │ ├── RoadMaterial.mat.meta │ │ │ ├── Selector.prefab │ │ │ ├── Selector.prefab.meta │ │ │ ├── SevereTrafficMat.mat │ │ │ ├── SevereTrafficMat.mat.meta │ │ │ ├── TerraceSide.mat │ │ │ ├── TerraceSide.mat.meta │ │ │ ├── TerraceTop.mat │ │ │ ├── TerraceTop.mat.meta │ │ │ ├── TerrainMaterial.mat │ │ │ ├── TerrainMaterial.mat.meta │ │ │ ├── TrafficMat.mat │ │ │ ├── TrafficMat.mat.meta │ │ │ ├── TransparentBlueMaterial.mat │ │ │ ├── TransparentBlueMaterial.mat.meta │ │ │ ├── TransparentGreyMaterial.mat │ │ │ ├── TransparentGreyMaterial.mat.meta │ │ │ ├── TransparentOrangeMaterial.mat │ │ │ ├── TransparentOrangeMaterial.mat.meta │ │ │ ├── Water.mat │ │ │ ├── Water.mat.meta │ │ │ ├── maki.meta │ │ │ ├── maki │ │ │ │ ├── aerialway-15.png │ │ │ │ ├── aerialway-15.png.meta │ │ │ │ ├── airfield-15.png │ │ │ │ ├── airfield-15.png.meta │ │ │ │ ├── airport-15.png │ │ │ │ ├── airport-15.png.meta │ │ │ │ ├── alcohol-shop-15.png │ │ │ │ ├── alcohol-shop-15.png.meta │ │ │ │ ├── america-football-15.png │ │ │ │ ├── america-football-15.png.meta │ │ │ │ ├── amusement-park-15.png │ │ │ │ ├── amusement-park-15.png.meta │ │ │ │ ├── aquarium-15.png │ │ │ │ ├── aquarium-15.png.meta │ │ │ │ ├── art-gallery-15.png │ │ │ │ ├── art-gallery-15.png.meta │ │ │ │ ├── attraction-15.png │ │ │ │ ├── attraction-15.png.meta │ │ │ │ ├── bakery-15.png │ │ │ │ ├── bakery-15.png.meta │ │ │ │ ├── bank-15.png │ │ │ │ ├── bank-15.png.meta │ │ │ │ ├── bar-15.png │ │ │ │ ├── bar-15.png.meta │ │ │ │ ├── baseball-15.png │ │ │ │ ├── baseball-15.png.meta │ │ │ │ ├── basketball-15.png │ │ │ │ ├── basketball-15.png.meta │ │ │ │ ├── beer-15.png │ │ │ │ ├── beer-15.png.meta │ │ │ │ ├── bicycle-15.png │ │ │ │ ├── bicycle-15.png.meta │ │ │ │ ├── bicycle-share-15.png │ │ │ │ ├── bicycle-share-15.png.meta │ │ │ │ ├── blood-bank-15.png │ │ │ │ ├── blood-bank-15.png.meta │ │ │ │ ├── buddhism-15.png │ │ │ │ ├── buddhism-15.png.meta │ │ │ │ ├── building-15.png │ │ │ │ ├── building-15.png.meta │ │ │ │ ├── bus-15.png │ │ │ │ ├── bus-15.png.meta │ │ │ │ ├── cafe-15.png │ │ │ │ ├── cafe-15.png.meta │ │ │ │ ├── campsite-15.png │ │ │ │ ├── campsite-15.png.meta │ │ │ │ ├── car-15.png │ │ │ │ ├── car-15.png.meta │ │ │ │ ├── castle-15.png │ │ │ │ ├── castle-15.png.meta │ │ │ │ ├── cemetery-15.png │ │ │ │ ├── cemetery-15.png.meta │ │ │ │ ├── central-building-15.png │ │ │ │ ├── central-building-15.png.meta │ │ │ │ ├── cinema-15.png │ │ │ │ ├── cinema-15.png.meta │ │ │ │ ├── circle-15.png │ │ │ │ ├── circle-15.png.meta │ │ │ │ ├── circle-stroked-15.png │ │ │ │ ├── circle-stroked-15.png.meta │ │ │ │ ├── clothing-store-15.png │ │ │ │ ├── clothing-store-15.png.meta │ │ │ │ ├── college-15.png │ │ │ │ ├── college-15.png.meta │ │ │ │ ├── commercial-15.png │ │ │ │ ├── commercial-15.png.meta │ │ │ │ ├── cricket-15.png │ │ │ │ ├── cricket-15.png.meta │ │ │ │ ├── cross-15.png │ │ │ │ ├── cross-15.png.meta │ │ │ │ ├── dam-15.png │ │ │ │ ├── dam-15.png.meta │ │ │ │ ├── danger-15.png │ │ │ │ ├── danger-15.png.meta │ │ │ │ ├── dentist-15.png │ │ │ │ ├── dentist-15.png.meta │ │ │ │ ├── doctor-15.png │ │ │ │ ├── doctor-15.png.meta │ │ │ │ ├── dog-park-15.png │ │ │ │ ├── dog-park-15.png.meta │ │ │ │ ├── drinking-water-15.png │ │ │ │ ├── drinking-water-15.png.meta │ │ │ │ ├── embassy-15.png │ │ │ │ ├── embassy-15.png.meta │ │ │ │ ├── entrance-15.png │ │ │ │ ├── entrance-15.png.meta │ │ │ │ ├── farm-15.png │ │ │ │ ├── farm-15.png.meta │ │ │ │ ├── fast-food-15.png │ │ │ │ ├── fast-food-15.png.meta │ │ │ │ ├── ferry-15.png │ │ │ │ ├── ferry-15.png.meta │ │ │ │ ├── fire-station-15.png │ │ │ │ ├── fire-station-15.png.meta │ │ │ │ ├── fuel-15.png │ │ │ │ ├── fuel-15.png.meta │ │ │ │ ├── gaming-15.png │ │ │ │ ├── gaming-15.png.meta │ │ │ │ ├── garden-15.png │ │ │ │ ├── garden-15.png.meta │ │ │ │ ├── garden-center-15.png │ │ │ │ ├── garden-center-15.png.meta │ │ │ │ ├── gift-15.png │ │ │ │ ├── gift-15.png.meta │ │ │ │ ├── golf-15.png │ │ │ │ ├── golf-15.png.meta │ │ │ │ ├── grocery-15.png │ │ │ │ ├── grocery-15.png.meta │ │ │ │ ├── hairdresser-15.png │ │ │ │ ├── hairdresser-15.png.meta │ │ │ │ ├── harbor-15.png │ │ │ │ ├── harbor-15.png.meta │ │ │ │ ├── heart-15.png │ │ │ │ ├── heart-15.png.meta │ │ │ │ ├── heliport-15.png │ │ │ │ ├── heliport-15.png.meta │ │ │ │ ├── hospital-15.png │ │ │ │ ├── hospital-15.png.meta │ │ │ │ ├── ice-cream-15.png │ │ │ │ ├── ice-cream-15.png.meta │ │ │ │ ├── industry-15.png │ │ │ │ ├── industry-15.png.meta │ │ │ │ ├── information-15.png │ │ │ │ ├── information-15.png.meta │ │ │ │ ├── karaoke-15.png │ │ │ │ ├── karaoke-15.png.meta │ │ │ │ ├── landmark-15.png │ │ │ │ ├── landmark-15.png.meta │ │ │ │ ├── laundry-15.png │ │ │ │ ├── laundry-15.png.meta │ │ │ │ ├── library-15.png │ │ │ │ ├── library-15.png.meta │ │ │ │ ├── lighthouse-15.png │ │ │ │ ├── lighthouse-15.png.meta │ │ │ │ ├── lodging-15.png │ │ │ │ ├── lodging-15.png.meta │ │ │ │ ├── marker-15.png │ │ │ │ ├── marker-15.png.meta │ │ │ │ ├── monument-15.png │ │ │ │ ├── monument-15.png.meta │ │ │ │ ├── mountain-15.png │ │ │ │ ├── mountain-15.png.meta │ │ │ │ ├── museum-15.png │ │ │ │ ├── museum-15.png.meta │ │ │ │ ├── music-15.png │ │ │ │ ├── music-15.png.meta │ │ │ │ ├── park-15.png │ │ │ │ ├── park-15.png.meta │ │ │ │ ├── parking-15.png │ │ │ │ ├── parking-15.png.meta │ │ │ │ ├── parking-garage-15.png │ │ │ │ ├── parking-garage-15.png.meta │ │ │ │ ├── pharmacy-15.png │ │ │ │ ├── pharmacy-15.png.meta │ │ │ │ ├── picnic-site-15.png │ │ │ │ ├── picnic-site-15.png.meta │ │ │ │ ├── pitch-15.png │ │ │ │ ├── pitch-15.png.meta │ │ │ │ ├── place-of-worship-15.png │ │ │ │ ├── place-of-worship-15.png.meta │ │ │ │ ├── playground-15.png │ │ │ │ ├── playground-15.png.meta │ │ │ │ ├── police-15.png │ │ │ │ ├── police-15.png.meta │ │ │ │ ├── post-15.png │ │ │ │ ├── post-15.png.meta │ │ │ │ ├── prison-15.png │ │ │ │ ├── prison-15.png.meta │ │ │ │ ├── rail-15.png │ │ │ │ ├── rail-15.png.meta │ │ │ │ ├── rail-light-15.png │ │ │ │ ├── rail-light-15.png.meta │ │ │ │ ├── rail-metro-15.png │ │ │ │ ├── rail-metro-15.png.meta │ │ │ │ ├── ranger-station-15.png │ │ │ │ ├── ranger-station-15.png.meta │ │ │ │ ├── religious-christian-15.png │ │ │ │ ├── religious-christian-15.png.meta │ │ │ │ ├── religious-jewish-15.png │ │ │ │ ├── religious-jewish-15.png.meta │ │ │ │ ├── religious-muslim-15.png │ │ │ │ ├── religious-muslim-15.png.meta │ │ │ │ ├── residential-community-15.png │ │ │ │ ├── residential-community-15.png.meta │ │ │ │ ├── restaurant-15.png │ │ │ │ ├── restaurant-15.png.meta │ │ │ │ ├── roadblock-15.png │ │ │ │ ├── roadblock-15.png.meta │ │ │ │ ├── rocket-15.png │ │ │ │ ├── rocket-15.png.meta │ │ │ │ ├── school-15.png │ │ │ │ ├── school-15.png.meta │ │ │ │ ├── shelter-15.png │ │ │ │ ├── shelter-15.png.meta │ │ │ │ ├── shop-15.png │ │ │ │ ├── shop-15.png.meta │ │ │ │ ├── skiing-15.png │ │ │ │ ├── skiing-15.png.meta │ │ │ │ ├── soccer-15.png │ │ │ │ ├── soccer-15.png.meta │ │ │ │ ├── square-15.png │ │ │ │ ├── square-15.png.meta │ │ │ │ ├── square-stroked-15.png │ │ │ │ ├── square-stroked-15.png.meta │ │ │ │ ├── stadium-15.png │ │ │ │ ├── stadium-15.png.meta │ │ │ │ ├── star-15.png │ │ │ │ ├── star-15.png.meta │ │ │ │ ├── star-stroked-15.png │ │ │ │ ├── star-stroked-15.png.meta │ │ │ │ ├── suitcase-15.png │ │ │ │ ├── suitcase-15.png.meta │ │ │ │ ├── sushi-15.png │ │ │ │ ├── sushi-15.png.meta │ │ │ │ ├── swimming-15.png │ │ │ │ ├── swimming-15.png.meta │ │ │ │ ├── teahouse-15.png │ │ │ │ ├── teahouse-15.png.meta │ │ │ │ ├── telephone-15.png │ │ │ │ ├── telephone-15.png.meta │ │ │ │ ├── tennis-15.png │ │ │ │ ├── tennis-15.png.meta │ │ │ │ ├── theatre-15.png │ │ │ │ ├── theatre-15.png.meta │ │ │ │ ├── toilet-15.png │ │ │ │ ├── toilet-15.png.meta │ │ │ │ ├── town-hall-15.png │ │ │ │ ├── town-hall-15.png.meta │ │ │ │ ├── triangle-15.png │ │ │ │ ├── triangle-15.png.meta │ │ │ │ ├── triangle-stroked-15.png │ │ │ │ ├── triangle-stroked-15.png.meta │ │ │ │ ├── veterinary-15.png │ │ │ │ ├── veterinary-15.png.meta │ │ │ │ ├── volcano-15.png │ │ │ │ ├── volcano-15.png.meta │ │ │ │ ├── warehouse-15.png │ │ │ │ ├── warehouse-15.png.meta │ │ │ │ ├── waste-basket-15.png │ │ │ │ ├── waste-basket-15.png.meta │ │ │ │ ├── water-15.png │ │ │ │ ├── water-15.png.meta │ │ │ │ ├── wetland-15.png │ │ │ │ ├── wetland-15.png.meta │ │ │ │ ├── wheelchair-15.png │ │ │ │ ├── wheelchair-15.png.meta │ │ │ │ ├── zoo-15.png │ │ │ │ └── zoo-15.png.meta │ │ │ ├── roadTest.png │ │ │ └── roadTest.png.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── CameraBillboard.cs │ │ │ ├── CameraBillboard.cs.meta │ │ │ ├── CameraMovement.cs │ │ │ ├── CameraMovement.cs.meta │ │ │ ├── ChangeShadowDistance.cs │ │ │ ├── ChangeShadowDistance.cs.meta │ │ │ ├── FeatureSelectionDetector.cs │ │ │ ├── FeatureSelectionDetector.cs.meta │ │ │ ├── FeatureUiMarker.cs │ │ │ ├── FeatureUiMarker.cs.meta │ │ │ ├── ForwardGeocodeUserInput.cs │ │ │ ├── ForwardGeocodeUserInput.cs.meta │ │ │ ├── HighlightFeature.cs │ │ │ ├── HighlightFeature.cs.meta │ │ │ ├── ImmediatePositionWithLocationProvider.cs │ │ │ ├── ImmediatePositionWithLocationProvider.cs.meta │ │ │ ├── LabelTextSetter.cs │ │ │ ├── LabelTextSetter.cs.meta │ │ │ ├── LoadingPanelController.cs │ │ │ ├── LoadingPanelController.cs.meta │ │ │ ├── MakiHelper.cs │ │ │ ├── MakiHelper.cs.meta │ │ │ ├── ObjectInspectorModifier.cs │ │ │ ├── ObjectInspectorModifier.cs.meta │ │ │ ├── PoiMarkerHelper.cs │ │ │ ├── PoiMarkerHelper.cs.meta │ │ │ ├── PositionWithLocationProvider.cs │ │ │ ├── PositionWithLocationProvider.cs.meta │ │ │ ├── QuadTreeCameraMovement.cs │ │ │ ├── QuadTreeCameraMovement.cs.meta │ │ │ ├── ReloadMap.cs │ │ │ ├── ReloadMap.cs.meta │ │ │ ├── ReverseGeocodeUserInput.cs │ │ │ ├── ReverseGeocodeUserInput.cs.meta │ │ │ ├── RotateWithLocationProvider.cs │ │ │ └── RotateWithLocationProvider.cs.meta │ │ ├── Textures.meta │ │ ├── Textures │ │ │ ├── CircleSmall_Fill.png │ │ │ ├── CircleSmall_Fill.png.meta │ │ │ ├── CornerPanelRadius_0px_Fill.png │ │ │ ├── CornerPanelRadius_0px_Fill.png.meta │ │ │ ├── CornerPanelRadius_0px_Stroke_2px.png │ │ │ ├── CornerPanelRadius_0px_Stroke_2px.png.meta │ │ │ ├── CornerPanelRadius_6px_Stroke_2px.png │ │ │ ├── CornerPanelRadius_6px_Stroke_2px.png.meta │ │ │ ├── OneSideCornerPanelRadius_6px_Fill.png │ │ │ └── OneSideCornerPanelRadius_6px_Fill.png.meta │ │ ├── _sharedModules.meta │ │ └── _sharedModules │ │ │ ├── BasicsVectorTileFactory.asset │ │ │ ├── BasicsVectorTileFactory.asset.meta │ │ │ ├── BoxColliderModifier.asset │ │ │ ├── BoxColliderModifier.asset.meta │ │ │ ├── ChamferHeightModifier.asset │ │ │ ├── ChamferHeightModifier.asset.meta │ │ │ ├── ContourLayerVisualizer.asset │ │ │ ├── ContourLayerVisualizer.asset.meta │ │ │ ├── ContourMergedStyle.asset │ │ │ ├── ContourMergedStyle.asset.meta │ │ │ ├── ContourTerraceMeshFactory.asset │ │ │ ├── ContourTerraceMeshFactory.asset.meta │ │ │ ├── DirectionsHeight.asset │ │ │ ├── DirectionsHeight.asset.meta │ │ │ ├── DirectionsLine.asset │ │ │ ├── DirectionsLine.asset.meta │ │ │ ├── DisableMeshRendererModifier.asset │ │ │ ├── DisableMeshRendererModifier.asset.meta │ │ │ ├── FeatureBehaviourModifier.asset │ │ │ ├── FeatureBehaviourModifier.asset.meta │ │ │ ├── FixedHeightModifier.asset │ │ │ ├── FixedHeightModifier.asset.meta │ │ │ ├── FlatTerrainFactory.asset │ │ │ ├── FlatTerrainFactory.asset.meta │ │ │ ├── GlobeTerrainFactory.asset │ │ │ ├── GlobeTerrainFactory.asset.meta │ │ │ ├── HeightModifier.asset │ │ │ ├── HeightModifier.asset.meta │ │ │ ├── HighlightModifier.asset │ │ │ ├── HighlightModifier.asset.meta │ │ │ ├── LineModifier.asset │ │ │ ├── LineModifier.asset.meta │ │ │ ├── LoftModifier.asset │ │ │ ├── LoftModifier.asset.meta │ │ │ ├── LowPolyTerrainFactory.asset │ │ │ ├── LowPolyTerrainFactory.asset.meta │ │ │ ├── MeshColliderModifier.asset │ │ │ ├── MeshColliderModifier.asset.meta │ │ │ ├── ObjectInspector.asset │ │ │ ├── ObjectInspector.asset.meta │ │ │ ├── ParkLayerModifier.asset │ │ │ ├── ParkLayerModifier.asset.meta │ │ │ ├── ParkModifierStack.asset │ │ │ ├── ParkModifierStack.asset.meta │ │ │ ├── ParkVectorLayerVisualizer.asset │ │ │ ├── ParkVectorLayerVisualizer.asset.meta │ │ │ ├── PoiDemo3dPoiModifier.asset │ │ │ ├── PoiDemo3dPoiModifier.asset.meta │ │ │ ├── PoiDemo3dPoiModifierStack.asset │ │ │ ├── PoiDemo3dPoiModifierStack.asset.meta │ │ │ ├── PoiDemo3dPoiVisualizer.asset │ │ │ ├── PoiDemo3dPoiVisualizer.asset.meta │ │ │ ├── PoiDemoUiPoiModifier.asset │ │ │ ├── PoiDemoUiPoiModifier.asset.meta │ │ │ ├── PoiDemoUiPoiModifierStack.asset │ │ │ ├── PoiDemoUiPoiModifierStack.asset.meta │ │ │ ├── PoiDemoUiPoiVisualizer.asset │ │ │ ├── PoiDemoUiPoiVisualizer.asset.meta │ │ │ ├── PoiVectorTileFactory.asset │ │ │ ├── PoiVectorTileFactory.asset.meta │ │ │ ├── PolygonModifier.asset │ │ │ ├── PolygonModifier.asset.meta │ │ │ ├── SatelliteImageFactory.asset │ │ │ ├── SatelliteImageFactory.asset.meta │ │ │ ├── ScenicMapImageFactory.asset │ │ │ ├── ScenicMapImageFactory.asset.meta │ │ │ ├── SchoolFilter.asset │ │ │ ├── SchoolFilter.asset.meta │ │ │ ├── SnapTerrainModifier.asset │ │ │ ├── SnapTerrainModifier.asset.meta │ │ │ ├── SpawnInParkModifier.asset │ │ │ ├── SpawnInParkModifier.asset.meta │ │ │ ├── StyledBuildingVisualizer.asset │ │ │ ├── StyledBuildingVisualizer.asset.meta │ │ │ ├── StylingVectorTileFactory.asset │ │ │ ├── StylingVectorTileFactory.asset.meta │ │ │ ├── StylizedMapImageFactory.asset │ │ │ ├── StylizedMapImageFactory.asset.meta │ │ │ ├── TerrainBuildingStack.asset │ │ │ ├── TerrainBuildingStack.asset.meta │ │ │ ├── TerrainBuildingVisualizer.asset │ │ │ ├── TerrainBuildingVisualizer.asset.meta │ │ │ ├── TerrainFactory.asset │ │ │ ├── TerrainFactory.asset.meta │ │ │ ├── TerrainVectorTileFactory.asset │ │ │ ├── TerrainVectorTileFactory.asset.meta │ │ │ ├── TransparentBlueMaterialModifier.asset │ │ │ ├── TransparentBlueMaterialModifier.asset.meta │ │ │ ├── TransparentBlueSelectablePolygonStack.asset │ │ │ ├── TransparentBlueSelectablePolygonStack.asset.meta │ │ │ ├── TransparentGreyBuildingVisualizer.asset │ │ │ ├── TransparentGreyBuildingVisualizer.asset.meta │ │ │ ├── TransparentGreyMaterialModifier.asset │ │ │ ├── TransparentGreyMaterialModifier.asset.meta │ │ │ ├── TransparentGreyPolygonStack.asset │ │ │ ├── TransparentGreyPolygonStack.asset.meta │ │ │ ├── TransparentGreySelectablePolygonStack.asset │ │ │ ├── TransparentGreySelectablePolygonStack.asset.meta │ │ │ ├── TransparentOrangeMaterialModifier.asset │ │ │ ├── TransparentOrangeMaterialModifier.asset.meta │ │ │ ├── TransparentOrangeSelectablePolygonStack.asset │ │ │ ├── TransparentOrangeSelectablePolygonStack.asset.meta │ │ │ ├── UvModifier.asset │ │ │ └── UvModifier.asset.meta │ ├── Fonts.meta │ ├── Fonts │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-Bold.ttf.meta │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-Regular.ttf.meta │ │ ├── OpenSans-Semibold.ttf │ │ ├── OpenSans-Semibold.ttf.meta │ │ ├── OpenSansLic.txt │ │ └── OpenSansLic.txt.meta │ ├── Materials.meta │ ├── Materials │ │ ├── LoadingMaterial.mat │ │ └── LoadingMaterial.mat.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Attribution.prefab │ │ └── Attribution.prefab.meta │ ├── README.txt │ ├── README.txt.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Mapbox.meta │ │ └── Mapbox │ │ │ ├── ScenesList.asset │ │ │ └── ScenesList.asset.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── RasterWithTransparencyShader.shader │ │ └── RasterWithTransparencyShader.shader.meta │ ├── Textures.meta │ ├── Textures │ │ ├── CornerPanelRadius_12px_Fill.png │ │ ├── CornerPanelRadius_12px_Fill.png.meta │ │ ├── CornerPanelRadius_12px_Stroke_1px.png │ │ ├── CornerPanelRadius_12px_Stroke_1px.png.meta │ │ ├── info.png │ │ ├── info.png.meta │ │ ├── loadinggrid.png │ │ ├── loadinggrid.png.meta │ │ ├── mapbox-attribution.png │ │ ├── mapbox-attribution.png.meta │ │ ├── mapbox-logo-white.png │ │ └── mapbox-logo-white.png.meta │ ├── Unity.meta │ └── Unity │ │ ├── Ar.meta │ │ ├── Ar │ │ ├── AbstractAlignmentStrategy.cs │ │ ├── AbstractAlignmentStrategy.cs.meta │ │ ├── AverageHeadingAlignmentStrategy.cs │ │ ├── AverageHeadingAlignmentStrategy.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Tests.meta │ │ │ └── Tests │ │ │ │ ├── AverageHeadingAlignmentStrategyTests.cs │ │ │ │ └── AverageHeadingAlignmentStrategyTests.cs.meta │ │ ├── ISynchronizationContext.cs │ │ ├── ISynchronizationContext.cs.meta │ │ ├── LerpAlignmentStrategy.cs │ │ ├── LerpAlignmentStrategy.cs.meta │ │ ├── ManualSynchronizationContextBehaviour.cs │ │ ├── ManualSynchronizationContextBehaviour.cs.meta │ │ ├── SimpleAutomaticSynchronizationContext.cs │ │ ├── SimpleAutomaticSynchronizationContext.cs.meta │ │ ├── SimpleAutomaticSynchronizationContextBehaviour.cs │ │ ├── SimpleAutomaticSynchronizationContextBehaviour.cs.meta │ │ ├── SnapAlignmentStrategy.cs │ │ ├── SnapAlignmentStrategy.cs.meta │ │ ├── Utilities.meta │ │ └── Utilities │ │ │ ├── PlotRoute.cs │ │ │ └── PlotRoute.cs.meta │ │ ├── Constants.cs │ │ ├── Constants.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── AddMonoBehavioursModifierDrawer.cs │ │ ├── AddMonoBehavioursModifierDrawer.cs.meta │ │ ├── Build.meta │ │ ├── Build │ │ │ ├── Mapbox_Android_prebuild_checks.cs │ │ │ ├── Mapbox_Android_prebuild_checks.cs.meta │ │ │ ├── Mapbox_iOS_build.cs │ │ │ └── Mapbox_iOS_build.cs.meta │ │ ├── ClearMbTilesCache.cs │ │ ├── ClearMbTilesCache.cs.meta │ │ ├── FactoryDrawer.cs │ │ ├── FactoryDrawer.cs.meta │ │ ├── FactoryEditor.cs │ │ ├── FactoryEditor.cs.meta │ │ ├── FeatureBehaviourEditor.cs │ │ ├── FeatureBehaviourEditor.cs.meta │ │ ├── FlatSphereTerrainFactoryEditor.cs │ │ ├── FlatSphereTerrainFactoryEditor.cs.meta │ │ ├── FlatTerrainFactoryEditor.cs │ │ ├── FlatTerrainFactoryEditor.cs.meta │ │ ├── GeocodeAttributeDrawer.cs │ │ ├── GeocodeAttributeDrawer.cs.meta │ │ ├── GeocodeAttributeSearchWindow.cs │ │ ├── GeocodeAttributeSearchWindow.cs.meta │ │ ├── LayerModifierEditor.cs │ │ ├── LayerModifierEditor.cs.meta │ │ ├── LowPolyTerrainFactoryEditor.cs │ │ ├── LowPolyTerrainFactoryEditor.cs.meta │ │ ├── MapImageFactoryEditor.cs │ │ ├── MapImageFactoryEditor.cs.meta │ │ ├── MapVisualizerEditor.cs │ │ ├── MapVisualizerEditor.cs.meta │ │ ├── MapboxConfigurationWindow.cs │ │ ├── MapboxConfigurationWindow.cs.meta │ │ ├── MaterialModifierEditor.cs │ │ ├── MaterialModifierEditor.cs.meta │ │ ├── MergedModifierStackEditor.cs │ │ ├── MergedModifierStackEditor.cs.meta │ │ ├── ModifierStackEditor.cs │ │ ├── ModifierStackEditor.cs.meta │ │ ├── NodeEditor.meta │ │ ├── NodeEditor │ │ │ ├── Connection.cs │ │ │ ├── Connection.cs.meta │ │ │ ├── ConnectionPoint.cs │ │ │ ├── ConnectionPoint.cs.meta │ │ │ ├── EditorZoomArea.cs │ │ │ ├── EditorZoomArea.cs.meta │ │ │ ├── Node.cs │ │ │ ├── Node.cs.meta │ │ │ ├── NodeBasedEditor.cs │ │ │ └── NodeBasedEditor.cs.meta │ │ ├── ScriptableCreatorWindow.cs │ │ ├── ScriptableCreatorWindow.cs.meta │ │ ├── StyleOptimizedVectorTileFactoryEditor.cs │ │ ├── StyleOptimizedVectorTileFactoryEditor.cs.meta │ │ ├── StyleSearchAttributeDrawer.cs │ │ ├── StyleSearchAttributeDrawer.cs.meta │ │ ├── StyleSearchWindow.cs │ │ ├── StyleSearchWindow.cs.meta │ │ ├── TerrainFactoryEditor.cs │ │ ├── TerrainFactoryEditor.cs.meta │ │ ├── TerrainWithSideWallsFactoryEditor.cs │ │ ├── TerrainWithSideWallsFactoryEditor.cs.meta │ │ ├── Tests.meta │ │ ├── Tests │ │ │ ├── DuplicateAndroidLibraries.cs.cs │ │ │ └── DuplicateAndroidLibraries.cs.cs.meta │ │ ├── VectorLayerVisualizerEditor.cs │ │ ├── VectorLayerVisualizerEditor.cs.meta │ │ ├── VectorTileFactoryEditor.cs │ │ └── VectorTileFactoryEditor.cs.meta │ │ ├── Location.meta │ │ ├── Location │ │ ├── AbstractEditorLocationProvider.cs │ │ ├── AbstractEditorLocationProvider.cs.meta │ │ ├── AbstractLocationProvider.cs │ │ ├── AbstractLocationProvider.cs.meta │ │ ├── DeviceLocationProvider.cs │ │ ├── DeviceLocationProvider.cs.meta │ │ ├── EditorLocationProvider.cs │ │ ├── EditorLocationProvider.cs.meta │ │ ├── ILocationProvider.cs │ │ ├── ILocationProvider.cs.meta │ │ ├── Location.cs │ │ ├── Location.cs.meta │ │ ├── LocationArrayEditorLocationProvider.cs │ │ ├── LocationArrayEditorLocationProvider.cs.meta │ │ ├── LocationProviderFactory.cs │ │ ├── LocationProviderFactory.cs.meta │ │ ├── TransformLocationProvider.cs │ │ └── TransformLocationProvider.cs.meta │ │ ├── Map.meta │ │ ├── Map │ │ ├── AbstractMap.cs │ │ ├── AbstractMap.cs.meta │ │ ├── AbstractMapVisualizer.cs │ │ ├── AbstractMapVisualizer.cs.meta │ │ ├── AbstractTileProvider.cs │ │ ├── AbstractTileProvider.cs.meta │ │ ├── BasicMap.cs │ │ ├── BasicMap.cs.meta │ │ ├── CameraBoundsTileProvider.cs │ │ ├── CameraBoundsTileProvider.cs.meta │ │ ├── GlobeTileProvider.cs │ │ ├── GlobeTileProvider.cs.meta │ │ ├── IMap.cs │ │ ├── IMap.cs.meta │ │ ├── ITileProvider.cs │ │ ├── ITileProvider.cs.meta │ │ ├── InitializeMapWithLocationProvider.cs │ │ ├── InitializeMapWithLocationProvider.cs.meta │ │ ├── MapAtSpecificLocation.cs │ │ ├── MapAtSpecificLocation.cs.meta │ │ ├── MapAtWorldScale.cs │ │ ├── MapAtWorldScale.cs.meta │ │ ├── MapVisualizer.cs │ │ ├── MapVisualizer.cs.meta │ │ ├── QuadTreeBasicMap.cs │ │ ├── QuadTreeBasicMap.cs.meta │ │ ├── QuadTreeMapVisualizer.cs │ │ ├── QuadTreeMapVisualizer.cs.meta │ │ ├── QuadTreeTileProvider.cs │ │ ├── QuadTreeTileProvider.cs.meta │ │ ├── RangeAroundTransformTileProvider.cs │ │ ├── RangeAroundTransformTileProvider.cs.meta │ │ ├── RangeTileProvider.cs │ │ ├── RangeTileProvider.cs.meta │ │ ├── TileErrorHandler.cs │ │ └── TileErrorHandler.cs.meta │ │ ├── MapboxAccess.cs │ │ ├── MapboxAccess.cs.meta │ │ ├── MeshGeneration.meta │ │ ├── MeshGeneration │ │ ├── Components.meta │ │ ├── Components │ │ │ ├── FeatureBehaviour.cs │ │ │ ├── FeatureBehaviour.cs.meta │ │ │ ├── TextureSelector.cs │ │ │ ├── TextureSelector.cs.meta │ │ │ ├── VertexDebugger.cs │ │ │ ├── VertexDebugger.cs.meta │ │ │ ├── VertexDebuggerGizmo.cs │ │ │ └── VertexDebuggerGizmo.cs.meta │ │ ├── Data.meta │ │ ├── Data │ │ │ ├── MeshData.cs │ │ │ ├── MeshData.cs.meta │ │ │ ├── UnityTile.cs │ │ │ ├── UnityTile.cs.meta │ │ │ ├── VectorFeatureUnity.cs │ │ │ └── VectorFeatureUnity.cs.meta │ │ ├── Enums.meta │ │ ├── Enums │ │ │ ├── TilePropertyState.cs │ │ │ └── TilePropertyState.cs.meta │ │ ├── Factories.meta │ │ ├── Factories │ │ │ ├── AbstractTileFactory.cs │ │ │ ├── AbstractTileFactory.cs.meta │ │ │ ├── DirectionsFactory.cs │ │ │ ├── DirectionsFactory.cs.meta │ │ │ ├── FlatSphereTerrainFactory.cs │ │ │ ├── FlatSphereTerrainFactory.cs.meta │ │ │ ├── FlatTerrainFactory.cs │ │ │ ├── FlatTerrainFactory.cs.meta │ │ │ ├── LowPolyTerrainFactory.cs │ │ │ ├── LowPolyTerrainFactory.cs.meta │ │ │ ├── MapImageFactory.cs │ │ │ ├── MapImageFactory.cs.meta │ │ │ ├── StyleOptimizedVectorTileFactory.cs │ │ │ ├── StyleOptimizedVectorTileFactory.cs.meta │ │ │ ├── TerrainFactory.cs │ │ │ ├── TerrainFactory.cs.meta │ │ │ ├── TerrainFactoryWithSideWalls.cs │ │ │ ├── TerrainFactoryWithSideWalls.cs.meta │ │ │ ├── VectorTileFactory.cs │ │ │ └── VectorTileFactory.cs.meta │ │ ├── Filters.meta │ │ ├── Filters │ │ │ ├── FilterBase.cs │ │ │ ├── FilterBase.cs.meta │ │ │ ├── HeightFilter.cs │ │ │ ├── HeightFilter.cs.meta │ │ │ ├── TypeFilter.cs │ │ │ └── TypeFilter.cs.meta │ │ ├── Interfaces.meta │ │ ├── Interfaces │ │ │ ├── IFeaturePropertySettable.cs │ │ │ ├── IFeaturePropertySettable.cs.meta │ │ │ ├── LayerVisualizerBase.cs │ │ │ └── LayerVisualizerBase.cs.meta │ │ ├── LayerVisualizers.meta │ │ ├── LayerVisualizers │ │ │ ├── VectorLayerVisualizer.cs │ │ │ └── VectorLayerVisualizer.cs.meta │ │ ├── Modifiers.meta │ │ └── Modifiers │ │ │ ├── GameObjectModifier.cs │ │ │ ├── GameObjectModifier.cs.meta │ │ │ ├── GameObjectModifiers.meta │ │ │ ├── GameObjectModifiers │ │ │ ├── AddMonoBehavioursModifier.cs │ │ │ ├── AddMonoBehavioursModifier.cs.meta │ │ │ ├── AddMonoBehavioursModifierType.cs │ │ │ ├── AddMonoBehavioursModifierType.cs.meta │ │ │ ├── ColliderModifier.cs │ │ │ ├── ColliderModifier.cs.meta │ │ │ ├── DisableMeshRendererModifier.cs │ │ │ ├── DisableMeshRendererModifier.cs.meta │ │ │ ├── FeatureBehaviourModifier.cs │ │ │ ├── FeatureBehaviourModifier.cs.meta │ │ │ ├── LayerModifier.cs │ │ │ ├── LayerModifier.cs.meta │ │ │ ├── MaterialModifier.cs │ │ │ ├── MaterialModifier.cs.meta │ │ │ ├── PrefabModifier.cs │ │ │ ├── PrefabModifier.cs.meta │ │ │ ├── SpawnInsideModifier.cs │ │ │ ├── SpawnInsideModifier.cs.meta │ │ │ ├── TextureModifier.cs │ │ │ ├── TextureModifier.cs.meta │ │ │ ├── TextureMonoBehaviourModifier.cs │ │ │ └── TextureMonoBehaviourModifier.cs.meta │ │ │ ├── MergedModifierStack.cs │ │ │ ├── MergedModifierStack.cs.meta │ │ │ ├── MeshModifier.cs │ │ │ ├── MeshModifier.cs.meta │ │ │ ├── MeshModifiers.meta │ │ │ ├── MeshModifiers │ │ │ ├── ChamferHeightModifier.cs │ │ │ ├── ChamferHeightModifier.cs.meta │ │ │ ├── Earcut.cs │ │ │ ├── Earcut.cs.meta │ │ │ ├── HeightModifier.cs │ │ │ ├── HeightModifier.cs.meta │ │ │ ├── LineMeshModifier.cs │ │ │ ├── LineMeshModifier.cs.meta │ │ │ ├── LoftModifier.cs │ │ │ ├── LoftModifier.cs.meta │ │ │ ├── PolygonMeshModifier.cs │ │ │ ├── PolygonMeshModifier.cs.meta │ │ │ ├── SmoothLineModifier.cs │ │ │ ├── SmoothLineModifier.cs.meta │ │ │ ├── SnapTerrainModifier.cs │ │ │ ├── SnapTerrainModifier.cs.meta │ │ │ ├── SnapTerrainRaycastModifier.cs │ │ │ ├── SnapTerrainRaycastModifier.cs.meta │ │ │ ├── UvModifier.cs │ │ │ └── UvModifier.cs.meta │ │ │ ├── ModifierBase.cs │ │ │ ├── ModifierBase.cs.meta │ │ │ ├── ModifierStack.cs │ │ │ ├── ModifierStack.cs.meta │ │ │ ├── ModifierStackBase.cs │ │ │ └── ModifierStackBase.cs.meta │ │ ├── Telemetry.meta │ │ ├── Telemetry │ │ ├── ITelemetryLibrary.cs │ │ ├── ITelemetryLibrary.cs.meta │ │ ├── TelemetryDummy.cs │ │ ├── TelemetryDummy.cs.meta │ │ ├── TelemetryEditor.cs │ │ ├── TelemetryEditor.cs.meta │ │ ├── TelemetryFactory.cs │ │ ├── TelemetryFactory.cs.meta │ │ ├── TelemetryFallback.cs │ │ ├── TelemetryFallback.cs.meta │ │ ├── TelemetryIos.cs │ │ ├── TelemetryIos.cs.meta │ │ ├── TelemetryWebgl.cs │ │ ├── TelemetryWebgl.cs.meta │ │ ├── TelemtryAndroid.cs │ │ └── TelemtryAndroid.cs.meta │ │ ├── Utilities.meta │ │ └── Utilities │ │ ├── Console.cs │ │ ├── Console.cs.meta │ │ ├── Conversions.cs │ │ ├── Conversions.cs.meta │ │ ├── DebugTools.meta │ │ ├── DebugTools │ │ ├── SceneData.cs │ │ ├── SceneData.cs.meta │ │ ├── ScenesList.cs │ │ └── ScenesList.cs.meta │ │ ├── DontDestroyOnLoad.cs │ │ ├── DontDestroyOnLoad.cs.meta │ │ ├── GeocodeAttribute.cs │ │ ├── GeocodeAttribute.cs.meta │ │ ├── HTTPRequest.cs │ │ ├── HTTPRequest.cs.meta │ │ ├── MapVisualizerPerformance.cs │ │ ├── MapVisualizerPerformance.cs.meta │ │ ├── NodeEditorElementAttribute.cs │ │ ├── NodeEditorElementAttribute.cs.meta │ │ ├── ObjectPool.cs │ │ ├── ObjectPool.cs.meta │ │ ├── OpenUrlOnButtonClick.cs │ │ ├── OpenUrlOnButtonClick.cs.meta │ │ ├── Runnable.cs │ │ ├── Runnable.cs.meta │ │ ├── Singleton.cs │ │ ├── Singleton.cs.meta │ │ ├── SingletonScriptableObject.cs │ │ ├── SingletonScriptableObject.cs.meta │ │ ├── StyleSearchAttribute.cs │ │ ├── StyleSearchAttribute.cs.meta │ │ ├── TelemetryConfigurationButton.cs │ │ ├── TelemetryConfigurationButton.cs.meta │ │ ├── VectorEntity.cs │ │ ├── VectorEntity.cs.meta │ │ ├── VectorExtensions.cs │ │ └── VectorExtensions.cs.meta ├── MapboxARScenes.meta ├── MapboxARScenes │ ├── ARTabletopScene.unity │ ├── ARTabletopScene.unity.meta │ ├── AutomaticWorldSynchronization.unity │ ├── AutomaticWorldSynchronization.unity.meta │ ├── ManualWorldSynchronization.unity │ ├── ManualWorldSynchronization.unity.meta │ ├── SimpleMap.meta │ └── SimpleMap │ │ ├── SimpleBuildingHeightModifier.asset │ │ ├── SimpleBuildingHeightModifier.asset.meta │ │ ├── SimpleBuildingLayerModifier.asset │ │ ├── SimpleBuildingLayerModifier.asset.meta │ │ ├── SimpleBuildingTextureModifier.asset │ │ ├── SimpleBuildingTextureModifier.asset.meta │ │ ├── SimpleBuildingUvModifier.asset │ │ ├── SimpleBuildingUvModifier.asset.meta │ │ ├── SimpleMapBuildings.asset │ │ ├── SimpleMapBuildings.asset.meta │ │ ├── SimpleMapFlatTerrain.asset │ │ ├── SimpleMapFlatTerrain.asset.meta │ │ ├── SimpleMapImage.asset │ │ ├── SimpleMapImage.asset.meta │ │ ├── SimpleMapVector.asset │ │ ├── SimpleMapVector.asset.meta │ │ ├── SimpleMapVisualizer.asset │ │ ├── SimpleMapVisualizer.asset.meta │ │ ├── SimpleMergedBuildingStack.asset │ │ ├── SimpleMergedBuildingStack.asset.meta │ │ ├── SimplePolygonModifier.asset │ │ └── SimplePolygonModifier.asset.meta ├── Materials.meta ├── Materials │ ├── DebugBuildings.mat │ ├── DebugBuildings.mat.meta │ ├── Occlusion.mat │ ├── Occlusion.mat.meta │ ├── PathMaterial.mat │ ├── PathMaterial.mat.meta │ ├── UnlitTerrainMaterial.mat │ └── UnlitTerrainMaterial.mat.meta ├── Navigation.meta ├── Navigation │ ├── Examples.meta │ ├── Examples │ │ ├── Cube.prefab │ │ ├── Cube.prefab.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── NavMeshPrefabInstanceEditor.cs │ │ │ └── NavMeshPrefabInstanceEditor.cs.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── brightgreen.mat │ │ │ ├── brightgreen.mat.meta │ │ │ ├── brown.mat │ │ │ ├── brown.mat.meta │ │ │ ├── crosshair.mat │ │ │ ├── crosshair.mat.meta │ │ │ ├── floor.mat │ │ │ ├── floor.mat.meta │ │ │ ├── green.mat │ │ │ ├── green.mat.meta │ │ │ ├── grey.mat │ │ │ ├── grey.mat.meta │ │ │ ├── modify_crosshair.png │ │ │ ├── modify_crosshair.png.meta │ │ │ ├── red.mat │ │ │ ├── red.mat.meta │ │ │ ├── yellow.mat │ │ │ └── yellow.mat.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── BanyanTree.fbx │ │ │ ├── BanyanTree.fbx.meta │ │ │ ├── BanyanTree.prefab │ │ │ ├── BanyanTree.prefab.meta │ │ │ ├── DungeonTiles.meta │ │ │ ├── DungeonTiles │ │ │ │ ├── Tile0.prefab │ │ │ │ ├── Tile0.prefab.meta │ │ │ │ ├── Tile1.prefab │ │ │ │ ├── Tile1.prefab.meta │ │ │ │ ├── Tile10.prefab │ │ │ │ ├── Tile10.prefab.meta │ │ │ │ ├── Tile11.prefab │ │ │ │ ├── Tile11.prefab.meta │ │ │ │ ├── Tile12.prefab │ │ │ │ ├── Tile12.prefab.meta │ │ │ │ ├── Tile13.prefab │ │ │ │ ├── Tile13.prefab.meta │ │ │ │ ├── Tile14.prefab │ │ │ │ ├── Tile14.prefab.meta │ │ │ │ ├── Tile15.prefab │ │ │ │ ├── Tile15.prefab.meta │ │ │ │ ├── Tile2.prefab │ │ │ │ ├── Tile2.prefab.meta │ │ │ │ ├── Tile3.prefab │ │ │ │ ├── Tile3.prefab.meta │ │ │ │ ├── Tile4.prefab │ │ │ │ ├── Tile4.prefab.meta │ │ │ │ ├── Tile5.prefab │ │ │ │ ├── Tile5.prefab.meta │ │ │ │ ├── Tile6.prefab │ │ │ │ ├── Tile6.prefab.meta │ │ │ │ ├── Tile7.prefab │ │ │ │ ├── Tile7.prefab.meta │ │ │ │ ├── Tile8.prefab │ │ │ │ ├── Tile8.prefab.meta │ │ │ │ ├── Tile9.prefab │ │ │ │ └── Tile9.prefab.meta │ │ │ ├── GroundTile.prefab │ │ │ ├── GroundTile.prefab.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── BanyanBark.mat │ │ │ │ ├── BanyanBark.mat.meta │ │ │ │ ├── BanyanBranches.mat │ │ │ │ └── BanyanBranches.mat.meta │ │ │ ├── Plank.prefab │ │ │ └── Plank.prefab.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── 1_multiple_agent_sizes.meta │ │ │ ├── 1_multiple_agent_sizes.unity │ │ │ ├── 1_multiple_agent_sizes.unity.meta │ │ │ ├── 1_multiple_agent_sizes │ │ │ │ ├── NavMesh-Geometry 1.asset │ │ │ │ ├── NavMesh-Geometry 1.asset.meta │ │ │ │ ├── NavMesh-Geometry.asset │ │ │ │ └── NavMesh-Geometry.asset.meta │ │ │ ├── 2_drop_plank.unity │ │ │ ├── 2_drop_plank.unity.meta │ │ │ ├── 3_free_orientation.meta │ │ │ ├── 3_free_orientation.unity │ │ │ ├── 3_free_orientation.unity.meta │ │ │ ├── 3_free_orientation │ │ │ │ ├── NavMesh.asset │ │ │ │ └── NavMesh.asset.meta │ │ │ ├── 4_sliding_window_infinite.unity │ │ │ ├── 4_sliding_window_infinite.unity.meta │ │ │ ├── 5_sliding_window_terrain.unity │ │ │ ├── 5_sliding_window_terrain.unity.meta │ │ │ ├── 6_modify_mesh.unity │ │ │ ├── 6_modify_mesh.unity.meta │ │ │ ├── 7_dungeon.unity │ │ │ ├── 7_dungeon.unity.meta │ │ │ ├── 7b_dungeon_tile_prefabs.unity │ │ │ └── 7b_dungeon_tile_prefabs.unity.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── AgentLinkMover.cs │ │ │ ├── AgentLinkMover.cs.meta │ │ │ ├── ClickToMove.cs │ │ │ ├── ClickToMove.cs.meta │ │ │ ├── DestroyOnTrigger.cs │ │ │ ├── DestroyOnTrigger.cs.meta │ │ │ ├── DungeonManager.cs │ │ │ ├── DungeonManager.cs.meta │ │ │ ├── EnableIffSleeping.cs │ │ │ ├── EnableIffSleeping.cs.meta │ │ │ ├── FreeCam.cs │ │ │ ├── FreeCam.cs.meta │ │ │ ├── LocalNavMeshBuilder.cs │ │ │ ├── LocalNavMeshBuilder.cs.meta │ │ │ ├── MeshTool.cs │ │ │ ├── MeshTool.cs.meta │ │ │ ├── NavMeshPrefabInstance.cs │ │ │ ├── NavMeshPrefabInstance.cs.meta │ │ │ ├── NavMeshSourceTag.cs │ │ │ ├── NavMeshSourceTag.cs.meta │ │ │ ├── Oscillator.cs │ │ │ ├── Oscillator.cs.meta │ │ │ ├── RandomInstancing.cs │ │ │ ├── RandomInstancing.cs.meta │ │ │ ├── RandomWalk.cs │ │ │ ├── RandomWalk.cs.meta │ │ │ ├── RandomWalk.cs.orig │ │ │ ├── RandomWalk.cs.orig.meta │ │ │ ├── SpawnPrefabOnKeyDown.cs │ │ │ └── SpawnPrefabOnKeyDown.cs.meta │ │ ├── Terrains.meta │ │ └── Terrains │ │ │ ├── Islands.asset │ │ │ ├── Islands.asset.meta │ │ │ ├── LightmapWithFog.png │ │ │ └── LightmapWithFog.png.meta │ ├── Gizmos.meta │ ├── Gizmos │ │ ├── NavMeshLink Icon.png │ │ ├── NavMeshLink Icon.png.meta │ │ ├── NavMeshModifierVolume Icon.png │ │ ├── NavMeshModifierVolume Icon.png.meta │ │ ├── NavMeshSurface Icon.png │ │ └── NavMeshSurface Icon.png.meta │ ├── NavMeshComponents.meta │ └── NavMeshComponents │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── NavMeshComponentsGUIUtility.cs │ │ ├── NavMeshComponentsGUIUtility.cs.meta │ │ ├── NavMeshLinkEditor.cs │ │ ├── NavMeshLinkEditor.cs.meta │ │ ├── NavMeshModifierEditor.cs │ │ ├── NavMeshModifierEditor.cs.meta │ │ ├── NavMeshModifierVolumeEditor.cs │ │ ├── NavMeshModifierVolumeEditor.cs.meta │ │ ├── NavMeshSurfaceEditor.cs │ │ └── NavMeshSurfaceEditor.cs.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ ├── NavMeshLink.cs │ │ ├── NavMeshLink.cs.meta │ │ ├── NavMeshModifier.cs │ │ ├── NavMeshModifier.cs.meta │ │ ├── NavMeshModifierVolume.cs │ │ ├── NavMeshModifierVolume.cs.meta │ │ ├── NavMeshSurface.cs │ │ └── NavMeshSurface.cs.meta ├── Prefabs.meta ├── Prefabs │ ├── AR Root.prefab │ ├── AR Root.prefab.meta │ ├── AR.prefab │ ├── AR.prefab.meta │ ├── ArAlignedMap.prefab │ ├── ArAlignedMap.prefab.meta │ ├── DebugCanvas.prefab │ ├── DebugCanvas.prefab.meta │ ├── Directions.prefab │ ├── Directions.prefab.meta │ ├── FocusSquare.prefab │ ├── FocusSquare.prefab.meta │ ├── LocationProvider.prefab │ ├── LocationProvider.prefab.meta │ ├── WorldAlignmentKit.prefab │ └── WorldAlignmentKit.prefab.meta ├── Resources.meta ├── Resources │ └── Mapbox.meta ├── Scripts.meta ├── Scripts │ ├── Camera.meta │ └── Camera │ │ ├── TouchCamera.cs │ │ └── TouchCamera.cs.meta ├── Textures.meta ├── Textures │ ├── location.png │ ├── location.png.meta │ ├── log.png │ └── log.png.meta ├── UnityARInterface.meta ├── UnityARInterface │ ├── ARRemote.meta │ ├── ARRemote │ │ ├── RemoteDevice.unity │ │ ├── RemoteDevice.unity.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── ARRemoteDevice.cs │ │ │ ├── ARRemoteDevice.cs.meta │ │ │ ├── ARRemoteEditor.cs │ │ │ ├── ARRemoteEditor.cs.meta │ │ │ ├── ARRemoteEditorInterface.cs │ │ │ ├── ARRemoteEditorInterface.cs.meta │ │ │ ├── ARRemoteVideo.cs │ │ │ ├── ARRemoteVideo.cs.meta │ │ │ ├── ARSerializableObjects.cs │ │ │ └── ARSerializableObjects.cs.meta │ ├── Examples.meta │ ├── Examples │ │ ├── ARBallz.meta │ │ ├── ARBallz │ │ │ ├── ARBallMaker.cs │ │ │ ├── ARBallMaker.cs.meta │ │ │ ├── ARBallMover.cs │ │ │ ├── ARBallMover.cs.meta │ │ │ ├── ARBallz.unity │ │ │ ├── ARBallz.unity.meta │ │ │ ├── ARBallzGO.cs │ │ │ ├── ARBallzGO.cs.meta │ │ │ ├── BallzModeSwitcher.cs │ │ │ └── BallzModeSwitcher.cs.meta │ │ ├── ARFocusSquare.meta │ │ ├── ARFocusSquare │ │ │ ├── ARFocusSquare.cs │ │ │ ├── ARFocusSquare.cs.meta │ │ │ ├── ARFocusSquareScene.unity │ │ │ ├── ARFocusSquareScene.unity.meta │ │ │ ├── FocusSquareFinding.controller │ │ │ ├── FocusSquareFinding.controller.meta │ │ │ ├── FocusSquareFinding.mat │ │ │ ├── FocusSquareFinding.mat.meta │ │ │ ├── FocusSquareFinding.prefab │ │ │ ├── FocusSquareFinding.prefab.meta │ │ │ ├── FocusSquareFocused.prefab │ │ │ ├── FocusSquareFocused.prefab.meta │ │ │ ├── FocusSquareFound.mat │ │ │ ├── FocusSquareFound.mat.meta │ │ │ ├── focuspulse.anim │ │ │ ├── focuspulse.anim.meta │ │ │ ├── focussquare.png │ │ │ ├── focussquare.png.meta │ │ │ ├── focussquarefound.png │ │ │ └── focussquarefound.png.meta │ │ ├── Common.meta │ │ ├── Common │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── 2000px-Checkerboard_pattern.svg.mat │ │ │ │ ├── 2000px-Checkerboard_pattern.svg.mat.meta │ │ │ │ ├── 2000px-Checkerboard_patternUV.svg.mat │ │ │ │ ├── 2000px-Checkerboard_patternUV.svg.mat.meta │ │ │ │ ├── BallMaterial.mat │ │ │ │ ├── BallMaterial.mat.meta │ │ │ │ ├── Plane Physic Material.physicMaterial │ │ │ │ ├── Plane Physic Material.physicMaterial.meta │ │ │ │ ├── PlayerMaterial.mat │ │ │ │ ├── PlayerMaterial.mat.meta │ │ │ │ ├── PointCloudMaterial.mat │ │ │ │ ├── PointCloudMaterial.mat.meta │ │ │ │ ├── PointCloudParticleMaterial.mat │ │ │ │ ├── PointCloudParticleMaterial.mat.meta │ │ │ │ ├── XColor.mat │ │ │ │ ├── XColor.mat.meta │ │ │ │ ├── YColor.mat │ │ │ │ ├── YColor.mat.meta │ │ │ │ ├── ZColor.mat │ │ │ │ ├── ZColor.mat.meta │ │ │ │ ├── debugPlaneMaterial.mat │ │ │ │ ├── debugPlaneMaterial.mat.meta │ │ │ │ ├── occlusionPlaneMaterial.mat │ │ │ │ ├── occlusionPlaneMaterial.mat.meta │ │ │ │ ├── shadowPlaneMaterial.mat │ │ │ │ └── shadowPlaneMaterial.mat.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ │ ├── Characters.meta │ │ │ │ └── Characters │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ ├── GunMaterial.mat │ │ │ │ │ └── GunMaterial.mat.meta │ │ │ │ │ ├── Player.fbx │ │ │ │ │ └── Player.fbx.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── BallPrefab.prefab │ │ │ │ ├── BallPrefab.prefab.meta │ │ │ │ ├── ParticlePainterPrefab.prefab │ │ │ │ ├── ParticlePainterPrefab.prefab.meta │ │ │ │ ├── ParticlePrefab.prefab │ │ │ │ ├── ParticlePrefab.prefab.meta │ │ │ │ ├── PointCloudPrefab.prefab │ │ │ │ ├── PointCloudPrefab.prefab.meta │ │ │ │ ├── collisionPlanePrefab.prefab │ │ │ │ ├── collisionPlanePrefab.prefab.meta │ │ │ │ ├── debugPlanePrefab.prefab │ │ │ │ ├── debugPlanePrefab.prefab.meta │ │ │ │ ├── occlusionPlanePrefab.prefab │ │ │ │ ├── occlusionPlanePrefab.prefab.meta │ │ │ │ ├── shadowPlanePrefab.prefab │ │ │ │ └── shadowPlanePrefab.prefab.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ │ ├── InstancedSurfaceShader.shader │ │ │ │ ├── InstancedSurfaceShader.shader.meta │ │ │ │ ├── MobileARShadow.shader │ │ │ │ ├── MobileARShadow.shader.meta │ │ │ │ ├── MobileOcclusion.shader │ │ │ │ └── MobileOcclusion.shader.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── PlayerDiffuse.png │ │ │ │ ├── PlayerDiffuse.png.meta │ │ │ │ ├── PlayerNormals.png │ │ │ │ ├── PlayerNormals.png.meta │ │ │ │ ├── PlayerOcclusion.png │ │ │ │ ├── PlayerOcclusion.png.meta │ │ │ │ ├── PlayerSpecular.tif │ │ │ │ ├── PlayerSpecular.tif.meta │ │ │ │ ├── checker_large UV.gif │ │ │ │ ├── checker_large UV.gif.meta │ │ │ │ ├── debugPlaneTile.png │ │ │ │ └── debugPlaneTile.png.meta │ │ ├── MatchScale.meta │ │ ├── MatchScale │ │ │ ├── MatchScale.unity │ │ │ └── MatchScale.unity.meta │ │ ├── Multiplayer.meta │ │ ├── Multiplayer │ │ │ ├── ARPlaneChooser.cs │ │ │ ├── ARPlaneChooser.cs.meta │ │ │ ├── MultiplayerAR.unity │ │ │ ├── MultiplayerAR.unity.meta │ │ │ ├── StartARSession.cs │ │ │ ├── StartARSession.cs.meta │ │ │ ├── SyncPointsHolder.cs │ │ │ └── SyncPointsHolder.cs.meta │ │ ├── RemoteEditor.meta │ │ ├── RemoteEditor │ │ │ ├── RemoteEditor.unity │ │ │ └── RemoteEditor.unity.meta │ │ ├── ScaledContent.meta │ │ ├── ScaledContent │ │ │ ├── ScaledContent.unity │ │ │ └── ScaledContent.unity.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── DemoGUI.cs │ │ │ ├── DemoGUI.cs.meta │ │ │ ├── MatchingScalePicker.cs │ │ │ ├── MatchingScalePicker.cs.meta │ │ │ ├── ObjectShooter.cs │ │ │ ├── ObjectShooter.cs.meta │ │ │ ├── OptionsGUI.cs │ │ │ ├── OptionsGUI.cs.meta │ │ │ ├── PlaceOnPlane.cs │ │ │ ├── PlaceOnPlane.cs.meta │ │ │ ├── RemoveRigidbody.cs │ │ │ └── RemoveRigidbody.cs.meta │ │ ├── SimpleAROptions.meta │ │ ├── SimpleAROptions │ │ │ ├── SimpleAROptions.unity │ │ │ └── SimpleAROptions.unity.meta │ │ ├── SimpleARScene.meta │ │ └── SimpleARScene │ │ │ ├── SimpleARRemote.unity │ │ │ ├── SimpleARRemote.unity.meta │ │ │ ├── SimpleARScene.unity │ │ │ └── SimpleARScene.unity.meta │ ├── Models.meta │ ├── Models │ │ ├── Towers.meta │ │ └── Towers │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ ├── towerDiffuse.mat │ │ │ └── towerDiffuse.mat.meta │ │ │ ├── Meshes.meta │ │ │ ├── Meshes │ │ │ ├── castle_mdl.FBX │ │ │ └── castle_mdl.FBX.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ ├── castle_mdl.prefab │ │ │ └── castle_mdl.prefab.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ ├── towerDiffuse.png │ │ │ └── towerDiffuse.png.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Level geometry.prefab │ │ ├── Level geometry.prefab.meta │ │ ├── PhysicsBall.prefab │ │ ├── PhysicsBall.prefab.meta │ │ ├── PlacedObject.prefab │ │ └── PlacedObject.prefab.meta │ ├── Resources.meta │ ├── Resources │ │ ├── GuiSkin.guiskin │ │ ├── GuiSkin.guiskin.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── ARBackground.mat │ │ │ └── ARBackground.mat.meta │ │ ├── YUVMaterial.mat │ │ └── YUVMaterial.mat.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── ARBase.cs │ │ ├── ARBase.cs.meta │ │ ├── ARController.cs │ │ ├── ARController.cs.meta │ │ ├── ARCoreInterface.cs │ │ ├── ARCoreInterface.cs.meta │ │ ├── AREditorInterface.cs │ │ ├── AREditorInterface.cs.meta │ │ ├── ARInterface.cs │ │ ├── ARInterface.cs.meta │ │ ├── ARKitInterface.cs │ │ ├── ARKitInterface.cs.meta │ │ ├── ARLightEstimate.cs │ │ ├── ARLightEstimate.cs.meta │ │ ├── ARMessageIds.cs │ │ ├── ARMessageIds.cs.meta │ │ ├── ARPlaneVisualizer.cs │ │ ├── ARPlaneVisualizer.cs.meta │ │ ├── ARPointCloudVisualizer.cs │ │ ├── ARPointCloudVisualizer.cs.meta │ │ ├── BoundedPlane.cs │ │ └── BoundedPlane.cs.meta ├── UnityARKitPlugin.meta └── UnityARKitPlugin │ ├── ARKitRemote.meta │ ├── ARKitRemote │ ├── ARKITREMOTE.txt │ ├── ARKITREMOTE.txt.meta │ ├── ARKitRemoteConnection.cs │ ├── ARKitRemoteConnection.cs.meta │ ├── ARKitRemoteConnection.prefab │ ├── ARKitRemoteConnection.prefab.meta │ ├── ConnectToEditor.cs │ ├── ConnectToEditor.cs.meta │ ├── ConnectionMessageIds.cs │ ├── ConnectionMessageIds.cs.meta │ ├── EditorHitTest.cs │ ├── EditorHitTest.cs.meta │ ├── EditorTestScene.unity │ ├── EditorTestScene.unity.meta │ ├── ObjectSerializationExtension.cs │ ├── ObjectSerializationExtension.cs.meta │ ├── SerializableObjects.cs │ ├── SerializableObjects.cs.meta │ ├── UnityARKitRemote.unity │ ├── UnityARKitRemote.unity.meta │ ├── UnityRemoteVideo.cs │ └── UnityRemoteVideo.cs.meta │ ├── Examples.meta │ ├── Examples │ ├── AddRemoveAnchorExample.meta │ ├── AddRemoveAnchorExample │ │ ├── AddRemoveAnchorScene.unity │ │ ├── AddRemoveAnchorScene.unity.meta │ │ ├── RandomCube.prefab │ │ ├── RandomCube.prefab.meta │ │ ├── UnityARUserAnchorExample.cs │ │ └── UnityARUserAnchorExample.cs.meta │ ├── Common.meta │ ├── Common │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── 2000px-Checkerboard_pattern.svg.mat │ │ │ ├── 2000px-Checkerboard_pattern.svg.mat.meta │ │ │ ├── 2000px-Checkerboard_patternUV.svg.mat │ │ │ ├── 2000px-Checkerboard_patternUV.svg.mat.meta │ │ │ ├── BallMaterial.mat │ │ │ ├── BallMaterial.mat.meta │ │ │ ├── Plane Physic Material.physicMaterial │ │ │ ├── Plane Physic Material.physicMaterial.meta │ │ │ ├── PlayerMaterial.mat │ │ │ ├── PlayerMaterial.mat.meta │ │ │ ├── PointCloudMaterial.mat │ │ │ ├── PointCloudMaterial.mat.meta │ │ │ ├── PointCloudParticleMaterial.mat │ │ │ ├── PointCloudParticleMaterial.mat.meta │ │ │ ├── RTBack.renderTexture │ │ │ ├── RTBack.renderTexture.meta │ │ │ ├── RTBottom.renderTexture │ │ │ ├── RTBottom.renderTexture.meta │ │ │ ├── RTFront.renderTexture │ │ │ ├── RTFront.renderTexture.meta │ │ │ ├── RTLeft.renderTexture │ │ │ ├── RTLeft.renderTexture.meta │ │ │ ├── RTRight.renderTexture │ │ │ ├── RTRight.renderTexture.meta │ │ │ ├── RTTop.renderTexture │ │ │ ├── RTTop.renderTexture.meta │ │ │ ├── SphereMaterial.mat │ │ │ ├── SphereMaterial.mat.meta │ │ │ ├── XColor.mat │ │ │ ├── XColor.mat.meta │ │ │ ├── YColor.mat │ │ │ ├── YColor.mat.meta │ │ │ ├── ZColor.mat │ │ │ ├── ZColor.mat.meta │ │ │ ├── debugPlaneMaterial.mat │ │ │ ├── debugPlaneMaterial.mat.meta │ │ │ ├── occlusionPlaneMaterial.mat │ │ │ ├── occlusionPlaneMaterial.mat.meta │ │ │ ├── shadowPlaneMaterial.mat │ │ │ └── shadowPlaneMaterial.mat.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── Characters.meta │ │ │ └── Characters │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ ├── GunMaterial.mat │ │ │ │ └── GunMaterial.mat.meta │ │ │ │ ├── Player.fbx │ │ │ │ └── Player.fbx.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── AxesPrefab.prefab │ │ │ ├── AxesPrefab.prefab.meta │ │ │ ├── BallPrefab.prefab │ │ │ ├── BallPrefab.prefab.meta │ │ │ ├── CollSphere.prefab │ │ │ ├── CollSphere.prefab.meta │ │ │ ├── ParticlePainterPrefab.prefab │ │ │ ├── ParticlePainterPrefab.prefab.meta │ │ │ ├── ParticlePrefab.prefab │ │ │ ├── ParticlePrefab.prefab.meta │ │ │ ├── PointCloudPrefab.prefab │ │ │ ├── PointCloudPrefab.prefab.meta │ │ │ ├── collisionPlanePrefab.prefab │ │ │ ├── collisionPlanePrefab.prefab.meta │ │ │ ├── debugPlanePrefab.prefab │ │ │ ├── debugPlanePrefab.prefab.meta │ │ │ ├── occlusionPlanePrefab.prefab │ │ │ ├── occlusionPlanePrefab.prefab.meta │ │ │ ├── shadowPlanePrefab.prefab │ │ │ └── shadowPlanePrefab.prefab.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── InstancedSurfaceShader.shader │ │ │ ├── InstancedSurfaceShader.shader.meta │ │ │ ├── MobileARShadow.shader │ │ │ ├── MobileARShadow.shader.meta │ │ │ ├── MobileOcclusion.shader │ │ │ └── MobileOcclusion.shader.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── PlayerDiffuse.png │ │ │ ├── PlayerDiffuse.png.meta │ │ │ ├── PlayerNormals.png │ │ │ ├── PlayerNormals.png.meta │ │ │ ├── PlayerOcclusion.png │ │ │ ├── PlayerOcclusion.png.meta │ │ │ ├── PlayerSpecular.tif │ │ │ ├── PlayerSpecular.tif.meta │ │ │ ├── checker_large UV.gif │ │ │ ├── checker_large UV.gif.meta │ │ │ ├── debugPlaneTile.png │ │ │ └── debugPlaneTile.png.meta │ ├── FaceTracking.meta │ ├── FaceTracking │ │ ├── ARCameraTracker.cs │ │ ├── ARCameraTracker.cs.meta │ │ ├── BlendshapeDriver.cs │ │ ├── BlendshapeDriver.cs.meta │ │ ├── BlendshapePrinter.cs │ │ ├── BlendshapePrinter.cs.meta │ │ ├── FaceAnchorScene.unity │ │ ├── FaceAnchorScene.unity.meta │ │ ├── FaceBlendshapeScene.unity │ │ ├── FaceBlendshapeScene.unity.meta │ │ ├── FaceBlendshapeSloth.unity │ │ ├── FaceBlendshapeSloth.unity.meta │ │ ├── FaceDirectionalLightEstimate.unity │ │ ├── FaceDirectionalLightEstimate.unity.meta │ │ ├── FaceMeshScene.unity │ │ ├── FaceMeshScene.unity.meta │ │ ├── SlothCharacter.meta │ │ ├── SlothCharacter │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── sloth_all_1001_AlbedoTransparency.mat │ │ │ │ └── sloth_all_1001_AlbedoTransparency.mat.meta │ │ │ ├── Textures.meta │ │ │ ├── Textures │ │ │ │ ├── sloth_all_1001_AlbedoTransparency.png │ │ │ │ ├── sloth_all_1001_AlbedoTransparency.png.meta │ │ │ │ ├── sloth_all_1001_MetallicSmoothness.png │ │ │ │ ├── sloth_all_1001_MetallicSmoothness.png.meta │ │ │ │ ├── sloth_all_1001_Normal.png │ │ │ │ └── sloth_all_1001_Normal.png.meta │ │ │ ├── sloth_head_blendshapes5.fbx │ │ │ └── sloth_head_blendshapes5.fbx.meta │ │ ├── UnityARFaceAnchorManager.cs │ │ ├── UnityARFaceAnchorManager.cs.meta │ │ ├── UnityARFaceMeshManager.cs │ │ └── UnityARFaceMeshManager.cs.meta │ ├── FocusSquare.meta │ ├── FocusSquare │ │ ├── FocusSquare.cs │ │ ├── FocusSquare.cs.meta │ │ ├── FocusSquareFinding.controller │ │ ├── FocusSquareFinding.controller.meta │ │ ├── FocusSquareFinding.mat │ │ ├── FocusSquareFinding.mat.meta │ │ ├── FocusSquareFinding.prefab │ │ ├── FocusSquareFinding.prefab.meta │ │ ├── FocusSquareFocused.prefab │ │ ├── FocusSquareFocused.prefab.meta │ │ ├── FocusSquareFound.mat │ │ ├── FocusSquareFound.mat.meta │ │ ├── FocusSquareScene.unity │ │ ├── FocusSquareScene.unity.meta │ │ ├── focuspulse.anim │ │ ├── focuspulse.anim.meta │ │ ├── focussquare.png │ │ ├── focussquare.png.meta │ │ ├── focussquarefound.png │ │ └── focussquarefound.png.meta │ ├── UnityARBallz.meta │ ├── UnityARBallz │ │ ├── BallMaker.cs │ │ ├── BallMaker.cs.meta │ │ ├── BallMover.cs │ │ ├── BallMover.cs.meta │ │ ├── Ballz.cs │ │ ├── Ballz.cs.meta │ │ ├── ModeSwitcher.cs │ │ ├── ModeSwitcher.cs.meta │ │ ├── UnityARBallz.unity │ │ └── UnityARBallz.unity.meta │ ├── UnityARKitScene.meta │ ├── UnityARKitScene │ │ ├── UnityARKitScene.unity │ │ └── UnityARKitScene.unity.meta │ ├── UnityAROcclusion.meta │ ├── UnityAROcclusion │ │ ├── UnityAROcclusion.unity │ │ └── UnityAROcclusion.unity.meta │ ├── UnityARShadows.meta │ ├── UnityARShadows │ │ ├── UnityARShadows.unity │ │ └── UnityARShadows.unity.meta │ ├── UnityParticlePainter.meta │ └── UnityParticlePainter │ │ ├── HSVPicker.meta │ │ ├── HSVPicker │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── BoxSliderEditor.cs │ │ │ └── BoxSliderEditor.cs.meta │ │ ├── Enums.meta │ │ ├── Enums │ │ │ ├── ColorValues.cs │ │ │ └── ColorValues.cs.meta │ │ ├── Events.meta │ │ ├── Events │ │ │ ├── ColorChangedEvent.cs │ │ │ ├── ColorChangedEvent.cs.meta │ │ │ ├── HSVChangedEvent.cs │ │ │ └── HSVChangedEvent.cs.meta │ │ ├── Other.meta │ │ ├── Other │ │ │ ├── ColorPickerTester.cs │ │ │ ├── ColorPickerTester.cs.meta │ │ │ ├── TiltWindow.cs │ │ │ └── TiltWindow.cs.meta │ │ ├── Picker 2.0.prefab │ │ ├── Picker 2.0.prefab.meta │ │ ├── PickerTest.unity │ │ ├── PickerTest.unity.meta │ │ ├── UI.meta │ │ ├── UI │ │ │ ├── ColorImage.cs │ │ │ ├── ColorImage.cs.meta │ │ │ ├── ColorLabel.cs │ │ │ ├── ColorLabel.cs.meta │ │ │ ├── ColorPicker.cs │ │ │ ├── ColorPicker.cs.meta │ │ │ ├── ColorPresets.cs │ │ │ ├── ColorPresets.cs.meta │ │ │ ├── ColorSlider.cs │ │ │ ├── ColorSlider.cs.meta │ │ │ ├── ColorSliderImage.cs │ │ │ ├── ColorSliderImage.cs.meta │ │ │ ├── HexColorField.cs │ │ │ ├── HexColorField.cs.meta │ │ │ ├── SVBoxSlider.cs │ │ │ └── SVBoxSlider.cs.meta │ │ ├── UtilityScripts.meta │ │ └── UtilityScripts │ │ │ ├── BoxSlider.cs │ │ │ ├── BoxSlider.cs.meta │ │ │ ├── HSVUtil.cs │ │ │ └── HSVUtil.cs.meta │ │ ├── ParticlePainter.cs │ │ ├── ParticlePainter.cs.meta │ │ ├── UnityParticlePainter.unity │ │ └── UnityParticlePainter.unity.meta │ ├── Plugins.meta │ ├── Plugins │ ├── iOS.meta │ └── iOS │ │ ├── UnityARKit.meta │ │ └── UnityARKit │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── UnityARBuildPostprocessor.cs │ │ └── UnityARBuildPostprocessor.cs.meta │ │ ├── Helpers.meta │ │ ├── Helpers │ │ ├── AR3DOFCameraManager.cs │ │ ├── AR3DOFCameraManager.cs.meta │ │ ├── ARPlaneAnchorGameObject.cs │ │ ├── ARPlaneAnchorGameObject.cs.meta │ │ ├── DontDestroyOnLoad.cs │ │ ├── DontDestroyOnLoad.cs.meta │ │ ├── PointCloudParticleExample.cs │ │ ├── PointCloudParticleExample.cs.meta │ │ ├── UnityARAmbient.cs │ │ ├── UnityARAmbient.cs.meta │ │ ├── UnityARAnchorManager.cs │ │ ├── UnityARAnchorManager.cs.meta │ │ ├── UnityARCameraManager.cs │ │ ├── UnityARCameraManager.cs.meta │ │ ├── UnityARCameraNearFar.cs │ │ ├── UnityARCameraNearFar.cs.meta │ │ ├── UnityARGeneratePlane.cs │ │ ├── UnityARGeneratePlane.cs.meta │ │ ├── UnityARHitTestExample.cs │ │ ├── UnityARHitTestExample.cs.meta │ │ ├── UnityARKitControl.cs │ │ ├── UnityARKitControl.cs.meta │ │ ├── UnityARKitLightManager.cs │ │ ├── UnityARKitLightManager.cs.meta │ │ ├── UnityARMatrixOps.cs │ │ ├── UnityARMatrixOps.cs.meta │ │ ├── UnityARUserAnchorComponent.cs │ │ ├── UnityARUserAnchorComponent.cs.meta │ │ ├── UnityARUtility.cs │ │ ├── UnityARUtility.cs.meta │ │ ├── UnityARVideo.cs │ │ ├── UnityARVideo.cs.meta │ │ ├── UnityPointCloudExample.cs │ │ └── UnityPointCloudExample.cs.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ ├── YUVMaterial.mat │ │ ├── YUVMaterial.mat.meta │ │ ├── YUVMaterialLinear.mat │ │ └── YUVMaterialLinear.mat.meta │ │ ├── NativeInterface.meta │ │ ├── NativeInterface │ │ ├── ARAnchor.cs │ │ ├── ARAnchor.cs.meta │ │ ├── ARCamera.cs │ │ ├── ARCamera.cs.meta │ │ ├── ARErrorCode.cs │ │ ├── ARErrorCode.cs.meta │ │ ├── ARFaceAnchor.cs │ │ ├── ARFaceAnchor.cs.meta │ │ ├── ARFrame.cs │ │ ├── ARFrame.cs.meta │ │ ├── ARHitTestResult.cs │ │ ├── ARHitTestResult.cs.meta │ │ ├── ARHitTestResultType.cs │ │ ├── ARHitTestResultType.cs.meta │ │ ├── ARLightEstimate.cs │ │ ├── ARLightEstimate.cs.meta │ │ ├── ARPlaneAnchor.cs │ │ ├── ARPlaneAnchor.cs.meta │ │ ├── ARPlaneAnchorAlignment.cs │ │ ├── ARPlaneAnchorAlignment.cs.meta │ │ ├── ARPoint.cs │ │ ├── ARPoint.cs.meta │ │ ├── ARRect.cs │ │ ├── ARRect.cs.meta │ │ ├── ARSessionNative.mm │ │ ├── ARSessionNative.mm.meta │ │ ├── ARSize.cs │ │ ├── ARSize.cs.meta │ │ ├── ARTextureHandles.cs │ │ ├── ARTextureHandles.cs.meta │ │ ├── ARTrackingQuality.cs │ │ ├── ARTrackingQuality.cs.meta │ │ ├── ARTrackingState.cs │ │ ├── ARTrackingState.cs.meta │ │ ├── ARTrackingStateReason.cs │ │ ├── ARTrackingStateReason.cs.meta │ │ ├── ARUserAnchor.cs │ │ ├── ARUserAnchor.cs.meta │ │ ├── UnityARSessionNativeInterface.cs │ │ └── UnityARSessionNativeInterface.cs.meta │ │ ├── Shaders.meta │ │ └── Shaders │ │ ├── YUVShader.shader │ │ ├── YUVShader.shader.meta │ │ ├── YUVShaderLinear.shader │ │ └── YUVShaderLinear.shader.meta │ ├── Resources.meta │ ├── Resources │ ├── UnityARKitPlugin.meta │ └── UnityARKitPlugin │ │ ├── ARKitSettings.asset │ │ └── ARKitSettings.asset.meta │ ├── UnityARKitPluginSettings.cs │ └── UnityARKitPluginSettings.cs.meta ├── CODING-STYLE.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE ├── LICENSE ├── PULL_REQUEST_TEMPLATE ├── 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 /Assets/ARTabletop.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f64b682ac6341418cb1ed96ed3939afa 3 | folderAsset: yes 4 | timeCreated: 1513618721 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/ARTabletop/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 905bbb6fe19d946abb8315db413099de 3 | folderAsset: yes 4 | timeCreated: 1513618827 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/ARTabletop/Prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec2caff3a8fd64a5eb4cbf8d02259b6b 3 | folderAsset: yes 4 | timeCreated: 1513978780 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/ARTabletop/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2dd74bd35e11479b97da14c47b70e7e 3 | folderAsset: yes 4 | timeCreated: 1513618810 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/ARTabletop/Shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0062fadaf9344411b71810eab773c53 3 | folderAsset: yes 4 | timeCreated: 1513618763 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/ARTabletop/Shader/Clip_Box.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 292d33f3031af4794a9890aa8854c5ff 3 | timeCreated: 1497550267 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ARTabletop/Shader/LICENSE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61f0f236ceb71419eb0c7ea1df349e10 3 | timeCreated: 1498625279 4 | licenseType: Free 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ARTabletop/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 481b0bbc888e94274a2a227e9fd9f536 3 | folderAsset: yes 4 | timeCreated: 1513618987 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/ARTabletop/Textures/Green_Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/ARTabletop/Textures/Green_Texture.png -------------------------------------------------------------------------------- /Assets/ARTabletop/Textures/orange_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/ARTabletop/Textures/orange_texture.png -------------------------------------------------------------------------------- /Assets/ARTabletop/Textures/red_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/ARTabletop/Textures/red_texture.png -------------------------------------------------------------------------------- /Assets/ARTabletop/Textures/yellow_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/ARTabletop/Textures/yellow_texture.png -------------------------------------------------------------------------------- /Assets/GoogleARCore.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74e4fcdb05c15f743842e3280864e8b1 3 | folderAsset: yes 4 | timeCreated: 1505872011 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /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/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/ComputerVision/Plugins/libarcore_camera_utility.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/GoogleARCore/Examples/ComputerVision/Plugins/libarcore_camera_utility.so -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/arcore_camera_utility.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/GoogleARCore/Examples/ComputerVision/Plugins/src/arcore_camera_utility.zip -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/Materials/Andy/AndyBlobShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/GoogleARCore/Examples/HelloAR/Materials/Andy/AndyBlobShadow.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/Materials/Andy/Andy_DiffuseLit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/GoogleARCore/Examples/HelloAR/Materials/Andy/Andy_DiffuseLit.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/Materials/Textures/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/GoogleARCore/Examples/HelloAR/Materials/Textures/Icon.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/Materials/Textures/TriGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/GoogleARCore/Examples/HelloAR/Materials/Textures/TriGrid.png -------------------------------------------------------------------------------- /Assets/GoogleARCore/Examples/HelloAR/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/GoogleARCore/Examples/HelloAR/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Assets/GoogleARCore/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29a90add1a7164050863c7e390cc97be 3 | timeCreated: 1515457486 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /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/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/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/Plugins/arcore_client.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/GoogleARCore/SDK/Plugins/arcore_client.aar -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/libarcore_unity_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/GoogleARCore/SDK/Plugins/libarcore_unity_api.so -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/unityandroidpermissions.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/GoogleARCore/SDK/Plugins/unityandroidpermissions.aar -------------------------------------------------------------------------------- /Assets/GoogleARCore/SDK/Plugins/unitygar.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/GoogleARCore/SDK/Plugins/unitygar.aar -------------------------------------------------------------------------------- /Assets/Mapbox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ea1e493e9ceb4c06bdaaeeacb2e4d7c 3 | folderAsset: yes 4 | timeCreated: 1480534607 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9baba017b10fa4eaeab33dade1902adb 3 | folderAsset: yes 4 | timeCreated: 1481925241 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59e7e6a60c29840a5b9d84b2ee53671a 3 | folderAsset: yes 4 | timeCreated: 1491243030 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/Android/animated-vector-drawable-25.1.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/Android/animated-vector-drawable-25.1.0.aar -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/Android/appcompat-v7-25.1.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/Android/appcompat-v7-25.1.0.aar -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/Android/mapbox-android-telemetry-2-1-0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/Android/mapbox-android-telemetry-2-1-0.aar -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/Android/okhttp-3.8.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/Android/okhttp-3.8.0.jar -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/Android/okio-1.13.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/Android/okio-1.13.0.jar -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/Android/support-compat-25.1.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/Android/support-compat-25.1.0.aar -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/Android/support-core-ui-25.1.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/Android/support-core-ui-25.1.0.aar -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/Android/support-core-utils-25.1.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/Android/support-core-utils-25.1.0.aar -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/Android/support-media-compat-25.1.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/Android/support-media-compat-25.1.0.aar -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/Android/support-v4-25.1.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/Android/support-v4-25.1.0.aar -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/Android/support-vector-drawable-25.1.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/Android/support-vector-drawable-25.1.0.aar -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/ThirdParty/Mapbox.IO.Compression/net35/Mapbox.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/ThirdParty/Mapbox.IO.Compression/net35/Mapbox.IO.Compression.dll -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/ThirdParty/Mapbox.IO.Compression/net35/Mapbox.IO.Compression.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/ThirdParty/Mapbox.IO.Compression/net35/Mapbox.IO.Compression.pdb -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/ThirdParty/Mapbox.IO.Compression/uap10/Mapbox.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/ThirdParty/Mapbox.IO.Compression/uap10/Mapbox.IO.Compression.dll -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/ThirdParty/Mapbox.IO.Compression/uap10/Mapbox.IO.Compression.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/ThirdParty/Mapbox.IO.Compression/uap10/Mapbox.IO.Compression.pdb -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/ThirdParty/Mapbox.Json/Net35/Mapbox.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/ThirdParty/Mapbox.Json/Net35/Mapbox.Json.dll -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/ThirdParty/Mapbox.Json/Net35/Mapbox.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/ThirdParty/Mapbox.Json/Net35/Mapbox.Json.pdb -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/ThirdParty/Mapbox.Json/Portable/Mapbox.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/ThirdParty/Mapbox.Json/Portable/Mapbox.Json.dll -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/ThirdParty/Mapbox.Json/Portable/Mapbox.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/ThirdParty/Mapbox.Json/Portable/Mapbox.Json.pdb -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/iOS/MapboxMobileEvents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fd6399794525486eb643e088be91043 3 | folderAsset: yes 4 | timeCreated: 1495342197 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/iOS/MapboxMobileEvents/libMapboxMobileEventsStatic.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/iOS/MapboxMobileEvents/libMapboxMobileEventsStatic.a -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7b70d51f8688400b91284dd14899b60 3 | timeCreated: 1513645205 4 | licenseType: Pro 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/sqlite/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9aa937fca8cbd945a3a1c9a32a2aeca 3 | folderAsset: yes 4 | timeCreated: 1445131378 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/sqlite/Android/libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ecc37cde00565d439803ae86521a2be 3 | folderAsset: yes 4 | timeCreated: 1445131378 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/sqlite/Android/libs/armeabi-v7a/libsqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/sqlite/Android/libs/armeabi-v7a/libsqlite3.so -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/sqlite/Android/libs/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 450e0a9c89bf4a040b26f1fef13f5655 3 | folderAsset: yes 4 | timeCreated: 1445131378 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/sqlite/Android/libs/x86/libsqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/sqlite/Android/libs/x86/libsqlite3.so -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/sqlite/x64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d080ad26255213a459eabfbd537e41b5 3 | folderAsset: yes 4 | timeCreated: 1445131378 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/sqlite/x64/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/sqlite/x64/sqlite3.dll -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/sqlite/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 854bb0734038dc44e81cdde1d571a00f 3 | folderAsset: yes 4 | timeCreated: 1445131378 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/Plugins/sqlite/x86/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Core/Plugins/sqlite/x86/sqlite3.dll -------------------------------------------------------------------------------- /Assets/Mapbox/Core/mapbox-sdk-cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0573f298307b74fceabb0e3093a486d5 3 | folderAsset: yes 4 | timeCreated: 1491243030 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/mapbox-sdk-cs/Directions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17120e4ab0b97434486f85ff6e0a9196 3 | folderAsset: yes 4 | timeCreated: 1491243030 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/mapbox-sdk-cs/Directions/Response.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41da431a6ab1548a29eecc30eebabe26 3 | folderAsset: yes 4 | timeCreated: 1491243031 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/mapbox-sdk-cs/Geocoding.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1dc4d11759e044eabaa4d5496a96275 3 | folderAsset: yes 4 | timeCreated: 1491243031 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/mapbox-sdk-cs/Geocoding/Response.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ef566ef707b848c4bac9b1f13fccf17 3 | folderAsset: yes 4 | timeCreated: 1491243031 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/mapbox-sdk-cs/Map.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67003c49d480847189c0d8e81c14da83 3 | folderAsset: yes 4 | timeCreated: 1491243031 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/mapbox-sdk-cs/Platform.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 271709ca6cfd047e9ab142950d086b5f 3 | folderAsset: yes 4 | timeCreated: 1491243031 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/mapbox-sdk-cs/Platform/Cache.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15f35c4d53ec8ae459a497d0bee43f77 3 | folderAsset: yes 4 | timeCreated: 1495030845 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/mapbox-sdk-cs/Platform/MbTiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6f1c408c0acc43538b678d17f6ea53d 3 | folderAsset: yes 4 | timeCreated: 1497883478 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/mapbox-sdk-cs/Platform/SQLite.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e42bed265428942f4817d4918fbb7c41 3 | folderAsset: yes 4 | timeCreated: 1497883478 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/mapbox-sdk-cs/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c35672386d7ec45c8acb13ed4bc5190c 3 | folderAsset: yes 4 | timeCreated: 1498231546 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/mapbox-sdk-cs/Tests/UnitTests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1c1dc87a227c49bb8efebbb9ad9a41c 3 | folderAsset: yes 4 | timeCreated: 1498231546 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/mapbox-sdk-cs/Tests/UnitTests/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef29d58528f4f4fd0bfdb0b20e86b3e7 3 | folderAsset: yes 4 | timeCreated: 1498231546 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/mapbox-sdk-cs/Tokens.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8b4380d992e2d14e8b200746856fbf0 3 | folderAsset: yes 4 | timeCreated: 1512083717 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/mapbox-sdk-cs/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec7827c37b22345e6ac27185e2f3aa06 3 | folderAsset: yes 4 | timeCreated: 1491243031 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/mapbox-sdk-cs/Utils/JsonConverters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbed14c6a96bc4fba8b89885ba5f1724 3 | folderAsset: yes 4 | timeCreated: 1491243031 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Core/mapbox-sdk-cs/Utils/Vector2d.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1d1e64226b2747fea7e72a83de288ba 3 | folderAsset: yes 4 | timeCreated: 1491243031 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8423c737b7de472293248d205081118 3 | folderAsset: yes 4 | timeCreated: 1479776710 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59ed766f3a74135449dc3f48437e1ca0 3 | folderAsset: yes 4 | timeCreated: 1510691192 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Explorer.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23aa869f2d28da149b835ce1d36a5438 3 | timeCreated: 1510702474 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 423420df4e1eaa04292614564c3c7cf3 3 | folderAsset: yes 4 | timeCreated: 1511897287 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules/AdminLayer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85666bbf59596af4b912873b42eef525 3 | folderAsset: yes 4 | timeCreated: 1510753426 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules/Aeroway.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9bd23b6443990a4b8cd7c834a740b37 3 | folderAsset: yes 4 | timeCreated: 1510753426 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules/BarrierLine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c17425e6ba45a14eb90128d300bfcd7 3 | folderAsset: yes 4 | timeCreated: 1510753426 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules/BuildingLayer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b34b704da26cacf4fb910650bda0eb13 3 | folderAsset: yes 4 | timeCreated: 1510753426 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules/Contour.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 178440d9ef7aece4c96940bf58b03411 3 | folderAsset: yes 4 | timeCreated: 1510753426 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules/HillshadeLayer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33399b267dda41347bdb0aa67317ab06 3 | folderAsset: yes 4 | timeCreated: 1510753426 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules/ImageFactory.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cee5327cfe74a564ca4d6bf6254369c2 3 | folderAsset: yes 4 | timeCreated: 1510753283 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules/LabelLayers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab7ca9c1a45274e408dacb37a988ea30 3 | folderAsset: yes 4 | timeCreated: 1510791425 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules/LandcoverLayer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c63b571b23ab02248ab14dd7b9eb760b 3 | folderAsset: yes 4 | timeCreated: 1510753426 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules/LanduseLayer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6d6a44892f383e4e9f7b86acc5ec82b 3 | folderAsset: yes 4 | timeCreated: 1510753426 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee9ba559b6a3045a189b9e632c1b6938 3 | folderAsset: yes 4 | timeCreated: 1512616858 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules/RoadLayer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8145a2b20303ddb439c02fd45d030e17 3 | folderAsset: yes 4 | timeCreated: 1510753426 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules/TerrainFactory.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b57e908d5f9ac994282d4e0b3ea77a47 3 | folderAsset: yes 4 | timeCreated: 1510753278 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules/TrafficLayer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f0f45562192d354397666e3bcf0c52a 3 | folderAsset: yes 4 | timeCreated: 1510843762 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules/VectorFactory.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6da885f52a010f14ab230615d637b666 3 | folderAsset: yes 4 | timeCreated: 1510753290 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules/WaterLayer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bde689c27912b7e49a80a5b2ee06f8d3 3 | folderAsset: yes 4 | timeCreated: 1510753426 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Modules/WaterwayLayer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34fa8abd910a3a74388df0d26c4d552a 3 | folderAsset: yes 4 | timeCreated: 1510753426 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Screenshots.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f10ca141ccdf84ec7bef8b9dfbebcd7e 3 | folderAsset: yes 4 | timeCreated: 1512554578 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/1_Explorer/Screenshots/explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/1_Explorer/Screenshots/explorer.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/2_LocationProvider.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22e2a172b526d4e3bafd40f5f586d756 3 | folderAsset: yes 4 | timeCreated: 1492113123 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/2_LocationProvider/Screenshots.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ef49c7fa1a9e453ea5ab9330af191fb 3 | folderAsset: yes 4 | timeCreated: 1512562461 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/2_LocationProvider/Screenshots/LocationProvider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/2_LocationProvider/Screenshots/LocationProvider.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/2_LocationProvider/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed6f47272ae95454eb40041fa418856a 3 | folderAsset: yes 4 | timeCreated: 1508514554 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e33f17d4144e4fa8b0c253be247f78a 3 | folderAsset: yes 4 | timeCreated: 1482516460 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6706549e50f634f11a10e00cd19fe7d1 3 | folderAsset: yes 4 | timeCreated: 1482518610 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Materials/Snow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7460ada75eefd4094bd35100e601df04 3 | timeCreated: 1482518616 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Materials/VoxelAtlas.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05afc24a83fc5af46a41e10c766a965e 3 | timeCreated: 1466594951 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af64fe008866c42538bb9aebacae55ef 3 | folderAsset: yes 4 | timeCreated: 1482530140 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Models/Bricks.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/3_VoxelMap/Models/Bricks.fbx -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Models/Bush.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/3_VoxelMap/Models/Bush.fbx -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Models/Grey Stone.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/3_VoxelMap/Models/Grey Stone.fbx -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Models/Ground Brown.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/3_VoxelMap/Models/Ground Brown.fbx -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Models/Ground Green.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/3_VoxelMap/Models/Ground Green.fbx -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Models/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 866752f6076f44ab392a4706cb4a1bfa 3 | folderAsset: yes 4 | timeCreated: 1483561468 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Models/Materials/Pixel Cube Atlas.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2f465657db204c2793d38edf17f3730 3 | timeCreated: 1483561468 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Models/Sand.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/3_VoxelMap/Models/Sand.fbx -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Models/Water.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/3_VoxelMap/Models/Water.fbx -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4efac2674087543f499ba6894438843f 3 | folderAsset: yes 4 | timeCreated: 1482518579 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Prefabs/VoxelTile.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fba37c4357e94357a9e030c152cb582 3 | timeCreated: 1482522521 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Prefabs/Voxels.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fd1578d6bb474441bcefe4d83ed9143 3 | folderAsset: yes 4 | timeCreated: 1482522527 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Prefabs/Voxels/Bricks.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 031f1f201bbba400eab296024929dff9 3 | timeCreated: 1482530030 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Prefabs/Voxels/Bush.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bab41b00b822431298c5d57404b84ce 3 | timeCreated: 1482530056 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Prefabs/Voxels/Grass.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be188b8431533497f81342f748507523 3 | timeCreated: 1482530117 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Prefabs/Voxels/Ground.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86204e4d8182e47fba9a34b82fba90b5 3 | timeCreated: 1482530103 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Prefabs/Voxels/Sand.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14cd476dd6ad643c98df122c3491e379 3 | timeCreated: 1482530130 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Prefabs/Voxels/Snow.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08a5c81e68c344101b7d6dfa2d4518d9 3 | timeCreated: 1482530130 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Prefabs/Voxels/Stone.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a09bf619783d54820b0a4ffa05a96046 3 | timeCreated: 1482530086 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Prefabs/Voxels/Water.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0de7a5089ac5549d4a6abaa3325c5b66 3 | timeCreated: 1482530016 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Screenshots.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7aa75c79c65fe40d285ace42eef40723 3 | folderAsset: yes 4 | timeCreated: 1512612929 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Screenshots/VoxelMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/3_VoxelMap/Screenshots/VoxelMap.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ea49daf8e0bf4305ba1885d2e2cc178 3 | folderAsset: yes 4 | timeCreated: 1482516460 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Scripts/VoxelData.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Mapbox.Examples.Voxels 4 | { 5 | public class VoxelData 6 | { 7 | public Vector3 Position; 8 | public GameObject Prefab; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa8459f9013934b5c8e21a28a6cb3cfd 3 | folderAsset: yes 4 | timeCreated: 1482530146 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/Textures/VoxelAtlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/3_VoxelMap/Textures/VoxelAtlas.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/3_VoxelMap/VoxelMap.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: daabe3028a2c14661b829fff509af827 3 | timeCreated: 1482519022 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/4_VectorTileMaps.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e3accf79073d4300b2563ee581d4022 3 | folderAsset: yes 4 | timeCreated: 1512240078 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/4_VectorTileMaps/BasicVectorMap.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f483f851ae996a449cb0956927162de 3 | folderAsset: yes 4 | timeCreated: 1485384708 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/4_VectorTileMaps/BasicVectorMap/BasicVectorMap.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f804e6882903c5f4595d554933b1cd94 3 | timeCreated: 1494434733 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/4_VectorTileMaps/PoiVectorMap.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5696fab07f031224cbe19d4e31491b1c 3 | folderAsset: yes 4 | timeCreated: 1485384708 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/4_VectorTileMaps/PoiVectorMap/PoiVectorMap.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8f424455a2bb4963b4df1469488ab87 3 | timeCreated: 1494434733 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/4_VectorTileMaps/PoiVectorMap/PoiVectorVisualizer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9b7f3a88d66eb542933eb7aa557a5fd 3 | timeCreated: 1485208234 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/4_VectorTileMaps/TerrainVectorMap.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed4a47e16e68e4ca686bf52e2918a641 3 | folderAsset: yes 4 | timeCreated: 1485384708 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/4_VectorTileMaps/TerrainVectorMap/TerrainVectorMap.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22b55e3f56b6044b6bbd8476d27843e7 3 | timeCreated: 1494434733 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/5_ZoomableMap/Screenshots.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5bf435103e6b943cbaff9156d10adefa 3 | folderAsset: yes 4 | timeCreated: 1512562508 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/5_ZoomableMap/Screenshots/ZoomableMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/5_ZoomableMap/Screenshots/ZoomableMap.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/5_ZoomableMap/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 836b25bbb1ee14be1bf16d1922ef7651 3 | folderAsset: yes 4 | timeCreated: 1512232891 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/6_Globe.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4c902100714643efb5c0ddebbafcb5e 3 | folderAsset: yes 4 | timeCreated: 1485467385 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/6_Globe/Globe.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 614e3e19125ae46c7af990b7e3debd36 3 | timeCreated: 1485462069 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/6_Globe/GlobeVisualizer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da299adc49d7140ffbce3aa9e794407c 3 | timeCreated: 1485462773 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/6_Globe/Screenshots.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84153ae0642404f2fb861be93b53f120 3 | folderAsset: yes 4 | timeCreated: 1512562391 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/6_Globe/Screenshots/Globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/6_Globe/Screenshots/Globe.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/6_Globe/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba8ca543f559e4f36b738fa9656ebd61 3 | folderAsset: yes 4 | timeCreated: 1505944885 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/7_Playground.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f009fddedf714e3190243d6f01fd4bc 3 | folderAsset: yes 4 | timeCreated: 1480556822 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/7_Playground/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6945c6e6fe5104d8082a9b97201c039b 3 | folderAsset: yes 4 | timeCreated: 1481919576 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/7_Playground/Scenes/Directions.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b650aa71f57a846dc83ef01c3c1755ad 3 | timeCreated: 1480368203 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/7_Playground/Scenes/ForwardGeocoder.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9683d5465276540cd9a4c9e89d931293 3 | timeCreated: 1480368203 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/7_Playground/Scenes/RasterTile.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 893d0b4deb5544335b798dafd12ff9a7 3 | timeCreated: 1480376479 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/7_Playground/Scenes/ReverseGeocoder.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a904a5fcec05469db76712a52999b39 3 | timeCreated: 1480368203 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/7_Playground/Scenes/VectorTile.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 416b524fd28da493a9b8e35443dbd25b 3 | timeCreated: 1480368203 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/7_Playground/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82fc5af5fb735425683aba1dd1d22379 3 | folderAsset: yes 4 | timeCreated: 1480363911 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e002d6b4103c4850aabdc78905ab992 3 | folderAsset: yes 4 | timeCreated: 1490646333 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Prefabs/ForwardGeocoderCanvas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be407b770a1444c32b66d2c4ecd7331c 3 | timeCreated: 1482434180 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb5876c816add2947b36e0c46946195d 3 | folderAsset: yes 4 | timeCreated: 1502482884 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/3DPoiMarker.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44828d4325e8b544ca6ffec352cfe165 3 | timeCreated: 1494885938 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/BuildingMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cc6a7dc3df7cc84693bdde07669ab5b 3 | timeCreated: 1485209270 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/Bush.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a36803f92a1f4fb98a10f9d00e184bc 3 | timeCreated: 1499973917 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/Bush2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e161657d9f870459abb03b980a14de8a 3 | timeCreated: 1499975447 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/Bush2Material.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4da84c5c49be450c8502c76826ffc3f 3 | timeCreated: 1499975083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/BushMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86f71d3c44c394b9c851347cec33b98f 3 | timeCreated: 1499975083 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/DriveBuildingMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a84d22a5fa79bce4396212d84ad11831 3 | timeCreated: 1485392470 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/Frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/Frame.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/GreenMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8403131cbac7ff94b9052e03e29b30c9 3 | timeCreated: 1485209270 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/HeavyTrafficMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f2f4f0fee2e2fb4db372496551d3072 3 | timeCreated: 1485393337 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/LocationProviderMapMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ba055cb55bcc4488b727c601be0be29 3 | timeCreated: 1492114686 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/LowPolyTerrainMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03fcf11879198499f9e71b4e087af3c0 3 | timeCreated: 1485209270 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/MakiPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39c06c41287c07843b78097666be5c58 3 | timeCreated: 1484179088 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/MakiUiPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e3a8050aac992649b0cb2bc0e9be702 3 | timeCreated: 1484178910 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/ModerateTrafficMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f3e37f3a85060c47b951b5c10c03e39 3 | timeCreated: 1485393337 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/OrangeMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: caa6c6f6f7879034992a27a6bc3794fd 3 | timeCreated: 1485209270 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/RoadMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e8afdee0a225a84282f04f2fb89b8b6 3 | timeCreated: 1485209270 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/Selector.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f2328827ebdbc1419707178041b852b 3 | timeCreated: 1499983776 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/SevereTrafficMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1519d458afd548428922c53a57c9d39 3 | timeCreated: 1485393337 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/TerraceSide.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31d8bd8fc9d4850408a1660cf3619850 3 | timeCreated: 1500643443 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/TerraceTop.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1843a50abea6fa448a61d143054f2166 3 | timeCreated: 1500643443 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/TerrainMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9f23e9bce724fa4daac57ecded470b8 3 | timeCreated: 1485209270 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/TrafficMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d21f59fb1aed75844b6e32c2856da19f 3 | timeCreated: 1485393337 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/Water.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4052583f8c58c0e4c852742d5b8f0649 3 | timeCreated: 1500644997 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96da23a08c7414f49a8bc20864637865 3 | folderAsset: yes 4 | timeCreated: 1485355922 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/aerialway-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/aerialway-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/airfield-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/airfield-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/airport-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/airport-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/alcohol-shop-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/alcohol-shop-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/america-football-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/america-football-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/amusement-park-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/amusement-park-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/aquarium-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/aquarium-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/art-gallery-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/art-gallery-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/attraction-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/attraction-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/bakery-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/bakery-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/bank-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/bank-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/bar-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/bar-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/baseball-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/baseball-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/basketball-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/basketball-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/beer-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/beer-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/bicycle-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/bicycle-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/bicycle-share-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/bicycle-share-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/blood-bank-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/blood-bank-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/buddhism-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/buddhism-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/building-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/building-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/bus-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/bus-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/cafe-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/cafe-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/campsite-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/campsite-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/car-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/car-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/castle-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/castle-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/cemetery-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/cemetery-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/central-building-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/central-building-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/cinema-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/cinema-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/circle-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/circle-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/circle-stroked-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/circle-stroked-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/clothing-store-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/clothing-store-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/college-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/college-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/commercial-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/commercial-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/cricket-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/cricket-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/cross-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/cross-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/dam-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/dam-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/danger-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/danger-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/dentist-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/dentist-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/doctor-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/doctor-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/dog-park-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/dog-park-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/drinking-water-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/drinking-water-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/embassy-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/embassy-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/entrance-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/entrance-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/farm-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/farm-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/fast-food-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/fast-food-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/ferry-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/ferry-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/fire-station-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/fire-station-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/fuel-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/fuel-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/gaming-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/gaming-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/garden-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/garden-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/garden-center-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/garden-center-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/gift-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/gift-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/golf-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/golf-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/grocery-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/grocery-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/hairdresser-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/hairdresser-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/harbor-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/harbor-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/heart-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/heart-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/heliport-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/heliport-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/hospital-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/hospital-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/ice-cream-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/ice-cream-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/industry-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/industry-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/information-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/information-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/karaoke-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/karaoke-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/landmark-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/landmark-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/laundry-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/laundry-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/library-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/library-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/lighthouse-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/lighthouse-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/lodging-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/lodging-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/marker-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/marker-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/monument-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/monument-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/mountain-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/mountain-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/museum-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/museum-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/music-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/music-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/park-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/park-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/parking-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/parking-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/parking-garage-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/parking-garage-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/pharmacy-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/pharmacy-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/picnic-site-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/picnic-site-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/pitch-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/pitch-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/place-of-worship-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/place-of-worship-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/playground-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/playground-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/police-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/police-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/post-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/post-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/prison-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/prison-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/rail-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/rail-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/rail-light-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/rail-light-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/rail-metro-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/rail-metro-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/ranger-station-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/ranger-station-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/religious-christian-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/religious-christian-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/religious-jewish-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/religious-jewish-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/religious-muslim-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/religious-muslim-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/residential-community-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/residential-community-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/restaurant-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/restaurant-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/roadblock-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/roadblock-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/rocket-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/rocket-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/school-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/school-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/shelter-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/shelter-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/shop-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/shop-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/skiing-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/skiing-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/soccer-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/soccer-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/square-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/square-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/square-stroked-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/square-stroked-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/stadium-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/stadium-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/star-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/star-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/star-stroked-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/star-stroked-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/suitcase-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/suitcase-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/sushi-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/sushi-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/swimming-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/swimming-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/teahouse-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/teahouse-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/telephone-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/telephone-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/tennis-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/tennis-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/theatre-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/theatre-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/toilet-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/toilet-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/town-hall-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/town-hall-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/triangle-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/triangle-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/triangle-stroked-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/triangle-stroked-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/veterinary-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/veterinary-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/volcano-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/volcano-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/warehouse-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/warehouse-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/waste-basket-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/waste-basket-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/water-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/water-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/wetland-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/wetland-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/wheelchair-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/wheelchair-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/maki/zoo-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/maki/zoo-15.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Resources/roadTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Resources/roadTest.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fd49800828142e459c8f90273994d18 3 | folderAsset: yes 4 | timeCreated: 1502482884 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11b6257f2d1394da4aaf941d16569953 3 | folderAsset: yes 4 | timeCreated: 1495678673 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Textures/CircleSmall_Fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Textures/CircleSmall_Fill.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Textures/CornerPanelRadius_0px_Fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Textures/CornerPanelRadius_0px_Fill.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Textures/CornerPanelRadius_0px_Stroke_2px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Textures/CornerPanelRadius_0px_Stroke_2px.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Textures/CornerPanelRadius_6px_Stroke_2px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Textures/CornerPanelRadius_6px_Stroke_2px.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/Textures/OneSideCornerPanelRadius_6px_Fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Examples/Textures/OneSideCornerPanelRadius_6px_Fill.png -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7c7ee4e09f02f248a8ec08427bdc05f 3 | folderAsset: yes 4 | timeCreated: 1502482234 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/BasicsVectorTileFactory.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee4d24cec5a998543b716563b2b77dae 3 | timeCreated: 1494434733 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/BoxColliderModifier.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7b664c5d0b1dfd4ea8bf239a71912ef 3 | timeCreated: 1494350935 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/ContourLayerVisualizer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5225cff0314e0fa4b92190829fefeaf3 3 | timeCreated: 1500643231 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/ContourMergedStyle.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3647897e3930654caf419e243c60bfc 3 | timeCreated: 1500643300 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/ContourTerraceMeshFactory.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99a5ed38fb057344493cad6cc2af7477 3 | timeCreated: 1500643208 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/DirectionsHeight.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd4bcff551c0d418997f52b78da87a0e 3 | timeCreated: 1485393302 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/DirectionsLine.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d31b2cb2a75a54d5bb6402fe0bd8c6cf 3 | timeCreated: 1485393291 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/FixedHeightModifier.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 746927ff22b0c5247bc7d3e1c9b928d7 3 | timeCreated: 1485209393 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/FlatTerrainFactory.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b6c6a798b018ed449bccff86fbf6fd8 3 | timeCreated: 1502761717 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/GlobeTerrainFactory.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6dee93d9a198a4699800e20d1e1ea6b6 3 | timeCreated: 1500049552 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/HeightModifier.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a49403503b2b1534f832833cbd477437 3 | timeCreated: 1485209393 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/HighlightModifier.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa354e89f869a4db0a6c3ceb3c79d0be 3 | timeCreated: 1499887015 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/LineModifier.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c518d85eb2ed0440ac158307895eec4 3 | timeCreated: 1485266533 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/LowPolyTerrainFactory.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 516d89dfeaaf9c743935a4f89e93220c 3 | timeCreated: 1501697876 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/MeshColliderModifier.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 203d61015a4124744bf28f4502b286fc 3 | timeCreated: 1499974088 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/ObjectInspector.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14ec972a1cec2dc429f5eca7d22b572f 3 | timeCreated: 1499990087 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/ParkLayerModifier.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3505ec4e61e3f4c4d88fc3c5548e7144 3 | timeCreated: 1499974183 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/ParkModifierStack.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 000166c0f999e4d44b968d47724ea242 3 | timeCreated: 1499974020 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/ParkVectorLayerVisualizer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42d0c054e597a4590a29b5b66fbec4aa 3 | timeCreated: 1499973942 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/PoiDemo3dPoiModifier.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 873cf898fb44149798c637959fd811ba 3 | timeCreated: 1495466963 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/PoiDemo3dPoiModifierStack.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85d1afb37443a9c4484dffbeecb4cbd5 3 | timeCreated: 1494972592 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/PoiDemo3dPoiVisualizer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a493b030d561f34448a13f55bec8b7fc 3 | timeCreated: 1485353769 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/PoiDemoUiPoiModifier.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 866380150c130402eb0d14f648c57418 3 | timeCreated: 1495466963 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/PoiDemoUiPoiModifierStack.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 493414ab78a4e1b4896fc10cd6be4fa1 3 | timeCreated: 1494972592 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/PoiDemoUiPoiVisualizer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3395a1a7d9533a74591d5ae0381edbfe 3 | timeCreated: 1485353769 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/PoiVectorTileFactory.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6db6e4901cc50246b1ed5c328d73872 3 | timeCreated: 1485208825 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/PolygonModifier.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fe5c136889ae0347af431be7e59e489 3 | timeCreated: 1485209327 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/SatelliteImageFactory.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8aa6dfef55a93474fbc6cdfbb145b7d1 3 | timeCreated: 1485462806 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/ScenicMapImageFactory.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4304eeeba74ed4e48a435f96d9076abc 3 | timeCreated: 1494434733 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/SchoolFilter.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e91169d62cb08f546aad375d626c1d51 3 | timeCreated: 1485377766 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/SnapTerrainModifier.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1c619f43a2cb5b4a8cbc80e9e814804 3 | timeCreated: 1494973424 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/SpawnInParkModifier.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5cfd67d46b2f4892ae231737f3a95f8 3 | timeCreated: 1499974107 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/StyledBuildingVisualizer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69e43c5ee5f5f6b46a12bf3f1ba27039 3 | timeCreated: 1485209228 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/StylingVectorTileFactory.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 923119689e177024682db7c643a8d54b 3 | timeCreated: 1485208825 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/StylizedMapImageFactory.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d4ed53de8faf4af593ed0fa52208909 3 | timeCreated: 1492114655 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/TerrainBuildingStack.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11b79b69f7d364409b9f32b249c41b82 3 | timeCreated: 1494434733 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/TerrainBuildingVisualizer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b89dd37c0da7984e9b4e47434079059 3 | timeCreated: 1485209228 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/TerrainFactory.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74ed94e68d943483b89421350156bef7 3 | timeCreated: 1495687360 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/TerrainVectorTileFactory.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4c27502735c942dca373c40a29e5a58 3 | timeCreated: 1494434733 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/TransparentBlueSelectablePolygonStack.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c7bd733341fc0a47bfbaea08b5f15ba 3 | timeCreated: 1485212723 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/TransparentGreyBuildingVisualizer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49b5b5cab8982084a986f2d148acff42 3 | timeCreated: 1485209228 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/TransparentGreyPolygonStack.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb06f9324c5364f48a98112dcafcd891 3 | timeCreated: 1485212723 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/TransparentGreySelectablePolygonStack.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70166653a5881394c9dc697c1014376e 3 | timeCreated: 1494434733 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Examples/_sharedModules/UvModifier.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b432bf85b0df280468dcfdaf5a9b90d0 3 | timeCreated: 1485209375 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d729f28e8e9e4c73874798680125792 3 | folderAsset: yes 4 | timeCreated: 1480366434 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /Assets/Mapbox/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Assets/Mapbox/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /Assets/Mapbox/Fonts/OpenSansLic.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d1743538c61d42559fdf1e11d5bad17 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Mapbox/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7649b69d4931a741ad3dcc8d326087b 3 | folderAsset: yes 4 | timeCreated: 1505418320 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0db425f244af04bc9a710f6886a34403 3 | folderAsset: yes 4 | timeCreated: 1480368170 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Prefabs/Attribution.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3adcee2515f8c49f4a7afb3bacf2c56e 3 | timeCreated: 1495664292 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/README.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ae487f330dd3406f827bfa400c2d056 3 | timeCreated: 1480534669 4 | licenseType: Free 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Mapbox/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a5e985e7333443019481a23949c6167 3 | folderAsset: yes 4 | timeCreated: 1512679461 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Resources/Mapbox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c37bc97c80774f8aa0cb426d0f87ab5 3 | folderAsset: yes 4 | timeCreated: 1512672366 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce8bcb7ed11f64e35aa8cd9056463e21 3 | folderAsset: yes 4 | timeCreated: 1509042932 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddaef7af8cc3345f7a3a01581fb377fd 3 | folderAsset: yes 4 | timeCreated: 1495662334 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Textures/CornerPanelRadius_12px_Fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Textures/CornerPanelRadius_12px_Fill.png -------------------------------------------------------------------------------- /Assets/Mapbox/Textures/CornerPanelRadius_12px_Stroke_1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Textures/CornerPanelRadius_12px_Stroke_1px.png -------------------------------------------------------------------------------- /Assets/Mapbox/Textures/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Textures/info.png -------------------------------------------------------------------------------- /Assets/Mapbox/Textures/loadinggrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Textures/loadinggrid.png -------------------------------------------------------------------------------- /Assets/Mapbox/Textures/mapbox-attribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Textures/mapbox-attribution.png -------------------------------------------------------------------------------- /Assets/Mapbox/Textures/mapbox-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Mapbox/Textures/mapbox-logo-white.png -------------------------------------------------------------------------------- /Assets/Mapbox/Unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 230696630f4b5443484cd2ab1a257186 3 | folderAsset: yes 4 | timeCreated: 1490801419 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/Ar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d37fa1bfefdd840fd98d289f8c14eec9 3 | folderAsset: yes 4 | timeCreated: 1513875605 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/Ar/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e01014e959fb2504b911afba02abdb52 3 | folderAsset: yes 4 | timeCreated: 1516276630 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/Ar/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7af4477a61d8f461385c23c4914f9273 3 | folderAsset: yes 4 | timeCreated: 1501887040 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7910a23e9d0cc47fc9fb15102d280728 3 | folderAsset: yes 4 | timeCreated: 1480532369 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/Editor/Build.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28d2b990a838d44e1b28195d8465d645 3 | folderAsset: yes 4 | timeCreated: 1495491662 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/Editor/NodeEditor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f67482bbbca707249971449edec649cf 3 | folderAsset: yes 4 | timeCreated: 1502473442 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/Editor/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3450cb6b0b39746b8a419565a90986a8 3 | folderAsset: yes 4 | timeCreated: 1501520862 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/Location.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ef01f907e34d4888af041661232ec58 3 | folderAsset: yes 4 | timeCreated: 1492101090 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/Map.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42ef37aa061534ce9a9e3a6c1b9d4eb7 3 | folderAsset: yes 4 | timeCreated: 1494970401 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/MeshGeneration.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 933a67253473ab549ad28250c28bedf8 3 | folderAsset: yes 4 | timeCreated: 1485206216 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/MeshGeneration/Components.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b418c0cc9fb9f92448750e73736cb2e2 3 | folderAsset: yes 4 | timeCreated: 1485208035 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/MeshGeneration/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b95895b4bbc4844cade47f970759aa5 3 | folderAsset: yes 4 | timeCreated: 1485207080 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/MeshGeneration/Enums.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 665b654cd42daed428aacdad0c045d85 3 | folderAsset: yes 4 | timeCreated: 1485206853 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/MeshGeneration/Enums/TilePropertyState.cs: -------------------------------------------------------------------------------- 1 | namespace Mapbox.Unity.MeshGeneration.Enums 2 | { 3 | public enum TilePropertyState 4 | { 5 | None, 6 | Loading, 7 | Loaded, 8 | Error, 9 | Cancelled, 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/MeshGeneration/Factories.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed0cb36528ae4584b9d01d98fee861f5 3 | folderAsset: yes 4 | timeCreated: 1494961030 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/MeshGeneration/Filters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32e94cd9a75b25c439ca153c42fcb598 3 | folderAsset: yes 4 | timeCreated: 1485210114 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/MeshGeneration/Interfaces.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4ff53839a2a7b04bb09cc89f514267d 3 | folderAsset: yes 4 | timeCreated: 1483047390 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/MeshGeneration/LayerVisualizers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 563368f5fe3c51549bbbdd1ce2d6dd9a 3 | folderAsset: yes 4 | timeCreated: 1478551786 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/MeshGeneration/Modifiers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25cf434b1eb73654b87eeb87c3dd3874 3 | folderAsset: yes 4 | timeCreated: 1478551853 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/Telemetry.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff43b04e8265a4ea69fb9b5064253dc1 3 | folderAsset: yes 4 | timeCreated: 1495731121 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/Telemetry/ITelemetryLibrary.cs: -------------------------------------------------------------------------------- 1 | namespace Mapbox.Unity.Telemetry 2 | { 3 | public interface ITelemetryLibrary 4 | { 5 | void Initialize(string accessToken); 6 | void SendTurnstile(); 7 | void SetLocationCollectionState(bool enable); 8 | } 9 | } -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d10bbba7a3d94e2989079bc02fa1f98 3 | folderAsset: yes 4 | timeCreated: 1481916046 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/Utilities/DebugTools.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2f9985805e6d4227a776425b7c33ca4 3 | folderAsset: yes 4 | timeCreated: 1512101271 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Mapbox/Unity/Utilities/DebugTools/ScenesList.cs: -------------------------------------------------------------------------------- 1 | namespace Mapbox.Unity.Utilities.DebugTools 2 | { 3 | using UnityEngine; 4 | 5 | public class ScenesList : ScriptableObject 6 | { 7 | public SceneData[] SceneList; 8 | } 9 | } -------------------------------------------------------------------------------- /Assets/MapboxARScenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 742c539913b6c4b228a261251683e214 3 | folderAsset: yes 4 | timeCreated: 1501165719 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MapboxARScenes/ARTabletopScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a455922b0e2954431922c9fb6c5377e4 3 | timeCreated: 1513979023 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MapboxARScenes/AutomaticWorldSynchronization.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c60dfd6bb74264e44b3dbf93e9d129c4 3 | -------------------------------------------------------------------------------- /Assets/MapboxARScenes/ManualWorldSynchronization.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9ff170f22f0545c3970a889a592f312 3 | -------------------------------------------------------------------------------- /Assets/MapboxARScenes/SimpleMap.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd25826cc91c1478d9b48b5c83e30c92 3 | folderAsset: yes 4 | timeCreated: 1502383755 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e836c5975e22a4706b42845135244877 3 | folderAsset: yes 4 | timeCreated: 1501256004 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Materials/DebugBuildings.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5af501b9ca374cf1948c4571862c6f9 3 | timeCreated: 1501876350 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Materials/Occlusion.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3737ed2890d14151b01de93c3871a7c 3 | timeCreated: 1501615183 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Materials/PathMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 005546b882afb44b593a9179506c4b9b 3 | timeCreated: 1501256018 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Navigation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1deaf6ab27dfd4022b64419177adee10 3 | folderAsset: yes 4 | timeCreated: 1501556445 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f42bbb954c2345408bcd93ea8252986 3 | folderAsset: yes 4 | timeCreated: 1501556445 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Cube.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86232f43ed7fd4fc5a9098ccda13d2ef 3 | timeCreated: 1477957945 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2754679492f144202988ea69417caa96 3 | folderAsset: yes 4 | timeCreated: 1475053750 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1716d92973fc64cc09961634f8be8d76 3 | folderAsset: yes 4 | timeCreated: 1430737280 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Materials/brightgreen.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c9ea827aaa4145c8900e81ca1395aae 3 | timeCreated: 1430813789 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Materials/brown.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e1c6a0a64beb49ec96272beefa468a5 3 | timeCreated: 1430813651 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Materials/crosshair.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f20074b5ffb143d2a869e4cc78d9d5e 3 | timeCreated: 1431078136 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Materials/floor.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3adb56b3302734c8d8e5a18699302e85 3 | timeCreated: 1430743212 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Materials/green.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0aa37164acf594e03876b4e0b590280e 3 | timeCreated: 1430813582 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Materials/grey.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ade8fca681f724cd89b5a568642f15ae 3 | timeCreated: 1430737280 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Materials/modify_crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Materials/modify_crosshair.png -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Materials/red.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5195427c0d27644ed90d87ebe86d468a 3 | timeCreated: 1430999474 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Materials/yellow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c07befab8ca1540368e662cfe2fddf6b 3 | timeCreated: 1430813764 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 547d8777744d94a36a3bd59fbf4ee093 3 | folderAsset: yes 4 | timeCreated: 1430991743 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/BanyanTree.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Prefabs/BanyanTree.fbx -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/BanyanTree.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46d69f622d1354ee0820b7921e262b38 3 | timeCreated: 1430814488 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be9fddd1e682b4cfa9f64bd6f34b553f 3 | folderAsset: yes 4 | timeCreated: 1431424477 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile0.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile0.prefab -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile0.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d7ea54c92e3c4ca3bdd081adb6953e3 3 | timeCreated: 1430743184 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile1.prefab -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00022e44e06ba4686a52ff33cd6af19b 3 | timeCreated: 1430743182 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile10.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile10.prefab -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile10.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8eccfbc35cf449459e0a29707a8601a 3 | timeCreated: 1430743154 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile11.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile11.prefab -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile11.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8f00be40153543d0ab1f0d99a74df6c 3 | timeCreated: 1430743152 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile12.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile12.prefab -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile12.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02a96c93422fc486489a73449bf5dc57 3 | timeCreated: 1430743150 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile13.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile13.prefab -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile13.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e161c87f6a4c3413c881fcb2dfdd9b28 3 | timeCreated: 1430743114 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile14.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile14.prefab -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile14.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a4dcf0d36e2c40188dbb2e26e6bebb4 3 | timeCreated: 1430743112 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile15.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile15.prefab -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile15.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccf62cf2152f44840bc4038e037a7075 3 | timeCreated: 1430743110 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile2.prefab -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecf4f05d57d0b4d8aae8ee4c7cdc7ed3 3 | timeCreated: 1430743180 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile3.prefab -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile3.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b33f2fc7081e8459fb6d76b57d008b89 3 | timeCreated: 1430743176 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile4.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile4.prefab -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile4.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90dfa7f7fe66347389d869f92b1b6a9f 3 | timeCreated: 1430743174 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile5.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile5.prefab -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile5.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5031ae0cd920f4015b78bf393dd8d327 3 | timeCreated: 1430743172 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile6.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile6.prefab -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile6.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd19d9115d9a14e4193a39766437a679 3 | timeCreated: 1430743170 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile7.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile7.prefab -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile7.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7af464697e0ab41a5be05dee6f5c2b73 3 | timeCreated: 1430743167 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile8.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile8.prefab -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile8.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29ceda01ee5384847a4e46a74595d08c 3 | timeCreated: 1430743165 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile9.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile9.prefab -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/DungeonTiles/Tile9.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 828a29cbf25f8441dabc6d11c2acb77b 3 | timeCreated: 1430743157 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/GroundTile.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1f4492f15da844ebae2767c08ef4aab 3 | timeCreated: 1430816526 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d90e8e96f35140d6bed17ee9c581927 3 | folderAsset: yes 4 | timeCreated: 1431423977 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/Materials/BanyanBark.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4013ffb83471c44a99ae39dd19f4bb58 3 | timeCreated: 1431423977 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/Materials/BanyanBranches.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7186e4ec31ca3459da36b9faf2049a09 3 | timeCreated: 1431423977 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Prefabs/Plank.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9c7047f49d1a47f8b32b67338d4fc92 3 | timeCreated: 1430998965 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2cb1390efdb94ba790577476c2dba3c 3 | folderAsset: yes 4 | timeCreated: 1430992180 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Scenes/1_multiple_agent_sizes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1b14868671104a5ea9d67deed03d64d 3 | folderAsset: yes 4 | timeCreated: 1461672818 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Scenes/1_multiple_agent_sizes.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3a4b724d578d4696a8ccd679e44174c 3 | timeCreated: 1431084827 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Scenes/1_multiple_agent_sizes/NavMesh-Geometry 1.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Scenes/1_multiple_agent_sizes/NavMesh-Geometry 1.asset -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Scenes/1_multiple_agent_sizes/NavMesh-Geometry.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Scenes/1_multiple_agent_sizes/NavMesh-Geometry.asset -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Scenes/2_drop_plank.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5440f69c97a641f19160f152dfb503f 3 | timeCreated: 1430998263 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Scenes/3_free_orientation.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de3b928c3e7da4138bdb4cf0c0c43b2f 3 | timeCreated: 1431090429 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Scenes/3_free_orientation/NavMesh.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Scenes/3_free_orientation/NavMesh.asset -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Scenes/3_free_orientation/NavMesh.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df1140b6a36a84fcc80e4e177275c22b 3 | timeCreated: 1475077811 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Scenes/4_sliding_window_infinite.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e51437cfed50e46d58183a8174327158 3 | timeCreated: 1430735143 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Scenes/5_sliding_window_terrain.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c20ed45d4ebd40df8a16fa95e142c57 3 | timeCreated: 1430832619 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Scenes/6_modify_mesh.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01a58dc6a76c24f859a51e3de2203501 3 | timeCreated: 1430914489 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Scenes/7_dungeon.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64e67ca20d18848429dd567d351e9746 3 | timeCreated: 1430743376 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Scenes/7b_dungeon_tile_prefabs.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bfaa57130eb14f6d8c52e272c368f13 3 | timeCreated: 1431424678 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2ed02c68fbdf4352979d89a8d1c7bfb 3 | folderAsset: yes 4 | timeCreated: 1475051136 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Scripts/RandomWalk.cs.orig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25068c3f5cf14462eb21512ac44e07cd 3 | timeCreated: 1475070286 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Terrains.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75dd45a13a93f4ea2a0e5018ef4651c6 3 | folderAsset: yes 4 | timeCreated: 1430832572 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Terrains/Islands.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Terrains/Islands.asset -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Terrains/Islands.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94511fbc8bb3e4f94aa3a65d6f584b9d 3 | timeCreated: 1431423810 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Navigation/Examples/Terrains/LightmapWithFog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Examples/Terrains/LightmapWithFog.png -------------------------------------------------------------------------------- /Assets/Navigation/Gizmos.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a78c2ae2a4da94691b95a75940a1095e 3 | folderAsset: yes 4 | timeCreated: 1501556445 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Navigation/Gizmos/NavMeshLink Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Gizmos/NavMeshLink Icon.png -------------------------------------------------------------------------------- /Assets/Navigation/Gizmos/NavMeshModifierVolume Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Gizmos/NavMeshModifierVolume Icon.png -------------------------------------------------------------------------------- /Assets/Navigation/Gizmos/NavMeshSurface Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Navigation/Gizmos/NavMeshSurface Icon.png -------------------------------------------------------------------------------- /Assets/Navigation/NavMeshComponents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3555c191fe8a4b56a1d027cce027503 3 | folderAsset: yes 4 | timeCreated: 1501556445 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Navigation/NavMeshComponents/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63b588f3892bb4b5eb73ad3d2791e05c 3 | folderAsset: yes 4 | timeCreated: 1477656493 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Navigation/NavMeshComponents/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce67aa87f613246dda63a54a59c6399e 3 | folderAsset: yes 4 | timeCreated: 1477656493 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63d52c2033edd48c39f575115990af7e 3 | folderAsset: yes 4 | timeCreated: 1501166183 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Prefabs/AR.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d985e787e9e784f63a3754482fc48820 3 | timeCreated: 1502384078 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Prefabs/DebugCanvas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a89c0ae7457624c87a34c072ba025592 3 | timeCreated: 1501170467 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Prefabs/Directions.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bca410a2bb40d4803b3bd0d9f44a410a 3 | timeCreated: 1502384144 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c892869810f94241ab6a7d6e7840a04 3 | folderAsset: yes 4 | timeCreated: 1502409994 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources/Mapbox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd48fa732c2d2494e8bb89e647fa3e00 3 | folderAsset: yes 4 | timeCreated: 1513978410 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea66fe3d334074d8daf7e64a97610b8d 3 | folderAsset: yes 4 | timeCreated: 1503076433 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Camera.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18ff52a64179444d2bacde7900c0e6fc 3 | folderAsset: yes 4 | timeCreated: 1503076433 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e86dee9320fb47e49e35fdad77cf701 3 | folderAsset: yes 4 | timeCreated: 1501349098 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Textures/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Textures/location.png -------------------------------------------------------------------------------- /Assets/Textures/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/Textures/log.png -------------------------------------------------------------------------------- /Assets/UnityARInterface.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67e11b50dcd5c7244a9205257784ab20 3 | folderAsset: yes 4 | timeCreated: 1505938985 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/UnityARInterface/Examples/ARBallz/ARBallz.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dff119607a5a14008b94240522000efb 3 | timeCreated: 1496964608 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityARInterface/Examples/ARFocusSquare/focussquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARInterface/Examples/ARFocusSquare/focussquare.png -------------------------------------------------------------------------------- /Assets/UnityARInterface/Examples/ARFocusSquare/focussquarefound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARInterface/Examples/ARFocusSquare/focussquarefound.png -------------------------------------------------------------------------------- /Assets/UnityARInterface/Examples/Common/Materials/PlayerMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5458ed17d1d647fcb9c1b94db2cb2e7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityARInterface/Examples/Common/Models/Characters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebfe96f0221f3413c8598f6a03930b3a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityARInterface/Examples/Common/Models/Characters/Player.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARInterface/Examples/Common/Models/Characters/Player.fbx -------------------------------------------------------------------------------- /Assets/UnityARInterface/Examples/Common/Textures/PlayerDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARInterface/Examples/Common/Textures/PlayerDiffuse.png -------------------------------------------------------------------------------- /Assets/UnityARInterface/Examples/Common/Textures/PlayerNormals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARInterface/Examples/Common/Textures/PlayerNormals.png -------------------------------------------------------------------------------- /Assets/UnityARInterface/Examples/Common/Textures/PlayerOcclusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARInterface/Examples/Common/Textures/PlayerOcclusion.png -------------------------------------------------------------------------------- /Assets/UnityARInterface/Examples/Common/Textures/PlayerSpecular.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARInterface/Examples/Common/Textures/PlayerSpecular.tif -------------------------------------------------------------------------------- /Assets/UnityARInterface/Examples/Common/Textures/checker_large UV.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARInterface/Examples/Common/Textures/checker_large UV.gif -------------------------------------------------------------------------------- /Assets/UnityARInterface/Examples/Common/Textures/debugPlaneTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARInterface/Examples/Common/Textures/debugPlaneTile.png -------------------------------------------------------------------------------- /Assets/UnityARInterface/Models/Towers/Meshes/castle_mdl.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARInterface/Models/Towers/Meshes/castle_mdl.FBX -------------------------------------------------------------------------------- /Assets/UnityARInterface/Models/Towers/Textures/towerDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARInterface/Models/Towers/Textures/towerDiffuse.png -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46ff32aeaba4bcc4eb384cdf7cf29456 3 | folderAsset: yes 4 | timeCreated: 1505872011 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/ARKitRemote.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d1259656ef6245079ba6548af0ab42e 3 | folderAsset: yes 4 | timeCreated: 1498669549 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/ARKitRemote/ARKITREMOTE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e70a61590ae124a8194c71c31e1af531 3 | timeCreated: 1500609185 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/ARKitRemote/EditorTestScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1efc0006a07a4fc8ab373ea6249a832 3 | timeCreated: 1497484703 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a143135f16d634fa9ba945abac98f63c 3 | folderAsset: yes 4 | timeCreated: 1496972798 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/AddRemoveAnchorExample/AddRemoveAnchorScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c59061d8b0a364aa58f20007a956f23a 3 | timeCreated: 1499365892 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99a3c390b086e41bcae2b94fee5d253a 3 | folderAsset: yes 4 | timeCreated: 1503626045 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/Common/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80ed123283a674013aef17bc2c431e8b 3 | folderAsset: yes 4 | timeCreated: 1503626045 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/Common/Materials/PlayerMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ea44298aa419344dbdcf87dd1a50533 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/Common/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7bb5a53dd8ac49759db6bf17162dd20 3 | folderAsset: yes 4 | timeCreated: 1503626045 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/Common/Models/Characters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2db6ed60f35771478d3b31828b24fe8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/Common/Models/Characters/Player.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARKitPlugin/Examples/Common/Models/Characters/Player.fbx -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/Common/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c232e85bbf134253ab599b8e50e5913 3 | folderAsset: yes 4 | timeCreated: 1503626045 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/Common/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74f51f2576219447b8322610cbd17b01 3 | folderAsset: yes 4 | timeCreated: 1503626045 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/Common/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52d64d946d6be4c8aa622c3f5e6bf042 3 | folderAsset: yes 4 | timeCreated: 1503626045 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/Common/Textures/PlayerDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARKitPlugin/Examples/Common/Textures/PlayerDiffuse.png -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/Common/Textures/PlayerNormals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARKitPlugin/Examples/Common/Textures/PlayerNormals.png -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/Common/Textures/PlayerOcclusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARKitPlugin/Examples/Common/Textures/PlayerOcclusion.png -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/Common/Textures/PlayerSpecular.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARKitPlugin/Examples/Common/Textures/PlayerSpecular.tif -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/Common/Textures/checker_large UV.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARKitPlugin/Examples/Common/Textures/checker_large UV.gif -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/Common/Textures/debugPlaneTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARKitPlugin/Examples/Common/Textures/debugPlaneTile.png -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/FaceTracking.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 669335d2fe29243de91f7a0d430b31f9 3 | folderAsset: yes 4 | timeCreated: 1505775209 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/FaceTracking/FaceAnchorScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46e299c2ec1244fbaa1b9b14e2ab198a 3 | timeCreated: 1505775273 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/FaceTracking/FaceBlendshapeScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74c2619dd419d4704bba49146f77161d 3 | timeCreated: 1505775273 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/FaceTracking/FaceBlendshapeSloth.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9bc483a4023d4829a88ddc3adff3caf 3 | timeCreated: 1510188488 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/FaceTracking/FaceDirectionalLightEstimate.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 360fd35caee4f4e069485021a27c0b06 3 | timeCreated: 1507762821 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/FaceTracking/FaceMeshScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e95b28d2a95b34b868e407dc86a3e6d2 3 | timeCreated: 1505775273 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_Normal.png -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/sloth_head_blendshapes5.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/sloth_head_blendshapes5.fbx -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/FocusSquare.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af68919dbd7264d6584857ed14b907e6 3 | folderAsset: yes 4 | timeCreated: 1504390677 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/FocusSquare/FocusSquareScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c9ef824a7b95400bade362484e9b6af 3 | timeCreated: 1504393453 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/FocusSquare/focussquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARKitPlugin/Examples/FocusSquare/focussquare.png -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/FocusSquare/focussquarefound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-ar-unity/956ab4c25ddc661b8591405a58d0d5ef84bd6b11/Assets/UnityARKitPlugin/Examples/FocusSquare/focussquarefound.png -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/UnityARBallz.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2082e391775a848b3922eee55f9e6de2 3 | folderAsset: yes 4 | timeCreated: 1503604404 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/UnityARBallz/UnityARBallz.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75972bcfc855b486593ec2ec68da0b81 3 | timeCreated: 1496964608 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/UnityARKitScene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81c8e3240e6624a1c9c093d35f99d1cf 3 | folderAsset: yes 4 | timeCreated: 1503626045 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/UnityARKitScene/UnityARKitScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c159f2591a9b5c843b0a0442451f78f8 3 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/UnityAROcclusion.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec50d8f0023aa44bc8abca2884b2c337 3 | folderAsset: yes 4 | timeCreated: 1503626045 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/UnityAROcclusion/UnityAROcclusion.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f026c59fb9d6489ab924c6e0e119760 3 | timeCreated: 1497467387 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/UnityARShadows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c5a49210742e49f6b01cc06377465be 3 | folderAsset: yes 4 | timeCreated: 1503626042 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/UnityARShadows/UnityARShadows.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14d17ec7304f440b48e6b953ba7a5895 3 | timeCreated: 1497467387 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a9e9df3c14e9034eb587348635c8f09 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Enums/ColorValues.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public enum ColorValues 4 | { 5 | R, 6 | G, 7 | B, 8 | A, 9 | 10 | Hue, 11 | Saturation, 12 | Value 13 | } 14 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Events/ColorChangedEvent.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System; 3 | using UnityEngine.Events; 4 | 5 | [Serializable] 6 | public class ColorChangedEvent : UnityEvent 7 | { 8 | 9 | } -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Events/HSVChangedEvent.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.Events; 3 | 4 | public class HSVChangedEvent : UnityEvent 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/PickerTest.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce46c07f0028e314ab7767577ab5e7a6 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Examples/UnityParticlePainter/UnityParticlePainter.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0327f0aa0142146c291df8203b848257 3 | timeCreated: 1494021616 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05a89afb32ff4cd48a0278f931aa903b 3 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Plugins/iOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20ca1a77fe0cf4e049dac6d2a8afd62e 3 | folderAsset: yes 4 | timeCreated: 1492036260 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8fd2eea89786441a84b5c25c1d48982 3 | folderAsset: yes 4 | timeCreated: 1492103332 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 085eeda524261654b88f97ea61b33090 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPoint.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UnityEngine.XR.iOS 4 | { 5 | public struct ARPoint 6 | { 7 | public double x; 8 | public double y; 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARRect.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UnityEngine.XR.iOS 4 | { 5 | public struct ARRect 6 | { 7 | public ARPoint origin; 8 | public ARSize size; 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSize.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UnityEngine.XR.iOS 4 | { 5 | public struct ARSize 6 | { 7 | public double width; 8 | public double height; 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6107a01f65b74c0093cf65fc9e9cfcc 3 | folderAsset: yes 4 | timeCreated: 1511229652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityARKitPlugin/Resources/UnityARKitPlugin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3872f00b440b04ca98de82d0fca32d68 3 | folderAsset: yes 4 | timeCreated: 1511229680 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /ISSUE_TEMPLATE: -------------------------------------------------------------------------------- 1 | # THIS REPOSITORY IS DEPREACTED! 2 | 3 | AR support been merged into the main repository https://github.com/mapbox/mapbox-unity-sdk/ 4 | 5 | Please open issues or PRs there! -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- 1 | # THIS REPOSITORY IS DEPREACTED! 2 | 3 | AR support been merged into the main repository https://github.com/mapbox/mapbox-unity-sdk/ 4 | 5 | Please open issues or PRs there! -------------------------------------------------------------------------------- /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/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | -------------------------------------------------------------------------------- /ProjectSettings/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.3.0f3 2 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: .0199999996 7 | Maximum Allowed Timestep: .333333343 8 | m_TimeScale: 1 9 | -------------------------------------------------------------------------------- /UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | --------------------------------------------------------------------------------