├── .github └── workflows │ └── deploy-github.yml ├── .gitignore ├── .gitmodules ├── Assets ├── Cube_Base_Logo.afphoto ├── GSS_Logo.afphoto ├── GSS_Logo_Title.afphoto ├── GS_Player_Icon.afphoto ├── GS_Player_Icon.png ├── GS_Stream_Icon.png └── gss_logo.png ├── Converter ├── .gitignore ├── .vscode │ └── launch.json ├── Sequence_Converter.py ├── Sequence_Converter_UI.py ├── Sequence_Metadata.py └── resources │ ├── astcenc.exe │ ├── logo.ico │ ├── logo.svg │ └── texconv.exe ├── LICENSE ├── README.md ├── Unity_Test_Project ├── .gitignore ├── .vsconfig ├── Assets │ ├── Basic_Build_Sample.unity │ ├── Basic_Build_Sample.unity.meta │ ├── Basic_Build_Sample_PC.unity │ ├── Basic_Build_Sample_PC.unity.meta │ ├── Editor.meta │ ├── Editor │ │ ├── BumpUpPackageVersionAndCopySamples.cs │ │ └── BumpUpPackageVersionAndCopySamples.cs.meta │ ├── EmptyScene.unity │ ├── EmptyScene.unity.meta │ ├── Lit.mat │ ├── Lit.mat.meta │ ├── NormalTest.unity │ ├── NormalTest.unity.meta │ ├── Plugins.meta │ ├── Samples.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── AutoSceneLoader.cs │ │ ├── AutoSceneLoader.cs.meta │ │ ├── VisualizeBounds.cs │ │ └── VisualizeBounds.cs.meta ├── Packages │ ├── com.unity.asset-store-tools │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Api.meta │ │ │ ├── Api │ │ │ │ ├── Abstractions.meta │ │ │ │ ├── Abstractions │ │ │ │ │ ├── AuthenticationBase.cs │ │ │ │ │ ├── AuthenticationBase.cs.meta │ │ │ │ │ ├── IAssetStoreApi.cs │ │ │ │ │ ├── IAssetStoreApi.cs.meta │ │ │ │ │ ├── IAssetStoreClient.cs │ │ │ │ │ ├── IAssetStoreClient.cs.meta │ │ │ │ │ ├── IAuthenticationType.cs │ │ │ │ │ ├── IAuthenticationType.cs.meta │ │ │ │ │ ├── IPackageUploader.cs │ │ │ │ │ ├── IPackageUploader.cs.meta │ │ │ │ │ ├── PackageUploaderBase.cs │ │ │ │ │ └── PackageUploaderBase.cs.meta │ │ │ │ ├── ApiUtility.cs │ │ │ │ ├── ApiUtility.cs.meta │ │ │ │ ├── AssetStoreApi.cs │ │ │ │ ├── AssetStoreApi.cs.meta │ │ │ │ ├── AssetStoreClient.cs │ │ │ │ ├── AssetStoreClient.cs.meta │ │ │ │ ├── CloudTokenAuthentication.cs │ │ │ │ ├── CloudTokenAuthentication.cs.meta │ │ │ │ ├── CredentialsAuthentication.cs │ │ │ │ ├── CredentialsAuthentication.cs.meta │ │ │ │ ├── Models.meta │ │ │ │ ├── Models │ │ │ │ │ ├── Category.cs │ │ │ │ │ ├── Category.cs.meta │ │ │ │ │ ├── Package.cs │ │ │ │ │ ├── Package.cs.meta │ │ │ │ │ ├── PackageAdditionalData.cs │ │ │ │ │ ├── PackageAdditionalData.cs.meta │ │ │ │ │ ├── User.cs │ │ │ │ │ └── User.cs.meta │ │ │ │ ├── Responses.meta │ │ │ │ ├── Responses │ │ │ │ │ ├── AssetStoreResponse.cs │ │ │ │ │ ├── AssetStoreResponse.cs.meta │ │ │ │ │ ├── AssetStoreToolsVersionResponse.cs │ │ │ │ │ ├── AssetStoreToolsVersionResponse.cs.meta │ │ │ │ │ ├── AuthenticationResponse.cs │ │ │ │ │ ├── AuthenticationResponse.cs.meta │ │ │ │ │ ├── CategoryDataResponse.cs │ │ │ │ │ ├── CategoryDataResponse.cs.meta │ │ │ │ │ ├── PackageThumbnailResponse.cs │ │ │ │ │ ├── PackageThumbnailResponse.cs.meta │ │ │ │ │ ├── PackageUploadedUnityVersionDataResponse.cs │ │ │ │ │ ├── PackageUploadedUnityVersionDataResponse.cs.meta │ │ │ │ │ ├── PackagesAdditionalDataResponse.cs │ │ │ │ │ ├── PackagesAdditionalDataResponse.cs.meta │ │ │ │ │ ├── PackagesDataResponse.cs │ │ │ │ │ ├── PackagesDataResponse.cs.meta │ │ │ │ │ ├── RefreshedPackageDataResponse.cs │ │ │ │ │ ├── RefreshedPackageDataResponse.cs.meta │ │ │ │ │ ├── UploadResponse.cs │ │ │ │ │ └── UploadResponse.cs.meta │ │ │ │ ├── SessionAuthentication.cs │ │ │ │ ├── SessionAuthentication.cs.meta │ │ │ │ ├── UnityPackageUploader.cs │ │ │ │ ├── UnityPackageUploader.cs.meta │ │ │ │ ├── UploadStatus.cs │ │ │ │ └── UploadStatus.cs.meta │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyInfo.cs.meta │ │ │ ├── AssetStoreTools.cs │ │ │ ├── AssetStoreTools.cs.meta │ │ │ ├── AssetStoreToolsWindow.cs │ │ │ ├── AssetStoreToolsWindow.cs.meta │ │ │ ├── Constants.cs │ │ │ ├── Constants.cs.meta │ │ │ ├── Exporter.meta │ │ │ ├── Exporter │ │ │ │ ├── Abstractions.meta │ │ │ │ ├── Abstractions │ │ │ │ │ ├── IPackageExporter.cs │ │ │ │ │ ├── IPackageExporter.cs.meta │ │ │ │ │ ├── IPreviewInjector.cs │ │ │ │ │ ├── IPreviewInjector.cs.meta │ │ │ │ │ ├── PackageExporterBase.cs │ │ │ │ │ ├── PackageExporterBase.cs.meta │ │ │ │ │ ├── PackageExporterSettings.cs │ │ │ │ │ └── PackageExporterSettings.cs.meta │ │ │ │ ├── DefaultExporterSettings.cs │ │ │ │ ├── DefaultExporterSettings.cs.meta │ │ │ │ ├── DefaultPackageExporter.cs │ │ │ │ ├── DefaultPackageExporter.cs.meta │ │ │ │ ├── LegacyExporterSettings.cs │ │ │ │ ├── LegacyExporterSettings.cs.meta │ │ │ │ ├── LegacyPackageExporter.cs │ │ │ │ ├── LegacyPackageExporter.cs.meta │ │ │ │ ├── PackageExporterResult.cs │ │ │ │ ├── PackageExporterResult.cs.meta │ │ │ │ ├── PreviewInjector.cs │ │ │ │ └── PreviewInjector.cs.meta │ │ │ ├── Previews.meta │ │ │ ├── Previews │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── Data.meta │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── CustomPreviewGenerationSettings.cs │ │ │ │ │ │ ├── CustomPreviewGenerationSettings.cs.meta │ │ │ │ │ │ ├── FileNameFormat.cs │ │ │ │ │ │ ├── FileNameFormat.cs.meta │ │ │ │ │ │ ├── GenerationType.cs │ │ │ │ │ │ ├── GenerationType.cs.meta │ │ │ │ │ │ ├── NativePreviewGenerationSettings.cs │ │ │ │ │ │ ├── NativePreviewGenerationSettings.cs.meta │ │ │ │ │ │ ├── PreviewDatabase.cs │ │ │ │ │ │ ├── PreviewDatabase.cs.meta │ │ │ │ │ │ ├── PreviewFormat.cs │ │ │ │ │ │ ├── PreviewFormat.cs.meta │ │ │ │ │ │ ├── PreviewGenerationResult.cs │ │ │ │ │ │ ├── PreviewGenerationResult.cs.meta │ │ │ │ │ │ ├── PreviewGenerationSettings.cs │ │ │ │ │ │ ├── PreviewGenerationSettings.cs.meta │ │ │ │ │ │ ├── PreviewMetadata.cs │ │ │ │ │ │ └── PreviewMetadata.cs.meta │ │ │ │ │ ├── Generators.meta │ │ │ │ │ ├── Generators │ │ │ │ │ │ ├── Custom.meta │ │ │ │ │ │ ├── Custom │ │ │ │ │ │ │ ├── AudioChannel.cs │ │ │ │ │ │ │ ├── AudioChannel.cs.meta │ │ │ │ │ │ │ ├── AudioChannelCoordinate.cs │ │ │ │ │ │ │ ├── AudioChannelCoordinate.cs.meta │ │ │ │ │ │ │ ├── Screenshotters.meta │ │ │ │ │ │ │ ├── Screenshotters │ │ │ │ │ │ │ │ ├── ISceneScreenshotter.cs │ │ │ │ │ │ │ │ ├── ISceneScreenshotter.cs.meta │ │ │ │ │ │ │ │ ├── MaterialScreenshotter.cs │ │ │ │ │ │ │ │ ├── MaterialScreenshotter.cs.meta │ │ │ │ │ │ │ │ ├── MeshScreenshotter.cs │ │ │ │ │ │ │ │ ├── MeshScreenshotter.cs.meta │ │ │ │ │ │ │ │ ├── SceneScreenshotterBase.cs │ │ │ │ │ │ │ │ ├── SceneScreenshotterBase.cs.meta │ │ │ │ │ │ │ │ ├── SceneScreenshotterSettings.cs │ │ │ │ │ │ │ │ └── SceneScreenshotterSettings.cs.meta │ │ │ │ │ │ │ ├── TypeGenerators.meta │ │ │ │ │ │ │ └── TypeGenerators │ │ │ │ │ │ │ │ ├── AudioTypeGeneratorSettings.cs │ │ │ │ │ │ │ │ ├── AudioTypeGeneratorSettings.cs.meta │ │ │ │ │ │ │ │ ├── AudioTypePreviewGenerator.cs │ │ │ │ │ │ │ │ ├── AudioTypePreviewGenerator.cs.meta │ │ │ │ │ │ │ │ ├── ITypePreviewGenerator.cs │ │ │ │ │ │ │ │ ├── ITypePreviewGenerator.cs.meta │ │ │ │ │ │ │ │ ├── MaterialTypePreviewGenerator.cs │ │ │ │ │ │ │ │ ├── MaterialTypePreviewGenerator.cs.meta │ │ │ │ │ │ │ │ ├── ModelTypePreviewGenerator.cs │ │ │ │ │ │ │ │ ├── ModelTypePreviewGenerator.cs.meta │ │ │ │ │ │ │ │ ├── PrefabTypePreviewGenerator.cs │ │ │ │ │ │ │ │ ├── PrefabTypePreviewGenerator.cs.meta │ │ │ │ │ │ │ │ ├── TextureTypeGeneratorSettings.cs │ │ │ │ │ │ │ │ ├── TextureTypeGeneratorSettings.cs.meta │ │ │ │ │ │ │ │ ├── TextureTypePreviewGenerator.cs │ │ │ │ │ │ │ │ ├── TextureTypePreviewGenerator.cs.meta │ │ │ │ │ │ │ │ ├── TypeGeneratorSettings.cs │ │ │ │ │ │ │ │ ├── TypeGeneratorSettings.cs.meta │ │ │ │ │ │ │ │ ├── TypePreviewGeneratorBase.cs │ │ │ │ │ │ │ │ ├── TypePreviewGeneratorBase.cs.meta │ │ │ │ │ │ │ │ ├── TypePreviewGeneratorFromScene.cs │ │ │ │ │ │ │ │ ├── TypePreviewGeneratorFromScene.cs.meta │ │ │ │ │ │ │ │ ├── TypePreviewGeneratorFromSceneSettings.cs │ │ │ │ │ │ │ │ └── TypePreviewGeneratorFromSceneSettings.cs.meta │ │ │ │ │ │ ├── CustomPreviewGenerator.cs │ │ │ │ │ │ ├── CustomPreviewGenerator.cs.meta │ │ │ │ │ │ ├── IPreviewGenerator.cs │ │ │ │ │ │ ├── IPreviewGenerator.cs.meta │ │ │ │ │ │ ├── NativePreviewGenerator.cs │ │ │ │ │ │ ├── NativePreviewGenerator.cs.meta │ │ │ │ │ │ ├── PreviewGeneratorBase.cs │ │ │ │ │ │ └── PreviewGeneratorBase.cs.meta │ │ │ │ │ ├── Services.meta │ │ │ │ │ ├── Services │ │ │ │ │ │ ├── Caching.meta │ │ │ │ │ │ ├── Caching │ │ │ │ │ │ │ ├── CachingService.cs │ │ │ │ │ │ │ ├── CachingService.cs.meta │ │ │ │ │ │ │ ├── ICachingService.cs │ │ │ │ │ │ │ └── ICachingService.cs.meta │ │ │ │ │ │ ├── IPreviewService.cs │ │ │ │ │ │ ├── IPreviewService.cs.meta │ │ │ │ │ │ ├── PreviewServiceProvider.cs │ │ │ │ │ │ └── PreviewServiceProvider.cs.meta │ │ │ │ │ ├── UI.meta │ │ │ │ │ ├── UI │ │ │ │ │ │ ├── Data.meta │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ ├── AssetPreview.cs │ │ │ │ │ │ │ ├── AssetPreview.cs.meta │ │ │ │ │ │ │ ├── AssetPreviewCollection.cs │ │ │ │ │ │ │ ├── AssetPreviewCollection.cs.meta │ │ │ │ │ │ │ ├── IAssetPreview.cs │ │ │ │ │ │ │ ├── IAssetPreview.cs.meta │ │ │ │ │ │ │ ├── IAssetPreviewCollection.cs │ │ │ │ │ │ │ ├── IAssetPreviewCollection.cs.meta │ │ │ │ │ │ │ ├── IPreviewGeneratorSettings.cs │ │ │ │ │ │ │ ├── IPreviewGeneratorSettings.cs.meta │ │ │ │ │ │ │ ├── PreviewGeneratorSettings.cs │ │ │ │ │ │ │ └── PreviewGeneratorSettings.cs.meta │ │ │ │ │ │ ├── Elements.meta │ │ │ │ │ │ ├── Elements │ │ │ │ │ │ │ ├── AssetPreviewElement.cs │ │ │ │ │ │ │ ├── AssetPreviewElement.cs.meta │ │ │ │ │ │ │ ├── GridListElement.cs │ │ │ │ │ │ │ ├── GridListElement.cs.meta │ │ │ │ │ │ │ ├── PreviewCollectionElement.cs │ │ │ │ │ │ │ ├── PreviewCollectionElement.cs.meta │ │ │ │ │ │ │ ├── PreviewGenerateButtonElement.cs │ │ │ │ │ │ │ ├── PreviewGenerateButtonElement.cs.meta │ │ │ │ │ │ │ ├── PreviewGeneratorPathsElement.cs │ │ │ │ │ │ │ ├── PreviewGeneratorPathsElement.cs.meta │ │ │ │ │ │ │ ├── PreviewGeneratorSettingsElement.cs │ │ │ │ │ │ │ ├── PreviewGeneratorSettingsElement.cs.meta │ │ │ │ │ │ │ ├── PreviewWindowDescriptionElement.cs │ │ │ │ │ │ │ └── PreviewWindowDescriptionElement.cs.meta │ │ │ │ │ │ ├── PreviewGeneratorWindow.cs │ │ │ │ │ │ ├── PreviewGeneratorWindow.cs.meta │ │ │ │ │ │ ├── Views.meta │ │ │ │ │ │ └── Views │ │ │ │ │ │ │ ├── PreviewListView.cs │ │ │ │ │ │ │ └── PreviewListView.cs.meta │ │ │ │ │ ├── Utility.meta │ │ │ │ │ └── Utility │ │ │ │ │ │ ├── GraphicsUtility.cs │ │ │ │ │ │ ├── GraphicsUtility.cs.meta │ │ │ │ │ │ ├── PreviewConvertUtility.cs │ │ │ │ │ │ ├── PreviewConvertUtility.cs.meta │ │ │ │ │ │ ├── PreviewSceneUtility.cs │ │ │ │ │ │ ├── PreviewSceneUtility.cs.meta │ │ │ │ │ │ ├── RenderPipeline.cs │ │ │ │ │ │ ├── RenderPipeline.cs.meta │ │ │ │ │ │ ├── RenderPipelineUtility.cs │ │ │ │ │ │ └── RenderPipelineUtility.cs.meta │ │ │ │ ├── Styles.meta │ │ │ │ └── Styles │ │ │ │ │ ├── Style.uss │ │ │ │ │ ├── Style.uss.meta │ │ │ │ │ ├── ThemeDark.uss │ │ │ │ │ ├── ThemeDark.uss.meta │ │ │ │ │ ├── ThemeLight.uss │ │ │ │ │ └── ThemeLight.uss.meta │ │ │ ├── Unity.AssetStoreTools.Editor.asmdef │ │ │ ├── Unity.AssetStoreTools.Editor.asmdef.meta │ │ │ ├── Uploader.meta │ │ │ ├── Uploader │ │ │ │ ├── Icons.meta │ │ │ │ ├── Icons │ │ │ │ │ ├── account-dark.png │ │ │ │ │ ├── account-dark.png.meta │ │ │ │ │ ├── account-light.png │ │ │ │ │ ├── account-light.png.meta │ │ │ │ │ ├── open-in-browser.png │ │ │ │ │ ├── open-in-browser.png.meta │ │ │ │ │ ├── publisher-portal-dark.png │ │ │ │ │ ├── publisher-portal-dark.png.meta │ │ │ │ │ ├── publisher-portal-light.png │ │ │ │ │ └── publisher-portal-light.png.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── Data.meta │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── Abstractions.meta │ │ │ │ │ │ ├── Abstractions │ │ │ │ │ │ │ ├── IPackage.cs │ │ │ │ │ │ │ ├── IPackage.cs.meta │ │ │ │ │ │ │ ├── IPackageContent.cs │ │ │ │ │ │ │ ├── IPackageContent.cs.meta │ │ │ │ │ │ │ ├── IPackageGroup.cs │ │ │ │ │ │ │ ├── IPackageGroup.cs.meta │ │ │ │ │ │ │ ├── IWorkflow.cs │ │ │ │ │ │ │ ├── IWorkflow.cs.meta │ │ │ │ │ │ │ ├── IWorkflowServices.cs │ │ │ │ │ │ │ ├── IWorkflowServices.cs.meta │ │ │ │ │ │ │ ├── WorkflowBase.cs │ │ │ │ │ │ │ └── WorkflowBase.cs.meta │ │ │ │ │ │ ├── AssetsWorkflow.cs │ │ │ │ │ │ ├── AssetsWorkflow.cs.meta │ │ │ │ │ │ ├── HybridPackageWorkflow.cs │ │ │ │ │ │ ├── HybridPackageWorkflow.cs.meta │ │ │ │ │ │ ├── Package.cs │ │ │ │ │ │ ├── Package.cs.meta │ │ │ │ │ │ ├── PackageContent.cs │ │ │ │ │ │ ├── PackageContent.cs.meta │ │ │ │ │ │ ├── PackageGroup.cs │ │ │ │ │ │ ├── PackageGroup.cs.meta │ │ │ │ │ │ ├── PackageSorting.cs │ │ │ │ │ │ ├── PackageSorting.cs.meta │ │ │ │ │ │ ├── Serialization.meta │ │ │ │ │ │ ├── Serialization │ │ │ │ │ │ │ ├── AssetPath.cs │ │ │ │ │ │ │ ├── AssetPath.cs.meta │ │ │ │ │ │ │ ├── AssetsWorkflowStateData.cs │ │ │ │ │ │ │ ├── AssetsWorkflowStateData.cs.meta │ │ │ │ │ │ │ ├── HybridPackageWorkflowState.cs │ │ │ │ │ │ │ ├── HybridPackageWorkflowState.cs.meta │ │ │ │ │ │ │ ├── UnityPackageWorkflowStateData.cs │ │ │ │ │ │ │ ├── UnityPackageWorkflowStateData.cs.meta │ │ │ │ │ │ │ ├── WorkflowStateData.cs │ │ │ │ │ │ │ └── WorkflowStateData.cs.meta │ │ │ │ │ │ ├── UnityPackageWorkflow.cs │ │ │ │ │ │ ├── UnityPackageWorkflow.cs.meta │ │ │ │ │ │ ├── WorkflowServices.cs │ │ │ │ │ │ └── WorkflowServices.cs.meta │ │ │ │ │ ├── Services.meta │ │ │ │ │ ├── Services │ │ │ │ │ │ ├── Analytics.meta │ │ │ │ │ │ ├── Analytics │ │ │ │ │ │ │ ├── AnalyticsService.cs │ │ │ │ │ │ │ ├── AnalyticsService.cs.meta │ │ │ │ │ │ │ ├── Data.meta │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ ├── AuthenticationAnalytic.cs │ │ │ │ │ │ │ │ ├── AuthenticationAnalytic.cs.meta │ │ │ │ │ │ │ │ ├── BaseAnalytic.cs │ │ │ │ │ │ │ │ ├── BaseAnalytic.cs.meta │ │ │ │ │ │ │ │ ├── IAssetStoreAnalytic.cs │ │ │ │ │ │ │ │ ├── IAssetStoreAnalytic.cs.meta │ │ │ │ │ │ │ │ ├── IAssetStoreAnalyticData.cs │ │ │ │ │ │ │ │ ├── IAssetStoreAnalyticData.cs.meta │ │ │ │ │ │ │ │ ├── PackageUploadAnalytic.cs │ │ │ │ │ │ │ │ ├── PackageUploadAnalytic.cs.meta │ │ │ │ │ │ │ │ ├── ValidationResultsSerializer.cs │ │ │ │ │ │ │ │ └── ValidationResultsSerializer.cs.meta │ │ │ │ │ │ │ ├── IAnalyticsService.cs │ │ │ │ │ │ │ └── IAnalyticsService.cs.meta │ │ │ │ │ │ ├── Api.meta │ │ │ │ │ │ ├── Api │ │ │ │ │ │ │ ├── AuthenticationService.cs │ │ │ │ │ │ │ ├── AuthenticationService.cs.meta │ │ │ │ │ │ │ ├── IAuthenticationService.cs │ │ │ │ │ │ │ ├── IAuthenticationService.cs.meta │ │ │ │ │ │ │ ├── IPackageDownloadingService.cs │ │ │ │ │ │ │ ├── IPackageDownloadingService.cs.meta │ │ │ │ │ │ │ ├── IPackageUploadingService.cs │ │ │ │ │ │ │ ├── IPackageUploadingService.cs.meta │ │ │ │ │ │ │ ├── PackageDownloadingService.cs │ │ │ │ │ │ │ ├── PackageDownloadingService.cs.meta │ │ │ │ │ │ │ ├── PackageUploadingService.cs │ │ │ │ │ │ │ └── PackageUploadingService.cs.meta │ │ │ │ │ │ ├── Caching.meta │ │ │ │ │ │ ├── Caching │ │ │ │ │ │ │ ├── CachingService.cs │ │ │ │ │ │ │ ├── CachingService.cs.meta │ │ │ │ │ │ │ ├── ICachingService.cs │ │ │ │ │ │ │ └── ICachingService.cs.meta │ │ │ │ │ │ ├── IUploaderService.cs │ │ │ │ │ │ ├── IUploaderService.cs.meta │ │ │ │ │ │ ├── PackageFactory.meta │ │ │ │ │ │ ├── PackageFactory │ │ │ │ │ │ │ ├── IPackageFactoryService.cs │ │ │ │ │ │ │ ├── IPackageFactoryService.cs.meta │ │ │ │ │ │ │ ├── PackageFactoryService.cs │ │ │ │ │ │ │ └── PackageFactoryService.cs.meta │ │ │ │ │ │ ├── UploaderServiceProvider.cs │ │ │ │ │ │ └── UploaderServiceProvider.cs.meta │ │ │ │ │ ├── UI.meta │ │ │ │ │ └── UI │ │ │ │ │ │ ├── Elements.meta │ │ │ │ │ │ ├── Elements │ │ │ │ │ │ ├── Abstractions.meta │ │ │ │ │ │ ├── Abstractions │ │ │ │ │ │ │ ├── ValidationElementBase.cs │ │ │ │ │ │ │ ├── ValidationElementBase.cs.meta │ │ │ │ │ │ │ ├── WorkflowElementBase.cs │ │ │ │ │ │ │ └── WorkflowElementBase.cs.meta │ │ │ │ │ │ ├── AccountToolbar.cs │ │ │ │ │ │ ├── AccountToolbar.cs.meta │ │ │ │ │ │ ├── AssetsWorkflowElement.cs │ │ │ │ │ │ ├── AssetsWorkflowElement.cs.meta │ │ │ │ │ │ ├── CurrentProjectValidationElement.cs │ │ │ │ │ │ ├── CurrentProjectValidationElement.cs.meta │ │ │ │ │ │ ├── ExternalProjectValidationElement.cs │ │ │ │ │ │ ├── ExternalProjectValidationElement.cs.meta │ │ │ │ │ │ ├── HybridPackageWorkflowElement.cs │ │ │ │ │ │ ├── HybridPackageWorkflowElement.cs.meta │ │ │ │ │ │ ├── LoadingSpinner.cs │ │ │ │ │ │ ├── LoadingSpinner.cs.meta │ │ │ │ │ │ ├── MultiToggleSelectionElement.cs │ │ │ │ │ │ ├── MultiToggleSelectionElement.cs.meta │ │ │ │ │ │ ├── PackageContentElement.cs │ │ │ │ │ │ ├── PackageContentElement.cs.meta │ │ │ │ │ │ ├── PackageElement.cs │ │ │ │ │ │ ├── PackageElement.cs.meta │ │ │ │ │ │ ├── PackageGroupElement.cs │ │ │ │ │ │ ├── PackageGroupElement.cs.meta │ │ │ │ │ │ ├── PackageListToolbar.cs │ │ │ │ │ │ ├── PackageListToolbar.cs.meta │ │ │ │ │ │ ├── PackageUploadElement.cs │ │ │ │ │ │ ├── PackageUploadElement.cs.meta │ │ │ │ │ │ ├── PathSelectionElement.cs │ │ │ │ │ │ ├── PathSelectionElement.cs.meta │ │ │ │ │ │ ├── PreviewGenerationElement.cs │ │ │ │ │ │ ├── PreviewGenerationElement.cs.meta │ │ │ │ │ │ ├── UnityPackageWorkflowElement.cs │ │ │ │ │ │ └── UnityPackageWorkflowElement.cs.meta │ │ │ │ │ │ ├── Views.meta │ │ │ │ │ │ └── Views │ │ │ │ │ │ ├── LoginView.cs │ │ │ │ │ │ ├── LoginView.cs.meta │ │ │ │ │ │ ├── PackageListView.cs │ │ │ │ │ │ └── PackageListView.cs.meta │ │ │ │ ├── Styles.meta │ │ │ │ ├── Styles │ │ │ │ │ ├── LoginView.meta │ │ │ │ │ ├── LoginView │ │ │ │ │ │ ├── Style.uss │ │ │ │ │ │ ├── Style.uss.meta │ │ │ │ │ │ ├── ThemeDark.uss │ │ │ │ │ │ ├── ThemeDark.uss.meta │ │ │ │ │ │ ├── ThemeLight.uss │ │ │ │ │ │ └── ThemeLight.uss.meta │ │ │ │ │ ├── PackageListView.meta │ │ │ │ │ ├── PackageListView │ │ │ │ │ │ ├── Style.uss │ │ │ │ │ │ ├── Style.uss.meta │ │ │ │ │ │ ├── ThemeDark.uss │ │ │ │ │ │ ├── ThemeDark.uss.meta │ │ │ │ │ │ ├── ThemeLight.uss │ │ │ │ │ │ └── ThemeLight.uss.meta │ │ │ │ │ ├── Style.uss │ │ │ │ │ ├── Style.uss.meta │ │ │ │ │ ├── ThemeDark.uss │ │ │ │ │ ├── ThemeDark.uss.meta │ │ │ │ │ ├── ThemeLight.uss │ │ │ │ │ └── ThemeLight.uss.meta │ │ │ │ ├── UploaderWindow.cs │ │ │ │ └── UploaderWindow.cs.meta │ │ │ ├── Utility.meta │ │ │ ├── Utility │ │ │ │ ├── ASDebug.cs │ │ │ │ ├── ASDebug.cs.meta │ │ │ │ ├── ASToolsPreferences.cs │ │ │ │ ├── ASToolsPreferences.cs.meta │ │ │ │ ├── ASToolsUpdater.cs │ │ │ │ ├── ASToolsUpdater.cs.meta │ │ │ │ ├── CacheUtil.cs │ │ │ │ ├── CacheUtil.cs.meta │ │ │ │ ├── FileUtility.cs │ │ │ │ ├── FileUtility.cs.meta │ │ │ │ ├── LegacyToolsRemover.cs │ │ │ │ ├── LegacyToolsRemover.cs.meta │ │ │ │ ├── PackageUtility.cs │ │ │ │ ├── PackageUtility.cs.meta │ │ │ │ ├── ServiceProvider.cs │ │ │ │ ├── ServiceProvider.cs.meta │ │ │ │ ├── StyleSelector.cs │ │ │ │ ├── StyleSelector.cs.meta │ │ │ │ ├── Styles.meta │ │ │ │ ├── Styles │ │ │ │ │ ├── Updater.meta │ │ │ │ │ └── Updater │ │ │ │ │ │ ├── Style.uss │ │ │ │ │ │ ├── Style.uss.meta │ │ │ │ │ │ ├── ThemeDark.uss │ │ │ │ │ │ ├── ThemeDark.uss.meta │ │ │ │ │ │ ├── ThemeLight.uss │ │ │ │ │ │ └── ThemeLight.uss.meta │ │ │ │ ├── SymlinkUtil.cs │ │ │ │ └── SymlinkUtil.cs.meta │ │ │ ├── Validator.meta │ │ │ └── Validator │ │ │ │ ├── Icons.meta │ │ │ │ ├── Icons │ │ │ │ ├── error.png │ │ │ │ ├── error.png.meta │ │ │ │ ├── error_d.png │ │ │ │ ├── error_d.png.meta │ │ │ │ ├── success.png │ │ │ │ ├── success.png.meta │ │ │ │ ├── success_d.png │ │ │ │ ├── success_d.png.meta │ │ │ │ ├── undefined.png │ │ │ │ ├── undefined.png.meta │ │ │ │ ├── undefined_d.png │ │ │ │ ├── undefined_d.png.meta │ │ │ │ ├── warning.png │ │ │ │ ├── warning.png.meta │ │ │ │ ├── warning_d.png │ │ │ │ └── warning_d.png.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── Categories.meta │ │ │ │ ├── Categories │ │ │ │ │ ├── CategoryEvaluator.cs │ │ │ │ │ ├── CategoryEvaluator.cs.meta │ │ │ │ │ ├── ValidatorCategory.cs │ │ │ │ │ └── ValidatorCategory.cs.meta │ │ │ │ ├── CurrentProjectValidator.cs │ │ │ │ ├── CurrentProjectValidator.cs.meta │ │ │ │ ├── Data.meta │ │ │ │ ├── Data │ │ │ │ │ ├── CurrentProjectValidationSettings.cs │ │ │ │ │ ├── CurrentProjectValidationSettings.cs.meta │ │ │ │ │ ├── ExternalProjectValidationSettings.cs │ │ │ │ │ ├── ExternalProjectValidationSettings.cs.meta │ │ │ │ │ ├── MessageActions.meta │ │ │ │ │ ├── MessageActions │ │ │ │ │ │ ├── HighlightObjectAction.cs │ │ │ │ │ │ ├── HighlightObjectAction.cs.meta │ │ │ │ │ │ ├── IMessageAction.cs │ │ │ │ │ │ ├── IMessageAction.cs.meta │ │ │ │ │ │ ├── OpenAssetAction.cs │ │ │ │ │ │ └── OpenAssetAction.cs.meta │ │ │ │ │ ├── TestResult.cs │ │ │ │ │ ├── TestResult.cs.meta │ │ │ │ │ ├── TestResultMessage.cs │ │ │ │ │ ├── TestResultMessage.cs.meta │ │ │ │ │ ├── TestResultObject.cs │ │ │ │ │ ├── TestResultObject.cs.meta │ │ │ │ │ ├── TestResultStatus.cs │ │ │ │ │ ├── TestResultStatus.cs.meta │ │ │ │ │ ├── ValidationResult.cs │ │ │ │ │ ├── ValidationResult.cs.meta │ │ │ │ │ ├── ValidationSettings.cs │ │ │ │ │ ├── ValidationSettings.cs.meta │ │ │ │ │ ├── ValidationStatus.cs │ │ │ │ │ ├── ValidationStatus.cs.meta │ │ │ │ │ ├── ValidationType.cs │ │ │ │ │ └── ValidationType.cs.meta │ │ │ │ ├── ExternalProjectValidator.cs │ │ │ │ ├── ExternalProjectValidator.cs.meta │ │ │ │ ├── IValidator.cs │ │ │ │ ├── IValidator.cs.meta │ │ │ │ ├── Services.meta │ │ │ │ ├── Services │ │ │ │ │ ├── CachingService.meta │ │ │ │ │ ├── CachingService │ │ │ │ │ │ ├── CachingService.cs │ │ │ │ │ │ ├── CachingService.cs.meta │ │ │ │ │ │ ├── ICachingService.cs │ │ │ │ │ │ ├── ICachingService.cs.meta │ │ │ │ │ │ ├── PreviewDatabaseContractResolver.cs │ │ │ │ │ │ └── PreviewDatabaseContractResolver.cs.meta │ │ │ │ │ ├── IValidatorService.cs │ │ │ │ │ ├── IValidatorService.cs.meta │ │ │ │ │ ├── Validation.meta │ │ │ │ │ ├── Validation │ │ │ │ │ │ ├── Abstractions.meta │ │ │ │ │ │ ├── Abstractions │ │ │ │ │ │ │ ├── IAssetUtilityService.cs │ │ │ │ │ │ │ ├── IAssetUtilityService.cs.meta │ │ │ │ │ │ │ ├── IFileSignatureUtilityService.cs │ │ │ │ │ │ │ ├── IFileSignatureUtilityService.cs.meta │ │ │ │ │ │ │ ├── IMeshUtilityService.cs │ │ │ │ │ │ │ ├── IMeshUtilityService.cs.meta │ │ │ │ │ │ │ ├── IModelUtilityService.cs │ │ │ │ │ │ │ ├── IModelUtilityService.cs.meta │ │ │ │ │ │ │ ├── ISceneUtilityService.cs │ │ │ │ │ │ │ ├── ISceneUtilityService.cs.meta │ │ │ │ │ │ │ ├── IScriptUtilityService.cs │ │ │ │ │ │ │ └── IScriptUtilityService.cs.meta │ │ │ │ │ │ ├── AssetUtilityService.cs │ │ │ │ │ │ ├── AssetUtilityService.cs.meta │ │ │ │ │ │ ├── Data.meta │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ ├── ArchiveType.cs │ │ │ │ │ │ │ ├── ArchiveType.cs.meta │ │ │ │ │ │ │ ├── AssetEnumerator.cs │ │ │ │ │ │ │ ├── AssetEnumerator.cs.meta │ │ │ │ │ │ │ ├── AssetType.cs │ │ │ │ │ │ │ ├── AssetType.cs.meta │ │ │ │ │ │ │ ├── LogEntry.cs │ │ │ │ │ │ │ └── LogEntry.cs.meta │ │ │ │ │ │ ├── FileSignatureUtilityService.cs │ │ │ │ │ │ ├── FileSignatureUtilityService.cs.meta │ │ │ │ │ │ ├── MeshUtilityService.cs │ │ │ │ │ │ ├── MeshUtilityService.cs.meta │ │ │ │ │ │ ├── ModelUtilityService.cs │ │ │ │ │ │ ├── ModelUtilityService.cs.meta │ │ │ │ │ │ ├── SceneUtilityService.cs │ │ │ │ │ │ ├── SceneUtilityService.cs.meta │ │ │ │ │ │ ├── ScriptUtilityService.cs │ │ │ │ │ │ └── ScriptUtilityService.cs.meta │ │ │ │ │ ├── ValidatorServiceProvider.cs │ │ │ │ │ └── ValidatorServiceProvider.cs.meta │ │ │ │ ├── Test Definitions.meta │ │ │ │ ├── Test Definitions │ │ │ │ │ ├── AutomatedTest.cs │ │ │ │ │ ├── AutomatedTest.cs.meta │ │ │ │ │ ├── GenericTestConfig.cs │ │ │ │ │ ├── GenericTestConfig.cs.meta │ │ │ │ │ ├── ITestConfig.cs │ │ │ │ │ ├── ITestConfig.cs.meta │ │ │ │ │ ├── ITestScript.cs │ │ │ │ │ ├── ITestScript.cs.meta │ │ │ │ │ ├── Scriptable Objects.meta │ │ │ │ │ ├── Scriptable Objects │ │ │ │ │ │ ├── AutomatedTestScriptableObject.cs │ │ │ │ │ │ ├── AutomatedTestScriptableObject.cs.meta │ │ │ │ │ │ ├── Editor.meta │ │ │ │ │ │ ├── Editor │ │ │ │ │ │ │ ├── ValidationTestScriptableObjectInspector.cs │ │ │ │ │ │ │ └── ValidationTestScriptableObjectInspector.cs.meta │ │ │ │ │ │ ├── ValidationTestScriptableObject.cs │ │ │ │ │ │ └── ValidationTestScriptableObject.cs.meta │ │ │ │ │ ├── ValidationTest.cs │ │ │ │ │ └── ValidationTest.cs.meta │ │ │ │ ├── Test Methods.meta │ │ │ │ ├── Test Methods │ │ │ │ │ ├── Generic.meta │ │ │ │ │ ├── Generic │ │ │ │ │ │ ├── CheckAnimationClips.cs │ │ │ │ │ │ ├── CheckAnimationClips.cs.meta │ │ │ │ │ │ ├── CheckAudioClipping.cs │ │ │ │ │ │ ├── CheckAudioClipping.cs.meta │ │ │ │ │ │ ├── CheckColliders.cs │ │ │ │ │ │ ├── CheckColliders.cs.meta │ │ │ │ │ │ ├── CheckCompressedFiles.cs │ │ │ │ │ │ ├── CheckCompressedFiles.cs.meta │ │ │ │ │ │ ├── CheckEmptyPrefabs.cs │ │ │ │ │ │ ├── CheckEmptyPrefabs.cs.meta │ │ │ │ │ │ ├── CheckFileMenuNames.cs │ │ │ │ │ │ ├── CheckFileMenuNames.cs.meta │ │ │ │ │ │ ├── CheckLODs.cs │ │ │ │ │ │ ├── CheckLODs.cs.meta │ │ │ │ │ │ ├── CheckLineEndings.cs │ │ │ │ │ │ ├── CheckLineEndings.cs.meta │ │ │ │ │ │ ├── CheckMeshPrefabs.cs │ │ │ │ │ │ ├── CheckMeshPrefabs.cs.meta │ │ │ │ │ │ ├── CheckMissingComponentsinAssets.cs │ │ │ │ │ │ ├── CheckMissingComponentsinAssets.cs.meta │ │ │ │ │ │ ├── CheckMissingComponentsinScenes.cs │ │ │ │ │ │ ├── CheckMissingComponentsinScenes.cs.meta │ │ │ │ │ │ ├── CheckModelImportLogs.cs │ │ │ │ │ │ ├── CheckModelImportLogs.cs.meta │ │ │ │ │ │ ├── CheckModelOrientation.cs │ │ │ │ │ │ ├── CheckModelOrientation.cs.meta │ │ │ │ │ │ ├── CheckModelTypes.cs │ │ │ │ │ │ ├── CheckModelTypes.cs.meta │ │ │ │ │ │ ├── CheckNormalMapTextures.cs │ │ │ │ │ │ ├── CheckNormalMapTextures.cs.meta │ │ │ │ │ │ ├── CheckPackageNaming.cs │ │ │ │ │ │ ├── CheckPackageNaming.cs.meta │ │ │ │ │ │ ├── CheckParticleSystems.cs │ │ │ │ │ │ ├── CheckParticleSystems.cs.meta │ │ │ │ │ │ ├── CheckPathLengths.cs │ │ │ │ │ │ ├── CheckPathLengths.cs.meta │ │ │ │ │ │ ├── CheckPrefabTransforms.cs │ │ │ │ │ │ ├── CheckPrefabTransforms.cs.meta │ │ │ │ │ │ ├── CheckScriptCompilation.cs │ │ │ │ │ │ ├── CheckScriptCompilation.cs.meta │ │ │ │ │ │ ├── CheckShaderCompilation.cs │ │ │ │ │ │ ├── CheckShaderCompilation.cs.meta │ │ │ │ │ │ ├── CheckTextureDimensions.cs │ │ │ │ │ │ ├── CheckTextureDimensions.cs.meta │ │ │ │ │ │ ├── CheckTypeNamespaces.cs │ │ │ │ │ │ ├── CheckTypeNamespaces.cs.meta │ │ │ │ │ │ ├── RemoveExecutableFiles.cs │ │ │ │ │ │ ├── RemoveExecutableFiles.cs.meta │ │ │ │ │ │ ├── RemoveJPGFiles.cs │ │ │ │ │ │ ├── RemoveJPGFiles.cs.meta │ │ │ │ │ │ ├── RemoveJavaScriptFiles.cs │ │ │ │ │ │ ├── RemoveJavaScriptFiles.cs.meta │ │ │ │ │ │ ├── RemoveLossyAudioFiles.cs │ │ │ │ │ │ ├── RemoveLossyAudioFiles.cs.meta │ │ │ │ │ │ ├── RemoveMixamoFiles.cs │ │ │ │ │ │ ├── RemoveMixamoFiles.cs.meta │ │ │ │ │ │ ├── RemoveSpeedTreeFiles.cs │ │ │ │ │ │ ├── RemoveSpeedTreeFiles.cs.meta │ │ │ │ │ │ ├── RemoveVideoFiles.cs │ │ │ │ │ │ └── RemoveVideoFiles.cs.meta │ │ │ │ │ ├── UnityPackage.meta │ │ │ │ │ └── UnityPackage │ │ │ │ │ │ ├── CheckDemoScenes.cs │ │ │ │ │ │ ├── CheckDemoScenes.cs.meta │ │ │ │ │ │ ├── CheckDocumentation.cs │ │ │ │ │ │ ├── CheckDocumentation.cs.meta │ │ │ │ │ │ ├── CheckPackageSize.cs │ │ │ │ │ │ ├── CheckPackageSize.cs.meta │ │ │ │ │ │ ├── CheckProjectTemplateAssets.cs │ │ │ │ │ │ └── CheckProjectTemplateAssets.cs.meta │ │ │ │ ├── UI.meta │ │ │ │ ├── UI │ │ │ │ │ ├── Data.meta │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── Abstractions.meta │ │ │ │ │ │ ├── Abstractions │ │ │ │ │ │ │ ├── IValidatorResults.cs │ │ │ │ │ │ │ ├── IValidatorResults.cs.meta │ │ │ │ │ │ │ ├── IValidatorSettings.cs │ │ │ │ │ │ │ ├── IValidatorSettings.cs.meta │ │ │ │ │ │ │ ├── IValidatorTest.cs │ │ │ │ │ │ │ ├── IValidatorTest.cs.meta │ │ │ │ │ │ │ ├── IValidatorTestGroup.cs │ │ │ │ │ │ │ └── IValidatorTestGroup.cs.meta │ │ │ │ │ │ ├── Serialization.meta │ │ │ │ │ │ ├── Serialization │ │ │ │ │ │ │ ├── ValidatorStateData.cs │ │ │ │ │ │ │ ├── ValidatorStateData.cs.meta │ │ │ │ │ │ │ ├── ValidatorStateDataContractResolver.cs │ │ │ │ │ │ │ ├── ValidatorStateDataContractResolver.cs.meta │ │ │ │ │ │ │ ├── ValidatorStateResults.cs │ │ │ │ │ │ │ ├── ValidatorStateResults.cs.meta │ │ │ │ │ │ │ ├── ValidatorStateSettings.cs │ │ │ │ │ │ │ └── ValidatorStateSettings.cs.meta │ │ │ │ │ │ ├── ValidatorResults.cs │ │ │ │ │ │ ├── ValidatorResults.cs.meta │ │ │ │ │ │ ├── ValidatorSettings.cs │ │ │ │ │ │ ├── ValidatorSettings.cs.meta │ │ │ │ │ │ ├── ValidatorTest.cs │ │ │ │ │ │ ├── ValidatorTest.cs.meta │ │ │ │ │ │ ├── ValidatorTestGroup.cs │ │ │ │ │ │ └── ValidatorTestGroup.cs.meta │ │ │ │ │ ├── Elements.meta │ │ │ │ │ ├── Elements │ │ │ │ │ │ ├── ValidatorButtonElement.cs │ │ │ │ │ │ ├── ValidatorButtonElement.cs.meta │ │ │ │ │ │ ├── ValidatorDescriptionElement.cs │ │ │ │ │ │ ├── ValidatorDescriptionElement.cs.meta │ │ │ │ │ │ ├── ValidatorPathsElement.cs │ │ │ │ │ │ ├── ValidatorPathsElement.cs.meta │ │ │ │ │ │ ├── ValidatorResultsElement.cs │ │ │ │ │ │ ├── ValidatorResultsElement.cs.meta │ │ │ │ │ │ ├── ValidatorSettingsElement.cs │ │ │ │ │ │ ├── ValidatorSettingsElement.cs.meta │ │ │ │ │ │ ├── ValidatorTestElement.cs │ │ │ │ │ │ ├── ValidatorTestElement.cs.meta │ │ │ │ │ │ ├── ValidatorTestGroupElement.cs │ │ │ │ │ │ └── ValidatorTestGroupElement.cs.meta │ │ │ │ │ ├── ValidatorWindow.cs │ │ │ │ │ ├── ValidatorWindow.cs.meta │ │ │ │ │ ├── Views.meta │ │ │ │ │ └── Views │ │ │ │ │ │ ├── ValidatorTestsView.cs │ │ │ │ │ │ └── ValidatorTestsView.cs.meta │ │ │ │ ├── Utility.meta │ │ │ │ ├── Utility │ │ │ │ │ ├── ValidatorUtility.cs │ │ │ │ │ └── ValidatorUtility.cs.meta │ │ │ │ ├── ValidatorBase.cs │ │ │ │ └── ValidatorBase.cs.meta │ │ │ │ ├── Styles.meta │ │ │ │ ├── Styles │ │ │ │ ├── Style.uss │ │ │ │ ├── Style.uss.meta │ │ │ │ ├── ThemeDark.uss │ │ │ │ ├── ThemeDark.uss.meta │ │ │ │ ├── ThemeLight.uss │ │ │ │ └── ThemeLight.uss.meta │ │ │ │ ├── Tests.meta │ │ │ │ └── Tests │ │ │ │ ├── Generic.meta │ │ │ │ ├── Generic │ │ │ │ ├── Check Animation Clips.asset │ │ │ │ ├── Check Animation Clips.asset.meta │ │ │ │ ├── Check Audio Clipping.asset │ │ │ │ ├── Check Audio Clipping.asset.meta │ │ │ │ ├── Check Colliders.asset │ │ │ │ ├── Check Colliders.asset.meta │ │ │ │ ├── Check Compressed Files.asset │ │ │ │ ├── Check Compressed Files.asset.meta │ │ │ │ ├── Check Empty Prefabs.asset │ │ │ │ ├── Check Empty Prefabs.asset.meta │ │ │ │ ├── Check File Menu Names.asset │ │ │ │ ├── Check File Menu Names.asset.meta │ │ │ │ ├── Check LODs.asset │ │ │ │ ├── Check LODs.asset.meta │ │ │ │ ├── Check Line Endings.asset │ │ │ │ ├── Check Line Endings.asset.meta │ │ │ │ ├── Check Mesh Prefabs.asset │ │ │ │ ├── Check Mesh Prefabs.asset.meta │ │ │ │ ├── Check Missing Components in Assets.asset │ │ │ │ ├── Check Missing Components in Assets.asset.meta │ │ │ │ ├── Check Missing Components in Scenes.asset │ │ │ │ ├── Check Missing Components in Scenes.asset.meta │ │ │ │ ├── Check Model Import Logs.asset │ │ │ │ ├── Check Model Import Logs.asset.meta │ │ │ │ ├── Check Model Orientation.asset │ │ │ │ ├── Check Model Orientation.asset.meta │ │ │ │ ├── Check Model Types.asset │ │ │ │ ├── Check Model Types.asset.meta │ │ │ │ ├── Check Normal Map Textures.asset │ │ │ │ ├── Check Normal Map Textures.asset.meta │ │ │ │ ├── Check Package Naming.asset │ │ │ │ ├── Check Package Naming.asset.meta │ │ │ │ ├── Check Particle Systems.asset │ │ │ │ ├── Check Particle Systems.asset.meta │ │ │ │ ├── Check Path Lengths.asset │ │ │ │ ├── Check Path Lengths.asset.meta │ │ │ │ ├── Check Prefab Transforms.asset │ │ │ │ ├── Check Prefab Transforms.asset.meta │ │ │ │ ├── Check Script Compilation.asset │ │ │ │ ├── Check Script Compilation.asset.meta │ │ │ │ ├── Check Shader Compilation.asset │ │ │ │ ├── Check Shader Compilation.asset.meta │ │ │ │ ├── Check Texture Dimensions.asset │ │ │ │ ├── Check Texture Dimensions.asset.meta │ │ │ │ ├── Check Type Namespaces.asset │ │ │ │ ├── Check Type Namespaces.asset.meta │ │ │ │ ├── Remove Executable Files.asset │ │ │ │ ├── Remove Executable Files.asset.meta │ │ │ │ ├── Remove JPG Files.asset │ │ │ │ ├── Remove JPG Files.asset.meta │ │ │ │ ├── Remove JavaScript Files.asset │ │ │ │ ├── Remove JavaScript Files.asset.meta │ │ │ │ ├── Remove Lossy Audio Files.asset │ │ │ │ ├── Remove Lossy Audio Files.asset.meta │ │ │ │ ├── Remove Mixamo Files.asset │ │ │ │ ├── Remove Mixamo Files.asset.meta │ │ │ │ ├── Remove SpeedTree Files.asset │ │ │ │ ├── Remove SpeedTree Files.asset.meta │ │ │ │ ├── Remove Video Files.asset │ │ │ │ └── Remove Video Files.asset.meta │ │ │ │ ├── UnityPackage.meta │ │ │ │ └── UnityPackage │ │ │ │ ├── Check Demo Scenes.asset │ │ │ │ ├── Check Demo Scenes.asset.meta │ │ │ │ ├── Check Documentation.asset │ │ │ │ ├── Check Documentation.asset.meta │ │ │ │ ├── Check Package Size.asset │ │ │ │ ├── Check Package Size.asset.meta │ │ │ │ ├── Check Project Template Assets.asset │ │ │ │ └── Check Project Template Assets.asset.meta │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── manifest.json │ └── packages-lock.json ├── ProjectSettings │ ├── AudioManager.asset │ ├── BurstAotSettings_Android.json │ ├── BurstAotSettings_StandaloneWindows.json │ ├── ClusterInputManager.asset │ ├── CommonBurstAotSettings.json │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── MultiplayerManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── PackageManagerSettings.asset │ ├── Packages │ │ └── com.unity.services.core │ │ │ └── Settings.json │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── ShaderGraphSettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── TimelineSettings.asset │ ├── UnityAdsSettings.asset.meta │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ └── VersionControlSettings.asset └── UserSettings │ ├── EditorUserSettings.asset │ ├── Layouts │ ├── CurrentMaximizeLayout.dwlt │ ├── default-2021.dwlt │ ├── default-2022.dwlt │ └── default-6000.dwlt │ ├── Search.index │ └── Search.settings └── docs ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .markdownlint-cli2.jsonc ├── .npmrc ├── .stylelintignore ├── .stylelintrc.json ├── assets ├── cover.png ├── favicon.ico ├── favicon.png ├── favicon.svg ├── images │ └── .gitkeep ├── js │ └── custom.js ├── jsconfig.json ├── mask-icon.svg ├── scss │ └── common │ │ ├── _custom.scss │ │ └── _variables-custom.scss └── svgs │ └── .gitkeep ├── babel.config.js ├── config ├── _default │ ├── hugo.toml │ ├── languages.toml │ ├── markup.toml │ ├── menus │ │ └── menus.en.toml │ ├── module.toml │ └── params.toml ├── next │ └── hugo.toml ├── postcss.config.js └── production │ └── hugo.toml ├── content ├── _index.md ├── docs │ ├── .vscode │ │ └── settings.json │ ├── _index.md │ ├── about │ │ ├── _index.md │ │ ├── building-volumes.md │ │ ├── changelog.md │ │ └── license-credits.md │ ├── help │ │ ├── _index.md │ │ ├── contact.md │ │ ├── issues.md │ │ └── support.png │ ├── quickstart │ │ ├── _index.md │ │ ├── own-data-usage │ │ │ ├── Converter_Start_Threads.png │ │ │ └── index.md │ │ └── quick-start │ │ │ ├── index.md │ │ │ └── package_manager_git.png │ └── tutorials │ │ ├── _index.md │ │ ├── distribution │ │ ├── create_streamingassets.png │ │ ├── index.md │ │ ├── set_persistentdata_path.png │ │ └── set_streamingassets_path.png │ │ ├── editor-playback │ │ ├── editor_playback_add_component.png │ │ ├── editor_playback_fps.png │ │ ├── editor_playback_gameobject.png │ │ ├── editor_playback_open_sequence.png │ │ ├── editor_playback_player_component.afphoto │ │ ├── editor_playback_player_component.png │ │ ├── editor_playback_stream_component.png │ │ └── index.md │ │ ├── installation │ │ ├── index.md │ │ ├── package_manager_add.png │ │ ├── package_manager_git.png │ │ └── package_manager_install_storebought.png │ │ ├── materials │ │ ├── Mesh_Material_Difference.jpg │ │ ├── Mesh_Material_Options.png │ │ ├── Pointcloud_Emission.jpg │ │ ├── Pointcloud_Settings.png │ │ ├── Pointcloud_Shape.jpg │ │ ├── Pointcloud_Size.jpg │ │ ├── index.md │ │ └── shadergraph-distortion.jpg │ │ ├── prepare-data │ │ ├── Converter_Options.png │ │ ├── Converter_SelectFolder_newfolder.png │ │ ├── Converter_SelectInput.png │ │ ├── Converter_SelectOutput.png │ │ ├── Converter_Start_Threads.png │ │ └── index.md │ │ ├── samples │ │ ├── API-Example.png │ │ ├── index.bck │ │ ├── index.md │ │ ├── package_manager_samples.png │ │ ├── shadergraph-distortion.jpg │ │ └── timeline-playback.png │ │ ├── scripting-api │ │ ├── api_disable_startloop.png │ │ ├── editor_playback_add_event.png │ │ └── index.md │ │ └── timeline-integration │ │ ├── index.md │ │ ├── timeline-newgo.png │ │ ├── timeline-open.png │ │ ├── timeline_add_Clip.png │ │ ├── timeline_add_component.png │ │ ├── timeline_adjust_duration.png │ │ ├── timeline_assign_stream.png │ │ ├── timeline_create.png │ │ ├── timeline_create_track.png │ │ └── timeline_open_sequence.png └── versions.md ├── data └── docs-versions.yml ├── functions └── hi-from-lambda.js ├── hugo_stats.json ├── i18n └── en.yaml ├── layouts ├── _partials │ ├── footer │ │ └── script-footer-custom.html │ └── head │ │ ├── custom-head.html │ │ └── script-header.html └── home.html ├── netlify.toml ├── package-lock.json ├── package.json ├── static └── Unity_Package_OpenGraph_logo.png └── theme.toml /.github/workflows/deploy-github.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/.github/workflows/deploy-github.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/.gitmodules -------------------------------------------------------------------------------- /Assets/Cube_Base_Logo.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Assets/Cube_Base_Logo.afphoto -------------------------------------------------------------------------------- /Assets/GSS_Logo.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Assets/GSS_Logo.afphoto -------------------------------------------------------------------------------- /Assets/GSS_Logo_Title.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Assets/GSS_Logo_Title.afphoto -------------------------------------------------------------------------------- /Assets/GS_Player_Icon.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Assets/GS_Player_Icon.afphoto -------------------------------------------------------------------------------- /Assets/GS_Player_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Assets/GS_Player_Icon.png -------------------------------------------------------------------------------- /Assets/GS_Stream_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Assets/GS_Stream_Icon.png -------------------------------------------------------------------------------- /Assets/gss_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Assets/gss_logo.png -------------------------------------------------------------------------------- /Converter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Converter/.gitignore -------------------------------------------------------------------------------- /Converter/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Converter/.vscode/launch.json -------------------------------------------------------------------------------- /Converter/Sequence_Converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Converter/Sequence_Converter.py -------------------------------------------------------------------------------- /Converter/Sequence_Converter_UI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Converter/Sequence_Converter_UI.py -------------------------------------------------------------------------------- /Converter/Sequence_Metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Converter/Sequence_Metadata.py -------------------------------------------------------------------------------- /Converter/resources/astcenc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Converter/resources/astcenc.exe -------------------------------------------------------------------------------- /Converter/resources/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Converter/resources/logo.ico -------------------------------------------------------------------------------- /Converter/resources/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Converter/resources/logo.svg -------------------------------------------------------------------------------- /Converter/resources/texconv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Converter/resources/texconv.exe -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/README.md -------------------------------------------------------------------------------- /Unity_Test_Project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/.gitignore -------------------------------------------------------------------------------- /Unity_Test_Project/.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/.vsconfig -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/Basic_Build_Sample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/Basic_Build_Sample.unity -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/Basic_Build_Sample.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/Basic_Build_Sample.unity.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/Basic_Build_Sample_PC.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/Basic_Build_Sample_PC.unity -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/Basic_Build_Sample_PC.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/Basic_Build_Sample_PC.unity.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/Editor.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/Editor/BumpUpPackageVersionAndCopySamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/Editor/BumpUpPackageVersionAndCopySamples.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/Editor/BumpUpPackageVersionAndCopySamples.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/Editor/BumpUpPackageVersionAndCopySamples.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/EmptyScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/EmptyScene.unity -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/EmptyScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/EmptyScene.unity.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/Lit.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/Lit.mat -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/Lit.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/Lit.mat.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/NormalTest.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/NormalTest.unity -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/NormalTest.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/NormalTest.unity.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/Plugins.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/Samples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/Samples.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/Scripts.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/Scripts/AutoSceneLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/Scripts/AutoSceneLoader.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/Scripts/AutoSceneLoader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/Scripts/AutoSceneLoader.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/Scripts/VisualizeBounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/Scripts/VisualizeBounds.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Assets/Scripts/VisualizeBounds.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Assets/Scripts/VisualizeBounds.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/CHANGELOG.md -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/CHANGELOG.md.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/AuthenticationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/AuthenticationBase.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/AuthenticationBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/AuthenticationBase.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/IAssetStoreApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/IAssetStoreApi.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/IAssetStoreApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/IAssetStoreApi.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/IAssetStoreClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/IAssetStoreClient.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/IAssetStoreClient.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/IAssetStoreClient.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/IAuthenticationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/IAuthenticationType.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/IAuthenticationType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/IAuthenticationType.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/IPackageUploader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/IPackageUploader.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/IPackageUploader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/IPackageUploader.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/PackageUploaderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/PackageUploaderBase.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/PackageUploaderBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Abstractions/PackageUploaderBase.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/ApiUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/ApiUtility.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/ApiUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/ApiUtility.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/AssetStoreApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/AssetStoreApi.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/AssetStoreApi.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/AssetStoreApi.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/AssetStoreClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/AssetStoreClient.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/AssetStoreClient.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/AssetStoreClient.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/CloudTokenAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/CloudTokenAuthentication.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/CloudTokenAuthentication.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/CloudTokenAuthentication.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/CredentialsAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/CredentialsAuthentication.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/CredentialsAuthentication.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/CredentialsAuthentication.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models/Category.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models/Category.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models/Category.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models/Package.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models/Package.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models/Package.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models/PackageAdditionalData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models/PackageAdditionalData.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models/PackageAdditionalData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models/PackageAdditionalData.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models/User.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models/User.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Models/User.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/AssetStoreResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/AssetStoreResponse.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/AssetStoreResponse.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/AssetStoreResponse.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/AssetStoreToolsVersionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/AssetStoreToolsVersionResponse.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/AssetStoreToolsVersionResponse.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/AssetStoreToolsVersionResponse.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/AuthenticationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/AuthenticationResponse.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/AuthenticationResponse.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/AuthenticationResponse.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/CategoryDataResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/CategoryDataResponse.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/CategoryDataResponse.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/CategoryDataResponse.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/PackageThumbnailResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/PackageThumbnailResponse.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/PackageThumbnailResponse.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/PackageThumbnailResponse.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/PackagesAdditionalDataResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/PackagesAdditionalDataResponse.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/PackagesAdditionalDataResponse.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/PackagesAdditionalDataResponse.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/PackagesDataResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/PackagesDataResponse.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/PackagesDataResponse.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/PackagesDataResponse.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/RefreshedPackageDataResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/RefreshedPackageDataResponse.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/RefreshedPackageDataResponse.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/RefreshedPackageDataResponse.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/UploadResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/UploadResponse.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/UploadResponse.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/Responses/UploadResponse.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/SessionAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/SessionAuthentication.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/SessionAuthentication.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/SessionAuthentication.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/UnityPackageUploader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/UnityPackageUploader.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/UnityPackageUploader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/UnityPackageUploader.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/UploadStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/UploadStatus.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/UploadStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Api/UploadStatus.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/AssemblyInfo.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/AssemblyInfo.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/AssetStoreTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/AssetStoreTools.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/AssetStoreTools.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/AssetStoreTools.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/AssetStoreToolsWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/AssetStoreToolsWindow.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/AssetStoreToolsWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/AssetStoreToolsWindow.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Constants.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Constants.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Constants.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions/IPackageExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions/IPackageExporter.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions/IPackageExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions/IPackageExporter.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions/IPreviewInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions/IPreviewInjector.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions/IPreviewInjector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions/IPreviewInjector.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions/PackageExporterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions/PackageExporterBase.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions/PackageExporterBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions/PackageExporterBase.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions/PackageExporterSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions/PackageExporterSettings.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions/PackageExporterSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/Abstractions/PackageExporterSettings.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/DefaultExporterSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/DefaultExporterSettings.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/DefaultExporterSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/DefaultExporterSettings.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/DefaultPackageExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/DefaultPackageExporter.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/DefaultPackageExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/DefaultPackageExporter.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/LegacyExporterSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/LegacyExporterSettings.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/LegacyExporterSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/LegacyExporterSettings.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/LegacyPackageExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/LegacyPackageExporter.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/LegacyPackageExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/LegacyPackageExporter.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/PackageExporterResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/PackageExporterResult.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/PackageExporterResult.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/PackageExporterResult.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/PreviewInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/PreviewInjector.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/PreviewInjector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Exporter/PreviewInjector.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/FileNameFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/FileNameFormat.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/FileNameFormat.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/FileNameFormat.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/GenerationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/GenerationType.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/GenerationType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/GenerationType.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewDatabase.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewDatabase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewDatabase.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewFormat.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewFormat.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewFormat.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewGenerationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewGenerationResult.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewGenerationResult.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewGenerationResult.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewGenerationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewGenerationSettings.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewGenerationSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewGenerationSettings.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewMetadata.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewMetadata.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Data/PreviewMetadata.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/Custom.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/Custom.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/Custom/AudioChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/Custom/AudioChannel.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/Custom/AudioChannel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/Custom/AudioChannel.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/Custom/Screenshotters.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/Custom/Screenshotters.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/Custom/TypeGenerators.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/Custom/TypeGenerators.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/CustomPreviewGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/CustomPreviewGenerator.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/IPreviewGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/IPreviewGenerator.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/IPreviewGenerator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/IPreviewGenerator.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/NativePreviewGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/NativePreviewGenerator.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/PreviewGeneratorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Generators/PreviewGeneratorBase.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Services.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Services.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Services/Caching.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Services/Caching.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Services/Caching/CachingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Services/Caching/CachingService.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Services/Caching/ICachingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Services/Caching/ICachingService.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Services/IPreviewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Services/IPreviewService.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Services/IPreviewService.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Services/IPreviewService.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Services/PreviewServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Services/PreviewServiceProvider.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Data.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Data/AssetPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Data/AssetPreview.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Data/AssetPreview.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Data/AssetPreview.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Data/AssetPreviewCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Data/AssetPreviewCollection.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Data/IAssetPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Data/IAssetPreview.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Data/IAssetPreview.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Data/IAssetPreview.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Data/IAssetPreviewCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Data/IAssetPreviewCollection.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Data/PreviewGeneratorSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Data/PreviewGeneratorSettings.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Elements.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Elements.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Elements/AssetPreviewElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Elements/AssetPreviewElement.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Elements/GridListElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Elements/GridListElement.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Elements/GridListElement.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Elements/GridListElement.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/PreviewGeneratorWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/PreviewGeneratorWindow.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/PreviewGeneratorWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/PreviewGeneratorWindow.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Views.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Views.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Views/PreviewListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Views/PreviewListView.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Views/PreviewListView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/UI/Views/PreviewListView.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility/GraphicsUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility/GraphicsUtility.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility/GraphicsUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility/GraphicsUtility.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility/PreviewConvertUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility/PreviewConvertUtility.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility/PreviewSceneUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility/PreviewSceneUtility.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility/PreviewSceneUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility/PreviewSceneUtility.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility/RenderPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility/RenderPipeline.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility/RenderPipeline.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility/RenderPipeline.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility/RenderPipelineUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Scripts/Utility/RenderPipelineUtility.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Styles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Styles.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Styles/Style.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Styles/Style.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Styles/Style.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Styles/Style.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Styles/ThemeDark.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Styles/ThemeDark.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Styles/ThemeDark.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Styles/ThemeDark.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Styles/ThemeLight.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Styles/ThemeLight.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Styles/ThemeLight.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Previews/Styles/ThemeLight.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Unity.AssetStoreTools.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Unity.AssetStoreTools.Editor.asmdef -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Unity.AssetStoreTools.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Unity.AssetStoreTools.Editor.asmdef.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/account-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/account-dark.png -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/account-dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/account-dark.png.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/account-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/account-light.png -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/account-light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/account-light.png.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/open-in-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/open-in-browser.png -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/open-in-browser.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/open-in-browser.png.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/publisher-portal-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/publisher-portal-dark.png -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/publisher-portal-dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/publisher-portal-dark.png.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/publisher-portal-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/publisher-portal-light.png -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/publisher-portal-light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Icons/publisher-portal-light.png.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Abstractions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Abstractions.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Abstractions/IPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Abstractions/IPackage.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Abstractions/IPackage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Abstractions/IPackage.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Abstractions/IPackageGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Abstractions/IPackageGroup.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Abstractions/IWorkflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Abstractions/IWorkflow.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Abstractions/IWorkflow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Abstractions/IWorkflow.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Abstractions/WorkflowBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Abstractions/WorkflowBase.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/AssetsWorkflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/AssetsWorkflow.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/AssetsWorkflow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/AssetsWorkflow.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/HybridPackageWorkflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/HybridPackageWorkflow.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/HybridPackageWorkflow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/HybridPackageWorkflow.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Package.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Package.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Package.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/PackageContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/PackageContent.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/PackageContent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/PackageContent.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/PackageGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/PackageGroup.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/PackageGroup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/PackageGroup.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/PackageSorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/PackageSorting.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/PackageSorting.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/PackageSorting.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Serialization.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Serialization.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Serialization/AssetPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/Serialization/AssetPath.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/UnityPackageWorkflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/UnityPackageWorkflow.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/UnityPackageWorkflow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/UnityPackageWorkflow.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/WorkflowServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/WorkflowServices.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/WorkflowServices.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Data/WorkflowServices.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/Analytics.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/Analytics.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/Analytics/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/Analytics/Data.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/Api.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/Api.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/Caching.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/Caching.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/Caching/CachingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/Caching/CachingService.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/Caching/ICachingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/Caching/ICachingService.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/IUploaderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/IUploaderService.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/IUploaderService.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/IUploaderService.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/PackageFactory.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/PackageFactory.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/UploaderServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/Services/UploaderServiceProvider.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/Abstractions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/Abstractions.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/AccountToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/AccountToolbar.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/AccountToolbar.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/AccountToolbar.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/LoadingSpinner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/LoadingSpinner.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/LoadingSpinner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/LoadingSpinner.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/PackageElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/PackageElement.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/PackageElement.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/PackageElement.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/PackageGroupElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/PackageGroupElement.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/PackageListToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/PackageListToolbar.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/PackageUploadElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/PackageUploadElement.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/PathSelectionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Elements/PathSelectionElement.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Views.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Views.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Views/LoginView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Views/LoginView.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Views/LoginView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Views/LoginView.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Views/PackageListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Views/PackageListView.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Views/PackageListView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Scripts/UI/Views/PackageListView.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/LoginView.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/LoginView.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/LoginView/Style.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/LoginView/Style.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/LoginView/Style.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/LoginView/Style.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/LoginView/ThemeDark.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/LoginView/ThemeDark.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/LoginView/ThemeDark.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/LoginView/ThemeDark.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/LoginView/ThemeLight.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/LoginView/ThemeLight.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/LoginView/ThemeLight.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/LoginView/ThemeLight.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/PackageListView.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/PackageListView.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/PackageListView/Style.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/PackageListView/Style.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/PackageListView/Style.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/PackageListView/Style.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/PackageListView/ThemeDark.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/PackageListView/ThemeDark.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/PackageListView/ThemeDark.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/PackageListView/ThemeDark.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/PackageListView/ThemeLight.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/PackageListView/ThemeLight.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/PackageListView/ThemeLight.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/PackageListView/ThemeLight.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/Style.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/Style.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/Style.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/Style.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/ThemeDark.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/ThemeDark.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/ThemeDark.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/ThemeDark.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/ThemeLight.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/ThemeLight.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/ThemeLight.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/Styles/ThemeLight.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/UploaderWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/UploaderWindow.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/UploaderWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Uploader/UploaderWindow.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/ASDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/ASDebug.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/ASDebug.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/ASDebug.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/ASToolsPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/ASToolsPreferences.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/ASToolsPreferences.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/ASToolsPreferences.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/ASToolsUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/ASToolsUpdater.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/ASToolsUpdater.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/ASToolsUpdater.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/CacheUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/CacheUtil.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/CacheUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/CacheUtil.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/FileUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/FileUtility.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/FileUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/FileUtility.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/LegacyToolsRemover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/LegacyToolsRemover.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/LegacyToolsRemover.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/LegacyToolsRemover.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/PackageUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/PackageUtility.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/PackageUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/PackageUtility.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/ServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/ServiceProvider.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/ServiceProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/ServiceProvider.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/StyleSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/StyleSelector.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/StyleSelector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/StyleSelector.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/Styles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/Styles.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/Styles/Updater.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/Styles/Updater.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/Styles/Updater/Style.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/Styles/Updater/Style.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/Styles/Updater/Style.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/Styles/Updater/Style.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/Styles/Updater/ThemeDark.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/Styles/Updater/ThemeDark.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/Styles/Updater/ThemeDark.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/Styles/Updater/ThemeDark.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/Styles/Updater/ThemeLight.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/Styles/Updater/ThemeLight.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/Styles/Updater/ThemeLight.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/Styles/Updater/ThemeLight.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/SymlinkUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/SymlinkUtil.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/SymlinkUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Utility/SymlinkUtil.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/error.png -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/error.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/error.png.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/error_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/error_d.png -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/error_d.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/error_d.png.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/success.png -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/success.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/success.png.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/success_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/success_d.png -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/success_d.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/success_d.png.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/undefined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/undefined.png -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/undefined.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/undefined.png.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/undefined_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/undefined_d.png -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/undefined_d.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/undefined_d.png.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/warning.png -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/warning.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/warning.png.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/warning_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/warning_d.png -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/warning_d.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Icons/warning_d.png.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Categories.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a971a9a200a4438945853d71066f16a 3 | timeCreated: 1657617558 -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Categories/CategoryEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Categories/CategoryEvaluator.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Categories/ValidatorCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Categories/ValidatorCategory.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/CurrentProjectValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/CurrentProjectValidator.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/CurrentProjectValidator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/CurrentProjectValidator.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/MessageActions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/MessageActions.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/TestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/TestResult.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/TestResult.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/TestResult.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/TestResultMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/TestResultMessage.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/TestResultMessage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/TestResultMessage.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/TestResultObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/TestResultObject.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/TestResultObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/TestResultObject.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/TestResultStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/TestResultStatus.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/TestResultStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/TestResultStatus.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/ValidationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/ValidationResult.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/ValidationResult.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/ValidationResult.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/ValidationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/ValidationSettings.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/ValidationSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/ValidationSettings.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/ValidationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/ValidationStatus.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/ValidationStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/ValidationStatus.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/ValidationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/ValidationType.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/ValidationType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Data/ValidationType.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/ExternalProjectValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/ExternalProjectValidator.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/ExternalProjectValidator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/ExternalProjectValidator.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/IValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/IValidator.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/IValidator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/IValidator.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Services.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Services.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Services/CachingService.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Services/CachingService.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Services/IValidatorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Services/IValidatorService.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Services/IValidatorService.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Services/IValidatorService.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Services/Validation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Services/Validation.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Services/Validation/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Services/Validation/Data.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Definitions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Definitions.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Definitions/AutomatedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Definitions/AutomatedTest.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Definitions/ITestConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Definitions/ITestConfig.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Definitions/ITestScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Definitions/ITestScript.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Definitions/ValidationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Definitions/ValidationTest.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Methods.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Methods.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Methods/Generic.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Methods/Generic.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Methods/Generic/CheckLODs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Methods/Generic/CheckLODs.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Methods/UnityPackage.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Test Methods/UnityPackage.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/Abstractions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/Abstractions.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/Serialization.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/Serialization.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/ValidatorResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/ValidatorResults.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/ValidatorResults.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/ValidatorResults.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/ValidatorSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/ValidatorSettings.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/ValidatorSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/ValidatorSettings.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/ValidatorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/ValidatorTest.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/ValidatorTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/ValidatorTest.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/ValidatorTestGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/ValidatorTestGroup.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/ValidatorTestGroup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Data/ValidatorTestGroup.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Elements.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Elements.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/ValidatorWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/ValidatorWindow.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/ValidatorWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/ValidatorWindow.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Views.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Views.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Views/ValidatorTestsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/UI/Views/ValidatorTestsView.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Utility.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Utility/ValidatorUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Utility/ValidatorUtility.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Utility/ValidatorUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/Utility/ValidatorUtility.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/ValidatorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/ValidatorBase.cs -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/ValidatorBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Scripts/ValidatorBase.cs.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Styles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Styles.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Styles/Style.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Styles/Style.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Styles/Style.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Styles/Style.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Styles/ThemeDark.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Styles/ThemeDark.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Styles/ThemeDark.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Styles/ThemeDark.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Styles/ThemeLight.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Styles/ThemeLight.uss -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Styles/ThemeLight.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Styles/ThemeLight.uss.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Animation Clips.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Animation Clips.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Audio Clipping.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Audio Clipping.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Colliders.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Colliders.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Colliders.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Colliders.asset.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Compressed Files.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Compressed Files.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Empty Prefabs.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Empty Prefabs.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check File Menu Names.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check File Menu Names.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check LODs.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check LODs.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check LODs.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check LODs.asset.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Line Endings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Line Endings.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Mesh Prefabs.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Mesh Prefabs.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Model Types.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Model Types.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Model Types.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Model Types.asset.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Package Naming.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Package Naming.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Particle Systems.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Particle Systems.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Path Lengths.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Path Lengths.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Type Namespaces.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Check Type Namespaces.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Remove JPG Files.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Remove JPG Files.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Remove JPG Files.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Remove JPG Files.asset.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Remove Mixamo Files.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Remove Mixamo Files.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Remove SpeedTree Files.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Remove SpeedTree Files.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Remove Video Files.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/Generic/Remove Video Files.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/UnityPackage.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/UnityPackage.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/UnityPackage/Check Demo Scenes.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/Editor/Validator/Tests/UnityPackage/Check Demo Scenes.asset -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/LICENSE.md -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/LICENSE.md.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/package.json -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/com.unity.asset-store-tools/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/com.unity.asset-store-tools/package.json.meta -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/manifest.json -------------------------------------------------------------------------------- /Unity_Test_Project/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/Packages/packages-lock.json -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/BurstAotSettings_Android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/BurstAotSettings_Android.json -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/BurstAotSettings_StandaloneWindows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/BurstAotSettings_StandaloneWindows.json -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/MultiplayerManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/MultiplayerManager.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/Packages/com.unity.services.core/Settings.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/TimelineSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/TimelineSettings.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/UnityAdsSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/UnityAdsSettings.asset.meta -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /Unity_Test_Project/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /Unity_Test_Project/UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/UserSettings/EditorUserSettings.asset -------------------------------------------------------------------------------- /Unity_Test_Project/UserSettings/Layouts/CurrentMaximizeLayout.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/UserSettings/Layouts/CurrentMaximizeLayout.dwlt -------------------------------------------------------------------------------- /Unity_Test_Project/UserSettings/Layouts/default-2021.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/UserSettings/Layouts/default-2021.dwlt -------------------------------------------------------------------------------- /Unity_Test_Project/UserSettings/Layouts/default-2022.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/UserSettings/Layouts/default-2022.dwlt -------------------------------------------------------------------------------- /Unity_Test_Project/UserSettings/Layouts/default-6000.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/UserSettings/Layouts/default-6000.dwlt -------------------------------------------------------------------------------- /Unity_Test_Project/UserSettings/Search.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/UserSettings/Search.index -------------------------------------------------------------------------------- /Unity_Test_Project/UserSettings/Search.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/Unity_Test_Project/UserSettings/Search.settings -------------------------------------------------------------------------------- /docs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/.editorconfig -------------------------------------------------------------------------------- /docs/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/.eslintignore -------------------------------------------------------------------------------- /docs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/.eslintrc.json -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | public 3 | resources 4 | .netlify 5 | .hugo_build.lock -------------------------------------------------------------------------------- /docs/.markdownlint-cli2.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/.markdownlint-cli2.jsonc -------------------------------------------------------------------------------- /docs/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/.npmrc -------------------------------------------------------------------------------- /docs/.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/.stylelintignore -------------------------------------------------------------------------------- /docs/.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/.stylelintrc.json -------------------------------------------------------------------------------- /docs/assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/assets/cover.png -------------------------------------------------------------------------------- /docs/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/assets/favicon.ico -------------------------------------------------------------------------------- /docs/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/assets/favicon.png -------------------------------------------------------------------------------- /docs/assets/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/assets/favicon.svg -------------------------------------------------------------------------------- /docs/assets/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/js/custom.js: -------------------------------------------------------------------------------- 1 | // Put your custom JS code here 2 | -------------------------------------------------------------------------------- /docs/assets/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/assets/jsconfig.json -------------------------------------------------------------------------------- /docs/assets/mask-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/assets/mask-icon.svg -------------------------------------------------------------------------------- /docs/assets/scss/common/_custom.scss: -------------------------------------------------------------------------------- 1 | // Put your custom SCSS code here 2 | -------------------------------------------------------------------------------- /docs/assets/scss/common/_variables-custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/assets/scss/common/_variables-custom.scss -------------------------------------------------------------------------------- /docs/assets/svgs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/config/_default/hugo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/config/_default/hugo.toml -------------------------------------------------------------------------------- /docs/config/_default/languages.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/config/_default/languages.toml -------------------------------------------------------------------------------- /docs/config/_default/markup.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/config/_default/markup.toml -------------------------------------------------------------------------------- /docs/config/_default/menus/menus.en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/config/_default/menus/menus.en.toml -------------------------------------------------------------------------------- /docs/config/_default/module.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/config/_default/module.toml -------------------------------------------------------------------------------- /docs/config/_default/params.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/config/_default/params.toml -------------------------------------------------------------------------------- /docs/config/next/hugo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/config/next/hugo.toml -------------------------------------------------------------------------------- /docs/config/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/config/postcss.config.js -------------------------------------------------------------------------------- /docs/config/production/hugo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/config/production/hugo.toml -------------------------------------------------------------------------------- /docs/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/_index.md -------------------------------------------------------------------------------- /docs/content/docs/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/.vscode/settings.json -------------------------------------------------------------------------------- /docs/content/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/_index.md -------------------------------------------------------------------------------- /docs/content/docs/about/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/about/_index.md -------------------------------------------------------------------------------- /docs/content/docs/about/building-volumes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/about/building-volumes.md -------------------------------------------------------------------------------- /docs/content/docs/about/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/about/changelog.md -------------------------------------------------------------------------------- /docs/content/docs/about/license-credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/about/license-credits.md -------------------------------------------------------------------------------- /docs/content/docs/help/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/help/_index.md -------------------------------------------------------------------------------- /docs/content/docs/help/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/help/contact.md -------------------------------------------------------------------------------- /docs/content/docs/help/issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/help/issues.md -------------------------------------------------------------------------------- /docs/content/docs/help/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/help/support.png -------------------------------------------------------------------------------- /docs/content/docs/quickstart/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/quickstart/_index.md -------------------------------------------------------------------------------- /docs/content/docs/quickstart/own-data-usage/Converter_Start_Threads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/quickstart/own-data-usage/Converter_Start_Threads.png -------------------------------------------------------------------------------- /docs/content/docs/quickstart/own-data-usage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/quickstart/own-data-usage/index.md -------------------------------------------------------------------------------- /docs/content/docs/quickstart/quick-start/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/quickstart/quick-start/index.md -------------------------------------------------------------------------------- /docs/content/docs/quickstart/quick-start/package_manager_git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/quickstart/quick-start/package_manager_git.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/_index.md -------------------------------------------------------------------------------- /docs/content/docs/tutorials/distribution/create_streamingassets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/distribution/create_streamingassets.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/distribution/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/distribution/index.md -------------------------------------------------------------------------------- /docs/content/docs/tutorials/distribution/set_persistentdata_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/distribution/set_persistentdata_path.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/distribution/set_streamingassets_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/distribution/set_streamingassets_path.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/editor-playback/editor_playback_add_component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/editor-playback/editor_playback_add_component.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/editor-playback/editor_playback_fps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/editor-playback/editor_playback_fps.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/editor-playback/editor_playback_gameobject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/editor-playback/editor_playback_gameobject.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/editor-playback/editor_playback_open_sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/editor-playback/editor_playback_open_sequence.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/editor-playback/editor_playback_player_component.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/editor-playback/editor_playback_player_component.afphoto -------------------------------------------------------------------------------- /docs/content/docs/tutorials/editor-playback/editor_playback_player_component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/editor-playback/editor_playback_player_component.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/editor-playback/editor_playback_stream_component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/editor-playback/editor_playback_stream_component.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/editor-playback/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/editor-playback/index.md -------------------------------------------------------------------------------- /docs/content/docs/tutorials/installation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/installation/index.md -------------------------------------------------------------------------------- /docs/content/docs/tutorials/installation/package_manager_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/installation/package_manager_add.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/installation/package_manager_git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/installation/package_manager_git.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/installation/package_manager_install_storebought.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/installation/package_manager_install_storebought.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/materials/Mesh_Material_Difference.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/materials/Mesh_Material_Difference.jpg -------------------------------------------------------------------------------- /docs/content/docs/tutorials/materials/Mesh_Material_Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/materials/Mesh_Material_Options.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/materials/Pointcloud_Emission.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/materials/Pointcloud_Emission.jpg -------------------------------------------------------------------------------- /docs/content/docs/tutorials/materials/Pointcloud_Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/materials/Pointcloud_Settings.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/materials/Pointcloud_Shape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/materials/Pointcloud_Shape.jpg -------------------------------------------------------------------------------- /docs/content/docs/tutorials/materials/Pointcloud_Size.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/materials/Pointcloud_Size.jpg -------------------------------------------------------------------------------- /docs/content/docs/tutorials/materials/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/materials/index.md -------------------------------------------------------------------------------- /docs/content/docs/tutorials/materials/shadergraph-distortion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/materials/shadergraph-distortion.jpg -------------------------------------------------------------------------------- /docs/content/docs/tutorials/prepare-data/Converter_Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/prepare-data/Converter_Options.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/prepare-data/Converter_SelectFolder_newfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/prepare-data/Converter_SelectFolder_newfolder.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/prepare-data/Converter_SelectInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/prepare-data/Converter_SelectInput.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/prepare-data/Converter_SelectOutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/prepare-data/Converter_SelectOutput.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/prepare-data/Converter_Start_Threads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/prepare-data/Converter_Start_Threads.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/prepare-data/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/prepare-data/index.md -------------------------------------------------------------------------------- /docs/content/docs/tutorials/samples/API-Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/samples/API-Example.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/samples/index.bck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/samples/index.bck -------------------------------------------------------------------------------- /docs/content/docs/tutorials/samples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/samples/index.md -------------------------------------------------------------------------------- /docs/content/docs/tutorials/samples/package_manager_samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/samples/package_manager_samples.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/samples/shadergraph-distortion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/samples/shadergraph-distortion.jpg -------------------------------------------------------------------------------- /docs/content/docs/tutorials/samples/timeline-playback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/samples/timeline-playback.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/scripting-api/api_disable_startloop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/scripting-api/api_disable_startloop.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/scripting-api/editor_playback_add_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/scripting-api/editor_playback_add_event.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/scripting-api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/scripting-api/index.md -------------------------------------------------------------------------------- /docs/content/docs/tutorials/timeline-integration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/timeline-integration/index.md -------------------------------------------------------------------------------- /docs/content/docs/tutorials/timeline-integration/timeline-newgo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/timeline-integration/timeline-newgo.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/timeline-integration/timeline-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/timeline-integration/timeline-open.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/timeline-integration/timeline_add_Clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/timeline-integration/timeline_add_Clip.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/timeline-integration/timeline_add_component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/timeline-integration/timeline_add_component.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/timeline-integration/timeline_adjust_duration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/timeline-integration/timeline_adjust_duration.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/timeline-integration/timeline_assign_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/timeline-integration/timeline_assign_stream.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/timeline-integration/timeline_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/timeline-integration/timeline_create.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/timeline-integration/timeline_create_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/timeline-integration/timeline_create_track.png -------------------------------------------------------------------------------- /docs/content/docs/tutorials/timeline-integration/timeline_open_sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/docs/tutorials/timeline-integration/timeline_open_sequence.png -------------------------------------------------------------------------------- /docs/content/versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/content/versions.md -------------------------------------------------------------------------------- /docs/data/docs-versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/data/docs-versions.yml -------------------------------------------------------------------------------- /docs/functions/hi-from-lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/functions/hi-from-lambda.js -------------------------------------------------------------------------------- /docs/hugo_stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/hugo_stats.json -------------------------------------------------------------------------------- /docs/i18n/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/i18n/en.yaml -------------------------------------------------------------------------------- /docs/layouts/_partials/footer/script-footer-custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/layouts/_partials/footer/script-footer-custom.html -------------------------------------------------------------------------------- /docs/layouts/_partials/head/custom-head.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/layouts/_partials/head/script-header.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/layouts/home.html -------------------------------------------------------------------------------- /docs/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/netlify.toml -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/static/Unity_Package_OpenGraph_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/static/Unity_Package_OpenGraph_logo.png -------------------------------------------------------------------------------- /docs/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildingVolumes/Unity_Geometry_Sequence_Player/HEAD/docs/theme.toml --------------------------------------------------------------------------------