diff --git a/.gitignore b/.gitignore index eb83a8f..78beb69 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,36 @@ +# This .gitignore file should be placed at the root of your Unity project directory +# +# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore +# /[Ll]ibrary/ /[Tt]emp/ /[Oo]bj/ /[Bb]uild/ /[Bb]uilds/ -/Assets/AssetStoreTools* +/[Ll]ogs/ +/[Uu]ser[Ss]ettings/ -# Visual Studio 2015 cache directory -/.vs/ +# MemoryCaptures can get excessive in size. +# They also could contain extremely sensitive data +/[Mm]emoryCaptures/ + +# Asset meta data should only be ignored when the corresponding asset is also ignored +!/[Aa]ssets/**/*.meta + +# Uncomment this line if you wish to ignore the asset store tools plugin +# /[Aa]ssets/AssetStoreTools* + +# Autogenerated Jetbrains Rider plugin +/[Aa]ssets/Plugins/Editor/JetBrains* + +# Visual Studio cache directory +.vs/ + +# Jetbrains Rider cache directory +.idea/ + +# Gradle cache directory +.gradle/ # Autogenerated VS/MD/Consulo solution and project files ExportedObj/ @@ -22,13 +46,29 @@ ExportedObj/ *.booproj *.svd *.pdb +*.mdb +*.opendb +*.VC.db # Unity3D generated meta files *.pidb.meta +*.pdb.meta +*.mdb.meta -# Unity3D Generated File On Crash Reports +# Unity3D generated file on crash reports sysinfo.txt # Builds *.apk +*.aab *.unitypackage + +# Crashlytics generated file +crashlytics-build.properties + +# Packed Addressables +/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin* + +# Temporary auto-generated Android Assets +/[Aa]ssets/[Ss]treamingAssets/aa.meta +/[Aa]ssets/[Ss]treamingAssets/aa/* diff --git a/.vsconfig b/.vsconfig deleted file mode 100644 index f019fd0..0000000 --- a/.vsconfig +++ /dev/null @@ -1,6 +0,0 @@ -{ - "version": "1.0", - "components": [ - "Microsoft.VisualStudio.Workload.ManagedGame" - ] -} diff --git a/Assets/Readme.txt b/Assets/Readme.txt deleted file mode 100644 index 0682770..0000000 --- a/Assets/Readme.txt +++ /dev/null @@ -1,24 +0,0 @@ -Hi. - -This is a tutorial to learn how to implement singleton pattern in Unity. - -You just need to have a preload scene, the preload scene is included in Scenes folder and named _Preload for better naviation. -The _Preload scene must be at first in the Build Settings window. Go to File/Build Settings... and make sure the _Preload scene is at first. - -In the _Preload scene we have a game object named Singleton, this object is the main game object in the whole game that won't destroy on scene changes. -You can add more singleton scripts by attaching them to this singleton game object. - -Then you are can access the singleton scripts and objects in global. - -Also you can run game in any scene you like in development, because the singleton objects will be instantiated at runtime if they aren't available. -But make sure to run the production game from the _Preload scene to use the preconfigured settings and use the inspector. - -Hope you enjoy it. - -Resources: - - https://stackoverflow.com/questions/35890932/unity-game-manager-script-works-only-one-time/35891919#35891919 - https://github.com/UnityCommunity - https://github.com/BayatGames - -Thanks. \ No newline at end of file diff --git a/Assets/Scripts/Runtime/MonoSingleton.cs.meta b/Assets/Scripts/Runtime/MonoSingleton.cs.meta deleted file mode 100644 index 6caa1e7..0000000 --- a/Assets/Scripts/Runtime/MonoSingleton.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: ce49cf29f5faf754289d9c206d19cc66 -timeCreated: 1505546773 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/Runtime/PersistentMonoSingleton.cs.meta b/Assets/Scripts/Runtime/PersistentMonoSingleton.cs.meta deleted file mode 100644 index 1904f06..0000000 --- a/Assets/Scripts/Runtime/PersistentMonoSingleton.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: a6a7895341ab6ce4fa564b3a899ea6e6 -timeCreated: 1505546773 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/Runtime/Singleton.cs.meta b/Assets/Scripts/Runtime/Singleton.cs.meta deleted file mode 100644 index 7ef7e61..0000000 --- a/Assets/Scripts/Runtime/Singleton.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: face7a58eceba034f892c28bd5a18238 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/Runtime/UnityCommunity.UnitySingleton.Runtime.asmdef b/Assets/Scripts/Runtime/UnityCommunity.UnitySingleton.Runtime.asmdef deleted file mode 100644 index 376ee36..0000000 --- a/Assets/Scripts/Runtime/UnityCommunity.UnitySingleton.Runtime.asmdef +++ /dev/null @@ -1,3 +0,0 @@ -{ - "name": "UnityCommunity.UnitySingleton.Runtime" -} diff --git a/Assets/Scripts/Samples/GameManager.cs.meta b/Assets/Scripts/Samples/GameManager.cs.meta deleted file mode 100644 index 0f8fd3b..0000000 --- a/Assets/Scripts/Samples/GameManager.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 0ca764009f215c14caab58653ce7251a -timeCreated: 1505546796 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/Samples/Readme.txt b/Assets/Scripts/Samples/Readme.txt deleted file mode 100644 index 21c0a06..0000000 --- a/Assets/Scripts/Samples/Readme.txt +++ /dev/null @@ -1,13 +0,0 @@ -Hello. - -Here is the supplementary content for the Singleton Pattern tutorial: Scene Singleton Pattern. - -The Scene Singleton Pattern ensures that there is only one instance of a class in a given scene, but it does not require that the instance continues to exist after a scene switch. After switching scenes, the instance you access will be a new one, unique to the current scene. - -This pattern is very useful when you need to manage specific resources or functionality within a single scene, but you don't want these resources or functionality to persist during scene switches. - -To use the Scene Singleton Pattern in the current scene, you just need to call the Instance property of the scene singleton class, following the example of SceneTest.cs. - -Hope you enjoy it. - -Thanks. \ No newline at end of file diff --git a/Assets/Scripts/Samples/SceneGameManager.cs.meta b/Assets/Scripts/Samples/SceneGameManager.cs.meta deleted file mode 100644 index f36773f..0000000 --- a/Assets/Scripts/Samples/SceneGameManager.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 76768780153006f4396967b1083745d3 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/Samples/SceneTest.cs.meta b/Assets/Scripts/Samples/SceneTest.cs.meta deleted file mode 100644 index 3a0f720..0000000 --- a/Assets/Scripts/Samples/SceneTest.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: f739991b0867d2442926af1d512bf347 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scripts/Samples/Test.cs.meta b/Assets/Scripts/Samples/Test.cs.meta deleted file mode 100644 index 660178d..0000000 --- a/Assets/Scripts/Samples/Test.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2 -guid: 3830e8558eabcdb46914e81e3114bf45 -timeCreated: 1505547424 -licenseType: Free -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..2383a9f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,74 @@ + +# Change Log + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/) +and this project adheres to [Semantic Versioning](http://semver.org/). + +## [3.0.0] - 2025-02-20 + +Full conversion of project to UPM Package + +### Added + +- Change log +- Included support for Unity 6 with backward compatibility + +## Changed + +- Project structure for UPM package setup with instructions on installation + +## Fixed + +- Unused Imports + +## [2.0.1] - 2024-07-07 + +### Fixed + +- Instance caused a stack overflow + +## [2.0.0] - 2024-01-23 + +Major revision of the singletons implementation + +### Added + +- Added `PersistentMonoSingleton` which is persistent across scenes +- Added `ISingleton` interface for unifying the methods and calls +- Added assembly definition +- Added namespace (`UnityCommunity.UnitySingleton`) + +### Changed + +- Made `MonoSingleton` non-persistent + +## [1.2.1] - 2024-01-22 + +### Fixed + +- Added missing methods for `MonoSingleton` + +## [1.2.0] - 2017-12-2 + +### Added + +- Init for existing instance and basic editor mode support + +## [1.1.0] - 2023-11-27 + +### Added + +- Scene `Singleton` (or Local Singleton) for non-persistent singletons across scene changes +- `MonoSingleton` to quickly extend `MonoBehaviour` as singletons + +### Changed + +- Extended Generic `Singleton` class with additional virtual functions (earlier this was extending `MonoBehaviour`) + +## [1.0.0] - 2017-09-16 + +### Added + +- Base files for the project with a generic `Singleton` diff --git a/Assets/Scripts/Samples/Readme.txt.meta b/CHANGELOG.md.meta similarity index 75% rename from Assets/Scripts/Samples/Readme.txt.meta rename to CHANGELOG.md.meta index baeadf8..5bfa93f 100644 --- a/Assets/Scripts/Samples/Readme.txt.meta +++ b/CHANGELOG.md.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b5321323480504347b7440fcd4c4a103 +guid: f0e376553447c434496b242ff15d23d8 TextScriptImporter: externalObjects: {} userData: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..d5f29a9 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,39 @@ +# Contributing to Unity Singleton + +Thank you for considering contributing to Unity Singleton! We welcome contributions from the community to help improve this project. + +## How to Contribute + +1. **Fork the Repository**: Start by forking the repository to your GitHub account. + +2. **Clone the Repository**: Clone the forked repository to your local machine. + ```sh + git clone https://github.com/**your-username**/unitysingleton.git + ``` + +3. **Create a Branch**: Create a new branch for your feature or bugfix. + ```sh + git checkout -b **feature-name** + ``` + +4. **Make Changes**: Make your changes to the codebase. + +5. **Commit Changes**: Commit your changes with a clear and descriptive commit message. + ```sh + git commit -m "Description of the feature or fix" + ``` + +6. **Push Changes**: Push your changes to your forked repository. + ```sh + git push origin feature-name + ``` + +7. **Create a Pull Request**: Open a pull request to the main repository. Provide a clear description of your changes and any related issues. + +## Reporting Issues + +If you encounter any issues, please report them on the issues tab. Provide as much detail as possible to help us resolve the issue quickly. + +## Getting Help + +If you need help or have any questions, feel free to reach out by opening an issue or joining our community discussions. diff --git a/Assets/Readme.txt.meta b/CONTRIBUTING.md.meta similarity index 54% rename from Assets/Readme.txt.meta rename to CONTRIBUTING.md.meta index 551f09f..4568a67 100644 --- a/Assets/Readme.txt.meta +++ b/CONTRIBUTING.md.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 -guid: c300d2a197611da48ac6bc2d3101d20f -timeCreated: 1505547094 -licenseType: Free +guid: 24b5356e887ed9b4c97f35c6691bbec6 TextScriptImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/LICENSE.meta b/LICENSE.meta new file mode 100644 index 0000000..b14077e --- /dev/null +++ b/LICENSE.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 8548c2c59835a1947b46b3d1a5f08941 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Logs/AssetImportWorker0.log b/Logs/AssetImportWorker0.log deleted file mode 100644 index a4c316d..0000000 --- a/Logs/AssetImportWorker0.log +++ /dev/null @@ -1,910 +0,0 @@ -Using pre-set license -Built from '2022.3/staging' branch; Version is '2022.3.17f1 (4fc78088f837) revision 5228416'; Using compiler version '192829333'; Build Type 'Release' -OS: 'Windows 11 (10.0.22621) 64bit Professional' Language: 'en' Physical Memory: 32509 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 - -COMMAND LINE ARGUMENTS: -D:\Program Files\Unity\2022.3.17f1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker0 --projectPath -D:/Projects/UnityCommunity/UnitySingleton --logFile -Logs/AssetImportWorker0.log --srvPort -62052 -Successfully changed project path to: D:/Projects/UnityCommunity/UnitySingleton -D:/Projects/UnityCommunity/UnitySingleton -[UnityMemory] Configuration Parameters - Can be set up in boot.config - "memorysetup-bucket-allocator-granularity=16" - "memorysetup-bucket-allocator-bucket-count=8" - "memorysetup-bucket-allocator-block-size=33554432" - "memorysetup-bucket-allocator-block-count=8" - "memorysetup-main-allocator-block-size=16777216" - "memorysetup-thread-allocator-block-size=16777216" - "memorysetup-gfx-main-allocator-block-size=16777216" - "memorysetup-gfx-thread-allocator-block-size=16777216" - "memorysetup-cache-allocator-block-size=4194304" - "memorysetup-typetree-allocator-block-size=2097152" - "memorysetup-profiler-bucket-allocator-granularity=16" - "memorysetup-profiler-bucket-allocator-bucket-count=8" - "memorysetup-profiler-bucket-allocator-block-size=33554432" - "memorysetup-profiler-bucket-allocator-block-count=8" - "memorysetup-profiler-allocator-block-size=16777216" - "memorysetup-profiler-editor-allocator-block-size=1048576" - "memorysetup-temp-allocator-size-main=16777216" - "memorysetup-job-temp-allocator-block-size=2097152" - "memorysetup-job-temp-allocator-block-size-background=1048576" - "memorysetup-job-temp-allocator-reduction-small-platforms=262144" - "memorysetup-allocator-temp-initial-block-size-main=262144" - "memorysetup-allocator-temp-initial-block-size-worker=262144" - "memorysetup-temp-allocator-size-background-worker=32768" - "memorysetup-temp-allocator-size-job-worker=262144" - "memorysetup-temp-allocator-size-preload-manager=33554432" - "memorysetup-temp-allocator-size-nav-mesh-worker=65536" - "memorysetup-temp-allocator-size-audio-worker=65536" - "memorysetup-temp-allocator-size-cloud-worker=32768" - "memorysetup-temp-allocator-size-gi-baking-worker=262144" - "memorysetup-temp-allocator-size-gfx=262144" -Player connection [11008] Host "[IP] 172.23.224.1 [Port] 0 [Flags] 2 [Guid] 2313017142 [EditorId] 2313017142 [Version] 1048832 [Id] WindowsEditor(7,Hasan-White-PC) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... - -Player connection [11008] Host "[IP] 172.23.224.1 [Port] 0 [Flags] 2 [Guid] 2313017142 [EditorId] 2313017142 [Version] 1048832 [Id] WindowsEditor(7,Hasan-White-PC) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... - -[Physics::Module] Initialized MultithreadedJobDispatcher with 23 workers. -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2022.3.17f1 (4fc78088f837) -[Subsystems] Discovering subsystems at path D:/Program Files/Unity/2022.3.17f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/Projects/UnityCommunity/UnitySingleton/Assets -GfxDevice: creating device client; threaded=0; jobified=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce GTX 1060 6GB (ID=0x1c03) - Vendor: NVIDIA - VRAM: 6044 MB - Driver: 31.0.15.3667 -Initialize mono -Mono path[0] = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/Managed' -Mono path[1] = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -Mono config path = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56576 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.002390 seconds. -- Loaded All Assemblies, in 0.227 seconds -Native extension for WindowsStandalone target not found -[usbmuxd] Start listen thread -[usbmuxd] Listen thread started -Native extension for iOS target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 357 ms -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.566 seconds -Domain Reload Profiling: 793ms - BeginReloadAssembly (69ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (31ms) - LoadAllAssembliesAndSetupDomain (101ms) - LoadAssemblies (69ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (100ms) - TypeCache.Refresh (99ms) - TypeCache.ScanAssembly (90ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (566ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (530ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (428ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (70ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.151 seconds -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.232 seconds -Domain Reload Profiling: 384ms - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (15ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (14ms) - LoadAllAssembliesAndSetupDomain (17ms) - LoadAssemblies (53ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (14ms) - TypeCache.Refresh (12ms) - TypeCache.ScanAssembly (6ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (233ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (143ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (14ms) - ProcessInitializeOnLoadAttributes (91ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 14 Unused Serialized files (Serialized files now loaded: 0) -Unloading 3 unused Assets / (48.7 KB). Loaded Objects now: 488. -Memory consumption went from 57.8 MB to 57.8 MB. -Total: 2.307800 ms (FindLiveObjects: 0.030900 ms CreateObjectMapping: 0.004100 ms MarkObjects: 2.204100 ms DeleteObjects: 0.067700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> -======================================================================== -Received Import Request. - Time since last request: 530.738982 seconds. - path: Assets/Scenes/Game.unity - artifactKey: Guid(499d8b731179029439d2ed711317b688) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) -Start importing Assets/Scenes/Game.unity using Guid(499d8b731179029439d2ed711317b688) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! - -> (artifact id: '52f0868c40fe2de684025cb544e69f5c') in 0.055706 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.189 seconds -Refreshing native plugins compatible for Editor in 0.08 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.203 seconds -Domain Reload Profiling: 392ms - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (14ms) - RebuildCommonClasses (17ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (58ms) - LoadAssemblies (99ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (9ms) - TypeCache.Refresh (7ms) - TypeCache.ScanAssembly (4ms) - ScanForSourceGeneratedMonoScriptInfo (1ms) - ResolveRequiredComponents (0ms) - FinalizeReload (203ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (131ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (20ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (17ms) - ProcessInitializeOnLoadAttributes (78ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Refreshing native plugins compatible for Editor in 0.14 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 331 Unused Serialized files (Serialized files now loaded: 0) -Unloading 3 unused Assets / (23.8 KB). Loaded Objects now: 815. -Memory consumption went from 65.3 MB to 65.3 MB. -Total: 1.812200 ms (FindLiveObjects: 0.038100 ms CreateObjectMapping: 0.023500 ms MarkObjects: 1.726200 ms DeleteObjects: 0.023300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.172 seconds -Refreshing native plugins compatible for Editor in 0.12 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.216 seconds -Domain Reload Profiling: 388ms - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (11ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (13ms) - LoadAllAssembliesAndSetupDomain (53ms) - LoadAssemblies (95ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (5ms) - TypeCache.Refresh (3ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (216ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (129ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (19ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (18ms) - ProcessInitializeOnLoadAttributes (77ms) - ProcessInitializeOnLoadMethodAttributes (13ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.09 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 332 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 818. -Memory consumption went from 67.6 MB to 67.6 MB. -Total: 1.637000 ms (FindLiveObjects: 0.038500 ms CreateObjectMapping: 0.007900 ms MarkObjects: 1.572700 ms DeleteObjects: 0.016900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.172 seconds -Refreshing native plugins compatible for Editor in 0.12 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.219 seconds -Domain Reload Profiling: 391ms - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (12ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (13ms) - LoadAllAssembliesAndSetupDomain (52ms) - LoadAssemblies (95ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (5ms) - TypeCache.Refresh (3ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (220ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (130ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (19ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (18ms) - ProcessInitializeOnLoadAttributes (78ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.17 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 332 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 821. -Memory consumption went from 69.5 MB to 69.5 MB. -Total: 1.684100 ms (FindLiveObjects: 0.040300 ms CreateObjectMapping: 0.008200 ms MarkObjects: 1.615000 ms DeleteObjects: 0.019900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.172 seconds -Refreshing native plugins compatible for Editor in 0.09 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.210 seconds -Domain Reload Profiling: 381ms - BeginReloadAssembly (79ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (10ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (13ms) - LoadAllAssembliesAndSetupDomain (55ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (5ms) - TypeCache.Refresh (3ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (210ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (125ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (18ms) - ProcessInitializeOnLoadAttributes (76ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.19 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 333 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.9 KB). Loaded Objects now: 825. -Memory consumption went from 71.5 MB to 71.5 MB. -Total: 1.568400 ms (FindLiveObjects: 0.039400 ms CreateObjectMapping: 0.008400 ms MarkObjects: 1.499900 ms DeleteObjects: 0.020000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.201 seconds -Refreshing native plugins compatible for Editor in 0.12 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.216 seconds -Domain Reload Profiling: 417ms - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (16ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (16ms) - LoadAllAssembliesAndSetupDomain (70ms) - LoadAssemblies (113ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (5ms) - TypeCache.Refresh (4ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (216ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (131ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (17ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (18ms) - ProcessInitializeOnLoadAttributes (81ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.10 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 333 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 829. -Memory consumption went from 73.5 MB to 73.5 MB. -Total: 1.749900 ms (FindLiveObjects: 0.042800 ms CreateObjectMapping: 0.008800 ms MarkObjects: 1.672000 ms DeleteObjects: 0.025200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.176 seconds -Refreshing native plugins compatible for Editor in 0.12 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.215 seconds -Domain Reload Profiling: 391ms - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (11ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (15ms) - LoadAllAssembliesAndSetupDomain (54ms) - LoadAssemblies (98ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (5ms) - TypeCache.Refresh (3ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (216ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (127ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (18ms) - ProcessInitializeOnLoadAttributes (76ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Refreshing native plugins compatible for Editor in 0.09 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 333 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 832. -Memory consumption went from 75.4 MB to 75.4 MB. -Total: 1.594600 ms (FindLiveObjects: 0.036300 ms CreateObjectMapping: 0.008000 ms MarkObjects: 1.530200 ms DeleteObjects: 0.019300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.168 seconds -Refreshing native plugins compatible for Editor in 0.11 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.213 seconds -Domain Reload Profiling: 382ms - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (11ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (13ms) - LoadAllAssembliesAndSetupDomain (50ms) - LoadAssemblies (92ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (5ms) - TypeCache.Refresh (3ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (214ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (128ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (19ms) - ProcessInitializeOnLoadAttributes (77ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.15 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 333 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 835. -Memory consumption went from 77.4 MB to 77.3 MB. -Total: 1.628400 ms (FindLiveObjects: 0.046700 ms CreateObjectMapping: 0.009700 ms MarkObjects: 1.551400 ms DeleteObjects: 0.019800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.175 seconds -Refreshing native plugins compatible for Editor in 0.09 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.213 seconds -Domain Reload Profiling: 389ms - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (14ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (13ms) - LoadAllAssembliesAndSetupDomain (53ms) - LoadAssemblies (97ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (4ms) - TypeCache.Refresh (3ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (213ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (130ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (19ms) - ProcessInitializeOnLoadAttributes (78ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.14 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 333 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 838. -Memory consumption went from 79.3 MB to 79.2 MB. -Total: 1.452900 ms (FindLiveObjects: 0.071700 ms CreateObjectMapping: 0.009600 ms MarkObjects: 1.354500 ms DeleteObjects: 0.016400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.167 seconds -Refreshing native plugins compatible for Editor in 0.12 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.214 seconds -Domain Reload Profiling: 381ms - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (10ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (12ms) - LoadAllAssembliesAndSetupDomain (49ms) - LoadAssemblies (92ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (5ms) - TypeCache.Refresh (3ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (214ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (128ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (19ms) - ProcessInitializeOnLoadAttributes (78ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.09 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 333 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 841. -Memory consumption went from 81.2 MB to 81.2 MB. -Total: 1.393000 ms (FindLiveObjects: 0.040800 ms CreateObjectMapping: 0.008100 ms MarkObjects: 1.324400 ms DeleteObjects: 0.018900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.170 seconds -Refreshing native plugins compatible for Editor in 0.09 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.214 seconds -Domain Reload Profiling: 384ms - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (10ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (13ms) - LoadAllAssembliesAndSetupDomain (51ms) - LoadAssemblies (94ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (5ms) - TypeCache.Refresh (4ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (214ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (129ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (17ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (17ms) - ProcessInitializeOnLoadAttributes (78ms) - ProcessInitializeOnLoadMethodAttributes (13ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.13 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 333 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 844. -Memory consumption went from 83.1 MB to 83.1 MB. -Total: 1.956600 ms (FindLiveObjects: 0.048600 ms CreateObjectMapping: 0.009200 ms MarkObjects: 1.872100 ms DeleteObjects: 0.025600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.169 seconds -Refreshing native plugins compatible for Editor in 0.22 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.213 seconds -Domain Reload Profiling: 382ms - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (11ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (12ms) - LoadAllAssembliesAndSetupDomain (50ms) - LoadAssemblies (94ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (5ms) - TypeCache.Refresh (4ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (213ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (127ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (18ms) - ProcessInitializeOnLoadAttributes (76ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.18 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 333 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 847. -Memory consumption went from 85.1 MB to 85.0 MB. -Total: 1.501100 ms (FindLiveObjects: 0.039100 ms CreateObjectMapping: 0.008700 ms MarkObjects: 1.435600 ms DeleteObjects: 0.017000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> diff --git a/Logs/AssetImportWorker1.log b/Logs/AssetImportWorker1.log deleted file mode 100644 index 50a9d5f..0000000 --- a/Logs/AssetImportWorker1.log +++ /dev/null @@ -1,265 +0,0 @@ -Using pre-set license -Built from '2022.3/staging' branch; Version is '2022.3.17f1 (4fc78088f837) revision 5228416'; Using compiler version '192829333'; Build Type 'Release' -OS: 'Windows 11 (10.0.22621) 64bit Professional' Language: 'en' Physical Memory: 32509 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 - -COMMAND LINE ARGUMENTS: -D:\Program Files\Unity\2022.3.17f1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker1 --projectPath -D:/Projects/UnityCommunity/UnitySingleton --logFile -Logs/AssetImportWorker1.log --srvPort -62052 -Successfully changed project path to: D:/Projects/UnityCommunity/UnitySingleton -D:/Projects/UnityCommunity/UnitySingleton -[UnityMemory] Configuration Parameters - Can be set up in boot.config - "memorysetup-bucket-allocator-granularity=16" - "memorysetup-bucket-allocator-bucket-count=8" - "memorysetup-bucket-allocator-block-size=33554432" - "memorysetup-bucket-allocator-block-count=8" - "memorysetup-main-allocator-block-size=16777216" - "memorysetup-thread-allocator-block-size=16777216" - "memorysetup-gfx-main-allocator-block-size=16777216" - "memorysetup-gfx-thread-allocator-block-size=16777216" - "memorysetup-cache-allocator-block-size=4194304" - "memorysetup-typetree-allocator-block-size=2097152" - "memorysetup-profiler-bucket-allocator-granularity=16" - "memorysetup-profiler-bucket-allocator-bucket-count=8" - "memorysetup-profiler-bucket-allocator-block-size=33554432" - "memorysetup-profiler-bucket-allocator-block-count=8" - "memorysetup-profiler-allocator-block-size=16777216" - "memorysetup-profiler-editor-allocator-block-size=1048576" - "memorysetup-temp-allocator-size-main=16777216" - "memorysetup-job-temp-allocator-block-size=2097152" - "memorysetup-job-temp-allocator-block-size-background=1048576" - "memorysetup-job-temp-allocator-reduction-small-platforms=262144" - "memorysetup-allocator-temp-initial-block-size-main=262144" - "memorysetup-allocator-temp-initial-block-size-worker=262144" - "memorysetup-temp-allocator-size-background-worker=32768" - "memorysetup-temp-allocator-size-job-worker=262144" - "memorysetup-temp-allocator-size-preload-manager=33554432" - "memorysetup-temp-allocator-size-nav-mesh-worker=65536" - "memorysetup-temp-allocator-size-audio-worker=65536" - "memorysetup-temp-allocator-size-cloud-worker=32768" - "memorysetup-temp-allocator-size-gi-baking-worker=262144" - "memorysetup-temp-allocator-size-gfx=262144" -Player connection [54104] Host "[IP] 172.23.224.1 [Port] 0 [Flags] 2 [Guid] 2734677769 [EditorId] 2734677769 [Version] 1048832 [Id] WindowsEditor(7,Hasan-White-PC) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... - -Player connection [54104] Host "[IP] 172.23.224.1 [Port] 0 [Flags] 2 [Guid] 2734677769 [EditorId] 2734677769 [Version] 1048832 [Id] WindowsEditor(7,Hasan-White-PC) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... - -[Physics::Module] Initialized MultithreadedJobDispatcher with 23 workers. -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2022.3.17f1 (4fc78088f837) -[Subsystems] Discovering subsystems at path D:/Program Files/Unity/2022.3.17f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/Projects/UnityCommunity/UnitySingleton/Assets -GfxDevice: creating device client; threaded=0; jobified=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce GTX 1060 6GB (ID=0x1c03) - Vendor: NVIDIA - VRAM: 6044 MB - Driver: 31.0.15.3667 -Initialize mono -Mono path[0] = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/Managed' -Mono path[1] = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -Mono config path = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56544 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.002447 seconds. -- Loaded All Assemblies, in 0.216 seconds -Native extension for WindowsStandalone target not found -[usbmuxd] Start listen thread -[usbmuxd] Listen thread started -Native extension for iOS target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 355 ms -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.556 seconds -Domain Reload Profiling: 772ms - BeginReloadAssembly (64ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - RebuildCommonClasses (23ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (33ms) - LoadAllAssembliesAndSetupDomain (88ms) - LoadAssemblies (64ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (86ms) - TypeCache.Refresh (85ms) - TypeCache.ScanAssembly (77ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (556ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (521ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (422ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (68ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.148 seconds -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.233 seconds -Domain Reload Profiling: 381ms - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (13ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (14ms) - LoadAllAssembliesAndSetupDomain (15ms) - LoadAssemblies (51ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (13ms) - TypeCache.Refresh (12ms) - TypeCache.ScanAssembly (6ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (233ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (144ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (13ms) - ProcessInitializeOnLoadAttributes (91ms) - ProcessInitializeOnLoadMethodAttributes (15ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 14 Unused Serialized files (Serialized files now loaded: 0) -Unloading 3 unused Assets / (48.7 KB). Loaded Objects now: 488. -Memory consumption went from 57.8 MB to 57.8 MB. -Total: 1.413200 ms (FindLiveObjects: 0.033400 ms CreateObjectMapping: 0.002700 ms MarkObjects: 1.327800 ms DeleteObjects: 0.048600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> -======================================================================== -Received Import Request. - Time since last request: 530.713748 seconds. - path: Assets/Readme.txt - artifactKey: Guid(c300d2a197611da48ac6bc2d3101d20f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) -Start importing Assets/Readme.txt using Guid(c300d2a197611da48ac6bc2d3101d20f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! - -> (artifact id: 'cc259a6142cb1ad963e3c5f2696b0ac6') in 0.061119 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.188 seconds -Refreshing native plugins compatible for Editor in 0.11 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.204 seconds -Domain Reload Profiling: 392ms - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (12ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (59ms) - LoadAssemblies (100ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (9ms) - TypeCache.Refresh (7ms) - TypeCache.ScanAssembly (4ms) - ScanForSourceGeneratedMonoScriptInfo (1ms) - ResolveRequiredComponents (0ms) - FinalizeReload (204ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (132ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (17ms) - ProcessInitializeOnLoadAttributes (78ms) - ProcessInitializeOnLoadMethodAttributes (13ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.08 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 331 Unused Serialized files (Serialized files now loaded: 0) -Unloading 3 unused Assets / (23.8 KB). Loaded Objects now: 815. -Memory consumption went from 65.3 MB to 65.3 MB. -Total: 1.555500 ms (FindLiveObjects: 0.038500 ms CreateObjectMapping: 0.008200 ms MarkObjects: 1.489500 ms DeleteObjects: 0.018900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -Editor requested this worker to shutdown with reason: Scaling down because of idle timeout -TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: The I/O operation has been aborted because of either a thread exit or an application request. -AssetImportWorker is now disconnected from the server -Process exiting -Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/Logs/AssetImportWorker2.log b/Logs/AssetImportWorker2.log deleted file mode 100644 index 7a443cf..0000000 --- a/Logs/AssetImportWorker2.log +++ /dev/null @@ -1,1134 +0,0 @@ -Using pre-set license -Built from '2022.3/staging' branch; Version is '2022.3.17f1 (4fc78088f837) revision 5228416'; Using compiler version '192829333'; Build Type 'Release' -OS: 'Windows 11 (10.0.22621) 64bit Professional' Language: 'en' Physical Memory: 32509 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 - -COMMAND LINE ARGUMENTS: -D:\Program Files\Unity\2022.3.17f1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker2 --projectPath -D:/Projects/UnityCommunity/UnitySingleton --logFile -Logs/AssetImportWorker2.log --srvPort -62052 -Successfully changed project path to: D:/Projects/UnityCommunity/UnitySingleton -D:/Projects/UnityCommunity/UnitySingleton -[UnityMemory] Configuration Parameters - Can be set up in boot.config - "memorysetup-bucket-allocator-granularity=16" - "memorysetup-bucket-allocator-bucket-count=8" - "memorysetup-bucket-allocator-block-size=33554432" - "memorysetup-bucket-allocator-block-count=8" - "memorysetup-main-allocator-block-size=16777216" - "memorysetup-thread-allocator-block-size=16777216" - "memorysetup-gfx-main-allocator-block-size=16777216" - "memorysetup-gfx-thread-allocator-block-size=16777216" - "memorysetup-cache-allocator-block-size=4194304" - "memorysetup-typetree-allocator-block-size=2097152" - "memorysetup-profiler-bucket-allocator-granularity=16" - "memorysetup-profiler-bucket-allocator-bucket-count=8" - "memorysetup-profiler-bucket-allocator-block-size=33554432" - "memorysetup-profiler-bucket-allocator-block-count=8" - "memorysetup-profiler-allocator-block-size=16777216" - "memorysetup-profiler-editor-allocator-block-size=1048576" - "memorysetup-temp-allocator-size-main=16777216" - "memorysetup-job-temp-allocator-block-size=2097152" - "memorysetup-job-temp-allocator-block-size-background=1048576" - "memorysetup-job-temp-allocator-reduction-small-platforms=262144" - "memorysetup-allocator-temp-initial-block-size-main=262144" - "memorysetup-allocator-temp-initial-block-size-worker=262144" - "memorysetup-temp-allocator-size-background-worker=32768" - "memorysetup-temp-allocator-size-job-worker=262144" - "memorysetup-temp-allocator-size-preload-manager=33554432" - "memorysetup-temp-allocator-size-nav-mesh-worker=65536" - "memorysetup-temp-allocator-size-audio-worker=65536" - "memorysetup-temp-allocator-size-cloud-worker=32768" - "memorysetup-temp-allocator-size-gi-baking-worker=262144" - "memorysetup-temp-allocator-size-gfx=262144" -Player connection [44280] Host "[IP] 172.23.224.1 [Port] 0 [Flags] 2 [Guid] 4283927936 [EditorId] 4283927936 [Version] 1048832 [Id] WindowsEditor(7,Hasan-White-PC) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... - -Player connection [44280] Host "[IP] 172.23.224.1 [Port] 0 [Flags] 2 [Guid] 4283927936 [EditorId] 4283927936 [Version] 1048832 [Id] WindowsEditor(7,Hasan-White-PC) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... - -[Physics::Module] Initialized MultithreadedJobDispatcher with 23 workers. -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2022.3.17f1 (4fc78088f837) -[Subsystems] Discovering subsystems at path D:/Program Files/Unity/2022.3.17f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/Projects/UnityCommunity/UnitySingleton/Assets -GfxDevice: creating device client; threaded=0; jobified=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce GTX 1060 6GB (ID=0x1c03) - Vendor: NVIDIA - VRAM: 6044 MB - Driver: 31.0.15.3667 -Initialize mono -Mono path[0] = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/Managed' -Mono path[1] = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -Mono config path = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56212 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.004511 seconds. -- Loaded All Assemblies, in 0.225 seconds -Native extension for WindowsStandalone target not found -[usbmuxd] Start listen thread -[usbmuxd] Listen thread started -Native extension for iOS target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 211 ms -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.424 seconds -Domain Reload Profiling: 649ms - BeginReloadAssembly (68ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - RebuildCommonClasses (23ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (35ms) - LoadAllAssembliesAndSetupDomain (91ms) - LoadAssemblies (68ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (90ms) - TypeCache.Refresh (89ms) - TypeCache.ScanAssembly (79ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (424ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (390ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (286ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (73ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.140 seconds -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.228 seconds -Domain Reload Profiling: 369ms - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (15ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (12ms) - LoadAllAssembliesAndSetupDomain (16ms) - LoadAssemblies (52ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (13ms) - TypeCache.Refresh (12ms) - TypeCache.ScanAssembly (6ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (229ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (146ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (13ms) - ProcessInitializeOnLoadAttributes (93ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 14 Unused Serialized files (Serialized files now loaded: 0) -Unloading 3 unused Assets / (48.9 KB). Loaded Objects now: 488. -Memory consumption went from 57.9 MB to 57.8 MB. -Total: 2.093200 ms (FindLiveObjects: 0.035700 ms CreateObjectMapping: 0.003900 ms MarkObjects: 1.984100 ms DeleteObjects: 0.068000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> -======================================================================== -Received Import Request. - Time since last request: 530.740496 seconds. - path: Assets/Scripts/GameManager.cs - artifactKey: Guid(0ca764009f215c14caab58653ce7251a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) -Start importing Assets/Scripts/GameManager.cs using Guid(0ca764009f215c14caab58653ce7251a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! - -> (artifact id: '364ee6512dd14dcd4c578380d0a06d1b') in 0.089734 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.191 seconds -Refreshing native plugins compatible for Editor in 0.08 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.201 seconds -Domain Reload Profiling: 392ms - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (12ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (58ms) - LoadAssemblies (100ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (10ms) - TypeCache.Refresh (8ms) - TypeCache.ScanAssembly (4ms) - ScanForSourceGeneratedMonoScriptInfo (1ms) - ResolveRequiredComponents (0ms) - FinalizeReload (201ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (129ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (19ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (18ms) - ProcessInitializeOnLoadAttributes (78ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Refreshing native plugins compatible for Editor in 0.11 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 331 Unused Serialized files (Serialized files now loaded: 0) -Unloading 3 unused Assets / (23.8 KB). Loaded Objects now: 815. -Memory consumption went from 65.3 MB to 65.3 MB. -Total: 1.485300 ms (FindLiveObjects: 0.038700 ms CreateObjectMapping: 0.008500 ms MarkObjects: 1.420800 ms DeleteObjects: 0.016400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Import Request. - Time since last request: 80.777758 seconds. - path: Assets/Scenes - artifactKey: Guid(f7976d5cdeac54d44a4a18cefb75b672) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes using Guid(f7976d5cdeac54d44a4a18cefb75b672) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ba24be0bc230a9c06e77e2db62dd63db') in 0.001438 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 2.225103 seconds. - path: Assets/Scripts/MonoSingleton.cs - artifactKey: Guid(ce49cf29f5faf754289d9c206d19cc66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MonoSingleton.cs using Guid(ce49cf29f5faf754289d9c206d19cc66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9245b8615d69b03f6ec25a9e35f8092b') in 0.000317 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 17.750718 seconds. - path: Assets/Scripts/SceneSingleton - artifactKey: Guid(e908ba46bbf585e47b1ae4539549e29c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/SceneSingleton using Guid(e908ba46bbf585e47b1ae4539549e29c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3f5cbbb326d7c33670527ce4161d8852') in 0.000336 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 3.038099 seconds. - path: Assets/Scripts/SceneSingleton/SceneSingleton.cs - artifactKey: Guid(122ad7d0387233a4cb949b8c621bd8f7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/SceneSingleton/SceneSingleton.cs using Guid(122ad7d0387233a4cb949b8c621bd8f7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4a64960032b813d52aedb1bcbf5ffc90') in 0.000361 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 38.338583 seconds. - path: Assets/Scripts/Singleton.cs - artifactKey: Guid(face7a58eceba034f892c28bd5a18238) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Singleton.cs using Guid(face7a58eceba034f892c28bd5a18238) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '92e40d4769c00023475ccd354c74a0b3') in 0.000454 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 13.354217 seconds. - path: Assets - artifactKey: Guid(00000000000000001000000000000000) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets using Guid(00000000000000001000000000000000) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a4fe85251aa2e89732c359432baa2c3') in 0.000272 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.172 seconds -Refreshing native plugins compatible for Editor in 0.09 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.214 seconds -Domain Reload Profiling: 386ms - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (11ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (13ms) - LoadAllAssembliesAndSetupDomain (53ms) - LoadAssemblies (95ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (5ms) - TypeCache.Refresh (3ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (214ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (128ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (19ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (18ms) - ProcessInitializeOnLoadAttributes (76ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.10 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 331 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 818. -Memory consumption went from 67.4 MB to 67.3 MB. -Total: 1.475200 ms (FindLiveObjects: 0.037900 ms CreateObjectMapping: 0.008200 ms MarkObjects: 1.410200 ms DeleteObjects: 0.018300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Import Request. - Time since last request: 98.938553 seconds. - path: Assets/Scripts/GameManager.cs - artifactKey: Guid(0ca764009f215c14caab58653ce7251a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GameManager.cs using Guid(0ca764009f215c14caab58653ce7251a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '40be114323b2b2c23e816f41a129d99d') in 0.001463 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.172 seconds -Refreshing native plugins compatible for Editor in 0.10 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.218 seconds -Domain Reload Profiling: 391ms - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (12ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (12ms) - LoadAllAssembliesAndSetupDomain (53ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (4ms) - TypeCache.Refresh (3ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (218ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (129ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (19ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (18ms) - ProcessInitializeOnLoadAttributes (78ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.08 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 331 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 821. -Memory consumption went from 69.3 MB to 69.3 MB. -Total: 1.535600 ms (FindLiveObjects: 0.035600 ms CreateObjectMapping: 0.008200 ms MarkObjects: 1.474200 ms DeleteObjects: 0.017000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Import Request. - Time since last request: 178.440680 seconds. - path: Assets/Scripts - artifactKey: Guid(aaa3a38b294872e429be3a5a74721fa3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts using Guid(aaa3a38b294872e429be3a5a74721fa3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '21895830e262f091e680f0ef4710c6c8') in 0.001319 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 7.177258 seconds. - path: Assets/Scripts/ISingleton.cs - artifactKey: Guid(1e65ccf68dac32144b7b90ab5ad00d8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/ISingleton.cs using Guid(1e65ccf68dac32144b7b90ab5ad00d8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4e6c66d73165413bbb39e483112580b4') in 0.000445 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.171 seconds -Refreshing native plugins compatible for Editor in 0.12 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.210 seconds -Domain Reload Profiling: 382ms - BeginReloadAssembly (79ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (11ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (13ms) - LoadAllAssembliesAndSetupDomain (55ms) - LoadAssemblies (95ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (5ms) - TypeCache.Refresh (3ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (210ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (126ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (18ms) - ProcessInitializeOnLoadAttributes (76ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.08 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 332 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 825. -Memory consumption went from 71.2 MB to 71.2 MB. -Total: 1.566400 ms (FindLiveObjects: 0.040100 ms CreateObjectMapping: 0.008200 ms MarkObjects: 1.502500 ms DeleteObjects: 0.014700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Import Request. - Time since last request: 1.951471 seconds. - path: Assets/Scripts/ISingleton.cs - artifactKey: Guid(1e65ccf68dac32144b7b90ab5ad00d8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/ISingleton.cs using Guid(1e65ccf68dac32144b7b90ab5ad00d8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c734f1f85352f98aa9977a2dfb3afcc9') in 0.001130 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 1631.836589 seconds. - path: Assets/Scripts/MonoSingleton.cs - artifactKey: Guid(ce49cf29f5faf754289d9c206d19cc66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MonoSingleton.cs using Guid(ce49cf29f5faf754289d9c206d19cc66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '839e5cf7ccd99b9d715362833cfcc1b5') in 0.000528 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 1.415648 seconds. - path: Assets/Scripts/MonoSingleton1.cs - artifactKey: Guid(a6a7895341ab6ce4fa564b3a899ea6e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MonoSingleton1.cs using Guid(a6a7895341ab6ce4fa564b3a899ea6e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '836dfdd923cc6133e2e5edfaac68c097') in 0.000317 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 8.485270 seconds. - path: Assets/Scripts/PersistentMonoSingleton.cs - artifactKey: Guid(a6a7895341ab6ce4fa564b3a899ea6e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/PersistentMonoSingleton.cs using Guid(a6a7895341ab6ce4fa564b3a899ea6e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '173519470de815ec6dd5efa50e794f35') in 0.000298 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 336.846161 seconds. - path: Assets/Scripts/PersistentMonoBehaviourSingleton.cs - artifactKey: Guid(a6a7895341ab6ce4fa564b3a899ea6e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/PersistentMonoBehaviourSingleton.cs using Guid(a6a7895341ab6ce4fa564b3a899ea6e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '806cf7b4a4a72f2af56e26f79b004c9c') in 0.000681 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 5.897212 seconds. - path: Assets/Scripts/SceneSingleton/SceneTest.cs - artifactKey: Guid(f739991b0867d2442926af1d512bf347) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/SceneSingleton/SceneTest.cs using Guid(f739991b0867d2442926af1d512bf347) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e02c0087119fa286ec3f8962d80b6f29') in 0.000351 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 2.086699 seconds. - path: Assets/Scripts/SceneSingleton/SceneGameManager.cs - artifactKey: Guid(76768780153006f4396967b1083745d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/SceneSingleton/SceneGameManager.cs using Guid(76768780153006f4396967b1083745d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c26beaa9b9f1e1974fcbee423979a40f') in 0.000331 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 0.363855 seconds. - path: Assets/Scripts/SceneSingleton/SceneSingleton.cs - artifactKey: Guid(122ad7d0387233a4cb949b8c621bd8f7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/SceneSingleton/SceneSingleton.cs using Guid(122ad7d0387233a4cb949b8c621bd8f7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'beff8d9a5a15aafe75b10b7ece5929ad') in 0.000321 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 2.563815 seconds. - path: Assets/Scripts/SceneSingleton/Readme.txt - artifactKey: Guid(b5321323480504347b7440fcd4c4a103) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/SceneSingleton/Readme.txt using Guid(b5321323480504347b7440fcd4c4a103) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7c5a00ca36bd3a8940e4787b92e8cb3a') in 0.008776 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 64.793472 seconds. - path: Assets/Scripts/SceneSingleton/SceneGameManager.cs - artifactKey: Guid(76768780153006f4396967b1083745d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/SceneSingleton/SceneGameManager.cs using Guid(76768780153006f4396967b1083745d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ba9d89ef59cea8e8e42b09f660ba4907') in 0.000458 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 9.561495 seconds. - path: Assets/Scripts/SceneSingleton/SceneTest.cs - artifactKey: Guid(f739991b0867d2442926af1d512bf347) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/SceneSingleton/SceneTest.cs using Guid(f739991b0867d2442926af1d512bf347) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '91aabac2b518fdc4b523208f8d8b282e') in 0.000357 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 3.124543 seconds. - path: Assets/Scripts/Test.cs - artifactKey: Guid(3830e8558eabcdb46914e81e3114bf45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Test.cs using Guid(3830e8558eabcdb46914e81e3114bf45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f7b81f67cd8e11995557c1770700127c') in 0.000360 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.195 seconds -Refreshing native plugins compatible for Editor in 0.11 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.212 seconds -Domain Reload Profiling: 407ms - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (15ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (17ms) - LoadAllAssembliesAndSetupDomain (62ms) - LoadAssemblies (108ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (5ms) - TypeCache.Refresh (4ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (213ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (127ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (17ms) - ProcessInitializeOnLoadAttributes (77ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.08 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 332 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 830. -Memory consumption went from 73.3 MB to 73.3 MB. -Total: 1.340300 ms (FindLiveObjects: 0.038100 ms CreateObjectMapping: 0.007900 ms MarkObjects: 1.273400 ms DeleteObjects: 0.020300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Import Request. - Time since last request: 35.807802 seconds. - path: Assets/Scripts/GameManager.cs - artifactKey: Guid(0ca764009f215c14caab58653ce7251a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GameManager.cs using Guid(0ca764009f215c14caab58653ce7251a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '39a36ace3361e3ca86c1c544cd014ddf') in 0.001515 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.177 seconds -Refreshing native plugins compatible for Editor in 0.09 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.214 seconds -Domain Reload Profiling: 392ms - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (10ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (16ms) - LoadAllAssembliesAndSetupDomain (55ms) - LoadAssemblies (98ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (6ms) - TypeCache.Refresh (4ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (215ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (128ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (18ms) - ProcessInitializeOnLoadAttributes (77ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Refreshing native plugins compatible for Editor in 0.08 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 332 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 833. -Memory consumption went from 75.2 MB to 75.2 MB. -Total: 1.294100 ms (FindLiveObjects: 0.039200 ms CreateObjectMapping: 0.008300 ms MarkObjects: 1.230800 ms DeleteObjects: 0.014900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Import Request. - Time since last request: 44.292896 seconds. - path: Assets/Scripts/Samples - artifactKey: Guid(aa2b4521c6351104eb54e7316550054e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Samples using Guid(aa2b4521c6351104eb54e7316550054e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '95ef5823a9bc98b13d67324f66641b30') in 0.001375 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 3.796703 seconds. - path: Assets/Scripts/SceneSingleton/SceneTest.cs - artifactKey: Guid(f739991b0867d2442926af1d512bf347) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/SceneSingleton/SceneTest.cs using Guid(f739991b0867d2442926af1d512bf347) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '03f1abb966f3a59c4586b83e761a8e5d') in 0.000317 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.168 seconds -Refreshing native plugins compatible for Editor in 0.11 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.217 seconds -Domain Reload Profiling: 385ms - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (11ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (13ms) - LoadAllAssembliesAndSetupDomain (50ms) - LoadAssemblies (92ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (5ms) - TypeCache.Refresh (3ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (217ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (131ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (20ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (18ms) - ProcessInitializeOnLoadAttributes (78ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.08 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 332 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 836. -Memory consumption went from 77.1 MB to 77.1 MB. -Total: 1.465900 ms (FindLiveObjects: 0.037000 ms CreateObjectMapping: 0.007500 ms MarkObjects: 1.404400 ms DeleteObjects: 0.016300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.174 seconds -Refreshing native plugins compatible for Editor in 0.11 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.214 seconds -Domain Reload Profiling: 388ms - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (15ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (13ms) - LoadAllAssembliesAndSetupDomain (52ms) - LoadAssemblies (94ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (5ms) - TypeCache.Refresh (3ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (214ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (129ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (19ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (18ms) - ProcessInitializeOnLoadAttributes (78ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.10 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 333 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 839. -Memory consumption went from 79.3 MB to 79.3 MB. -Total: 1.706900 ms (FindLiveObjects: 0.042600 ms CreateObjectMapping: 0.008500 ms MarkObjects: 1.627400 ms DeleteObjects: 0.027600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.167 seconds -Refreshing native plugins compatible for Editor in 0.09 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.214 seconds -Domain Reload Profiling: 381ms - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (10ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (13ms) - LoadAllAssembliesAndSetupDomain (49ms) - LoadAssemblies (91ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (5ms) - TypeCache.Refresh (3ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (214ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (128ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (18ms) - ProcessInitializeOnLoadAttributes (78ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.09 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 333 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 842. -Memory consumption went from 81.2 MB to 81.2 MB. -Total: 1.453400 ms (FindLiveObjects: 0.037600 ms CreateObjectMapping: 0.008100 ms MarkObjects: 1.388800 ms DeleteObjects: 0.018000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Import Request. - Time since last request: 19.056592 seconds. - path: Assets/Scripts/Runtime - artifactKey: Guid(12ef551e3d1bdfc43997d880a586ec38) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Runtime using Guid(12ef551e3d1bdfc43997d880a586ec38) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '679256043b36fdfb2c512a0b506f4de2') in 0.001605 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 1.498729 seconds. - path: Assets/Scripts/Singleton.cs - artifactKey: Guid(face7a58eceba034f892c28bd5a18238) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Singleton.cs using Guid(face7a58eceba034f892c28bd5a18238) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bfbaef15f203723b84b23c1308178154') in 0.000306 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 0.747525 seconds. - path: Assets/Scripts/MonoSingleton.cs - artifactKey: Guid(ce49cf29f5faf754289d9c206d19cc66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MonoSingleton.cs using Guid(ce49cf29f5faf754289d9c206d19cc66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1c6051945f2ee837fcf1a440116a844c') in 0.000290 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.169 seconds -Refreshing native plugins compatible for Editor in 0.12 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.215 seconds -Domain Reload Profiling: 385ms - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (10ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (13ms) - LoadAllAssembliesAndSetupDomain (51ms) - LoadAssemblies (94ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (5ms) - TypeCache.Refresh (3ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (215ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (132ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (18ms) - ProcessInitializeOnLoadAttributes (81ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.09 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 332 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.8 KB). Loaded Objects now: 845. -Memory consumption went from 82.9 MB to 82.9 MB. -Total: 1.396100 ms (FindLiveObjects: 0.077200 ms CreateObjectMapping: 0.008900 ms MarkObjects: 1.289200 ms DeleteObjects: 0.020400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> -======================================================================== -Received Import Request. - Time since last request: 11.133094 seconds. - path: Assets/Scripts/Runtime/UnityCommunity.UnitySingleton.Runtime.asmdef - artifactKey: Guid(d0b10caa629c1bf43b90a0347a51e434) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Runtime/UnityCommunity.UnitySingleton.Runtime.asmdef using Guid(d0b10caa629c1bf43b90a0347a51e434) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e5ce2e1c272e28ad5c447f2eba054617') in 0.001393 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.169 seconds -Refreshing native plugins compatible for Editor in 0.09 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.213 seconds -Domain Reload Profiling: 382ms - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (11ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (12ms) - LoadAllAssembliesAndSetupDomain (50ms) - LoadAssemblies (94ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (5ms) - TypeCache.Refresh (3ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (213ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (127ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (17ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (18ms) - ProcessInitializeOnLoadAttributes (77ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 0.08 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 332 Unused Serialized files (Serialized files now loaded: 0) -Unloading 5 unused Assets / (23.9 KB). Loaded Objects now: 848. -Memory consumption went from 84.8 MB to 84.8 MB. -Total: 1.725400 ms (FindLiveObjects: 0.039600 ms CreateObjectMapping: 0.007800 ms MarkObjects: 1.653200 ms DeleteObjects: 0.023700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> diff --git a/Logs/AssetImportWorker3.log b/Logs/AssetImportWorker3.log deleted file mode 100644 index 08fbc30..0000000 --- a/Logs/AssetImportWorker3.log +++ /dev/null @@ -1,191 +0,0 @@ -Using pre-set license -Built from '2022.3/staging' branch; Version is '2022.3.17f1 (4fc78088f837) revision 5228416'; Using compiler version '192829333'; Build Type 'Release' -OS: 'Windows 11 (10.0.22621) 64bit Professional' Language: 'en' Physical Memory: 32509 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 - -COMMAND LINE ARGUMENTS: -D:\Program Files\Unity\2022.3.17f1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker3 --projectPath -D:/Projects/UnityCommunity/UnitySingleton --logFile -Logs/AssetImportWorker3.log --srvPort -62052 -Successfully changed project path to: D:/Projects/UnityCommunity/UnitySingleton -D:/Projects/UnityCommunity/UnitySingleton -[UnityMemory] Configuration Parameters - Can be set up in boot.config - "memorysetup-bucket-allocator-granularity=16" - "memorysetup-bucket-allocator-bucket-count=8" - "memorysetup-bucket-allocator-block-size=33554432" - "memorysetup-bucket-allocator-block-count=8" - "memorysetup-main-allocator-block-size=16777216" - "memorysetup-thread-allocator-block-size=16777216" - "memorysetup-gfx-main-allocator-block-size=16777216" - "memorysetup-gfx-thread-allocator-block-size=16777216" - "memorysetup-cache-allocator-block-size=4194304" - "memorysetup-typetree-allocator-block-size=2097152" - "memorysetup-profiler-bucket-allocator-granularity=16" - "memorysetup-profiler-bucket-allocator-bucket-count=8" - "memorysetup-profiler-bucket-allocator-block-size=33554432" - "memorysetup-profiler-bucket-allocator-block-count=8" - "memorysetup-profiler-allocator-block-size=16777216" - "memorysetup-profiler-editor-allocator-block-size=1048576" - "memorysetup-temp-allocator-size-main=16777216" - "memorysetup-job-temp-allocator-block-size=2097152" - "memorysetup-job-temp-allocator-block-size-background=1048576" - "memorysetup-job-temp-allocator-reduction-small-platforms=262144" - "memorysetup-allocator-temp-initial-block-size-main=262144" - "memorysetup-allocator-temp-initial-block-size-worker=262144" - "memorysetup-temp-allocator-size-background-worker=32768" - "memorysetup-temp-allocator-size-job-worker=262144" - "memorysetup-temp-allocator-size-preload-manager=33554432" - "memorysetup-temp-allocator-size-nav-mesh-worker=65536" - "memorysetup-temp-allocator-size-audio-worker=65536" - "memorysetup-temp-allocator-size-cloud-worker=32768" - "memorysetup-temp-allocator-size-gi-baking-worker=262144" - "memorysetup-temp-allocator-size-gfx=262144" -Player connection [41568] Host "[IP] 172.23.224.1 [Port] 0 [Flags] 2 [Guid] 1878707536 [EditorId] 1878707536 [Version] 1048832 [Id] WindowsEditor(7,Hasan-White-PC) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... - -Player connection [41568] Host "[IP] 172.23.224.1 [Port] 0 [Flags] 2 [Guid] 1878707536 [EditorId] 1878707536 [Version] 1048832 [Id] WindowsEditor(7,Hasan-White-PC) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... - -[Physics::Module] Initialized MultithreadedJobDispatcher with 23 workers. -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2022.3.17f1 (4fc78088f837) -[Subsystems] Discovering subsystems at path D:/Program Files/Unity/2022.3.17f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/Projects/UnityCommunity/UnitySingleton/Assets -GfxDevice: creating device client; threaded=0; jobified=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce GTX 1060 6GB (ID=0x1c03) - Vendor: NVIDIA - VRAM: 6044 MB - Driver: 31.0.15.3667 -Initialize mono -Mono path[0] = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/Managed' -Mono path[1] = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -Mono config path = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56560 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.003876 seconds. -- Loaded All Assemblies, in 0.221 seconds -Native extension for WindowsStandalone target not found -[usbmuxd] Start listen thread -[usbmuxd] Listen thread started -Native extension for iOS target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 254 ms -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.467 seconds -Domain Reload Profiling: 688ms - BeginReloadAssembly (70ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (32ms) - LoadAllAssembliesAndSetupDomain (93ms) - LoadAssemblies (69ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (92ms) - TypeCache.Refresh (91ms) - TypeCache.ScanAssembly (83ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (467ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (433ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (325ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (76ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.151 seconds -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.249 seconds -Domain Reload Profiling: 400ms - BeginReloadAssembly (94ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (14ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (11ms) - LoadAllAssembliesAndSetupDomain (16ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (13ms) - TypeCache.Refresh (12ms) - TypeCache.ScanAssembly (6ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (249ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (146ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (14ms) - ProcessInitializeOnLoadAttributes (93ms) - ProcessInitializeOnLoadMethodAttributes (13ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 14 Unused Serialized files (Serialized files now loaded: 0) -Unloading 3 unused Assets / (48.9 KB). Loaded Objects now: 488. -Memory consumption went from 57.8 MB to 57.8 MB. -Total: 2.584100 ms (FindLiveObjects: 0.047400 ms CreateObjectMapping: 0.006400 ms MarkObjects: 2.469400 ms DeleteObjects: 0.060000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> -Editor requested this worker to shutdown with reason: Scaling down because of idle timeout -TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: The I/O operation has been aborted because of either a thread exit or an application request. -AssetImportWorker is now disconnected from the server -Process exiting -Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/Logs/AssetImportWorker4.log b/Logs/AssetImportWorker4.log deleted file mode 100644 index 1d4eea3..0000000 --- a/Logs/AssetImportWorker4.log +++ /dev/null @@ -1,191 +0,0 @@ -Using pre-set license -Built from '2022.3/staging' branch; Version is '2022.3.17f1 (4fc78088f837) revision 5228416'; Using compiler version '192829333'; Build Type 'Release' -OS: 'Windows 11 (10.0.22621) 64bit Professional' Language: 'en' Physical Memory: 32509 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 - -COMMAND LINE ARGUMENTS: -D:\Program Files\Unity\2022.3.17f1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker4 --projectPath -D:/Projects/UnityCommunity/UnitySingleton --logFile -Logs/AssetImportWorker4.log --srvPort -62052 -Successfully changed project path to: D:/Projects/UnityCommunity/UnitySingleton -D:/Projects/UnityCommunity/UnitySingleton -[UnityMemory] Configuration Parameters - Can be set up in boot.config - "memorysetup-bucket-allocator-granularity=16" - "memorysetup-bucket-allocator-bucket-count=8" - "memorysetup-bucket-allocator-block-size=33554432" - "memorysetup-bucket-allocator-block-count=8" - "memorysetup-main-allocator-block-size=16777216" - "memorysetup-thread-allocator-block-size=16777216" - "memorysetup-gfx-main-allocator-block-size=16777216" - "memorysetup-gfx-thread-allocator-block-size=16777216" - "memorysetup-cache-allocator-block-size=4194304" - "memorysetup-typetree-allocator-block-size=2097152" - "memorysetup-profiler-bucket-allocator-granularity=16" - "memorysetup-profiler-bucket-allocator-bucket-count=8" - "memorysetup-profiler-bucket-allocator-block-size=33554432" - "memorysetup-profiler-bucket-allocator-block-count=8" - "memorysetup-profiler-allocator-block-size=16777216" - "memorysetup-profiler-editor-allocator-block-size=1048576" - "memorysetup-temp-allocator-size-main=16777216" - "memorysetup-job-temp-allocator-block-size=2097152" - "memorysetup-job-temp-allocator-block-size-background=1048576" - "memorysetup-job-temp-allocator-reduction-small-platforms=262144" - "memorysetup-allocator-temp-initial-block-size-main=262144" - "memorysetup-allocator-temp-initial-block-size-worker=262144" - "memorysetup-temp-allocator-size-background-worker=32768" - "memorysetup-temp-allocator-size-job-worker=262144" - "memorysetup-temp-allocator-size-preload-manager=33554432" - "memorysetup-temp-allocator-size-nav-mesh-worker=65536" - "memorysetup-temp-allocator-size-audio-worker=65536" - "memorysetup-temp-allocator-size-cloud-worker=32768" - "memorysetup-temp-allocator-size-gi-baking-worker=262144" - "memorysetup-temp-allocator-size-gfx=262144" -Player connection [18640] Host "[IP] 172.23.224.1 [Port] 0 [Flags] 2 [Guid] 2877640179 [EditorId] 2877640179 [Version] 1048832 [Id] WindowsEditor(7,Hasan-White-PC) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... - -Player connection [18640] Host "[IP] 172.23.224.1 [Port] 0 [Flags] 2 [Guid] 2877640179 [EditorId] 2877640179 [Version] 1048832 [Id] WindowsEditor(7,Hasan-White-PC) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... - -[Physics::Module] Initialized MultithreadedJobDispatcher with 23 workers. -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2022.3.17f1 (4fc78088f837) -[Subsystems] Discovering subsystems at path D:/Program Files/Unity/2022.3.17f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/Projects/UnityCommunity/UnitySingleton/Assets -GfxDevice: creating device client; threaded=0; jobified=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce GTX 1060 6GB (ID=0x1c03) - Vendor: NVIDIA - VRAM: 6044 MB - Driver: 31.0.15.3667 -Initialize mono -Mono path[0] = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/Managed' -Mono path[1] = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -Mono config path = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56144 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.002960 seconds. -- Loaded All Assemblies, in 0.222 seconds -Native extension for WindowsStandalone target not found -[usbmuxd] Start listen thread -[usbmuxd] Listen thread started -Native extension for iOS target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 350 ms -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.546 seconds -Domain Reload Profiling: 768ms - BeginReloadAssembly (67ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (0ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (33ms) - LoadAllAssembliesAndSetupDomain (96ms) - LoadAssemblies (67ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (95ms) - TypeCache.Refresh (94ms) - TypeCache.ScanAssembly (85ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (546ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (514ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (417ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (66ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.149 seconds -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.238 seconds -Domain Reload Profiling: 388ms - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (14ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (12ms) - LoadAllAssembliesAndSetupDomain (20ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (17ms) - TypeCache.Refresh (16ms) - TypeCache.ScanAssembly (8ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (239ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (150ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (17ms) - ProcessInitializeOnLoadAttributes (94ms) - ProcessInitializeOnLoadMethodAttributes (13ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 14 Unused Serialized files (Serialized files now loaded: 0) -Unloading 3 unused Assets / (48.6 KB). Loaded Objects now: 488. -Memory consumption went from 57.8 MB to 57.8 MB. -Total: 2.021600 ms (FindLiveObjects: 0.034100 ms CreateObjectMapping: 0.003700 ms MarkObjects: 1.895300 ms DeleteObjects: 0.087500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> -Editor requested this worker to shutdown with reason: Scaling down because of idle timeout -TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: The I/O operation has been aborted because of either a thread exit or an application request. -AssetImportWorker is now disconnected from the server -Process exiting -Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/Logs/AssetImportWorker5.log b/Logs/AssetImportWorker5.log deleted file mode 100644 index 72f7373..0000000 --- a/Logs/AssetImportWorker5.log +++ /dev/null @@ -1,272 +0,0 @@ -Using pre-set license -Built from '2022.3/staging' branch; Version is '2022.3.17f1 (4fc78088f837) revision 5228416'; Using compiler version '192829333'; Build Type 'Release' -OS: 'Windows 11 (10.0.22621) 64bit Professional' Language: 'en' Physical Memory: 32509 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 - -COMMAND LINE ARGUMENTS: -D:\Program Files\Unity\2022.3.17f1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker5 --projectPath -D:/Projects/UnityCommunity/UnitySingleton --logFile -Logs/AssetImportWorker5.log --srvPort -62052 -Successfully changed project path to: D:/Projects/UnityCommunity/UnitySingleton -D:/Projects/UnityCommunity/UnitySingleton -[UnityMemory] Configuration Parameters - Can be set up in boot.config - "memorysetup-bucket-allocator-granularity=16" - "memorysetup-bucket-allocator-bucket-count=8" - "memorysetup-bucket-allocator-block-size=33554432" - "memorysetup-bucket-allocator-block-count=8" - "memorysetup-main-allocator-block-size=16777216" - "memorysetup-thread-allocator-block-size=16777216" - "memorysetup-gfx-main-allocator-block-size=16777216" - "memorysetup-gfx-thread-allocator-block-size=16777216" - "memorysetup-cache-allocator-block-size=4194304" - "memorysetup-typetree-allocator-block-size=2097152" - "memorysetup-profiler-bucket-allocator-granularity=16" - "memorysetup-profiler-bucket-allocator-bucket-count=8" - "memorysetup-profiler-bucket-allocator-block-size=33554432" - "memorysetup-profiler-bucket-allocator-block-count=8" - "memorysetup-profiler-allocator-block-size=16777216" - "memorysetup-profiler-editor-allocator-block-size=1048576" - "memorysetup-temp-allocator-size-main=16777216" - "memorysetup-job-temp-allocator-block-size=2097152" - "memorysetup-job-temp-allocator-block-size-background=1048576" - "memorysetup-job-temp-allocator-reduction-small-platforms=262144" - "memorysetup-allocator-temp-initial-block-size-main=262144" - "memorysetup-allocator-temp-initial-block-size-worker=262144" - "memorysetup-temp-allocator-size-background-worker=32768" - "memorysetup-temp-allocator-size-job-worker=262144" - "memorysetup-temp-allocator-size-preload-manager=33554432" - "memorysetup-temp-allocator-size-nav-mesh-worker=65536" - "memorysetup-temp-allocator-size-audio-worker=65536" - "memorysetup-temp-allocator-size-cloud-worker=32768" - "memorysetup-temp-allocator-size-gi-baking-worker=262144" - "memorysetup-temp-allocator-size-gfx=262144" -Player connection [31788] Host "[IP] 172.23.224.1 [Port] 0 [Flags] 2 [Guid] 1186587124 [EditorId] 1186587124 [Version] 1048832 [Id] WindowsEditor(7,Hasan-White-PC) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... - -Player connection [31788] Host "[IP] 172.23.224.1 [Port] 0 [Flags] 2 [Guid] 1186587124 [EditorId] 1186587124 [Version] 1048832 [Id] WindowsEditor(7,Hasan-White-PC) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... - -[Physics::Module] Initialized MultithreadedJobDispatcher with 23 workers. -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2022.3.17f1 (4fc78088f837) -[Subsystems] Discovering subsystems at path D:/Program Files/Unity/2022.3.17f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/Projects/UnityCommunity/UnitySingleton/Assets -GfxDevice: creating device client; threaded=0; jobified=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce GTX 1060 6GB (ID=0x1c03) - Vendor: NVIDIA - VRAM: 6044 MB - Driver: 31.0.15.3667 -Initialize mono -Mono path[0] = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/Managed' -Mono path[1] = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -Mono config path = 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56060 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll -Register platform support module: D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.002959 seconds. -- Loaded All Assemblies, in 0.213 seconds -Native extension for WindowsStandalone target not found -[usbmuxd] Start listen thread -[usbmuxd] Listen thread started -Native extension for iOS target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 196 ms -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.415 seconds -Domain Reload Profiling: 628ms - BeginReloadAssembly (65ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (0ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (34ms) - LoadAllAssembliesAndSetupDomain (88ms) - LoadAssemblies (65ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (86ms) - TypeCache.Refresh (86ms) - TypeCache.ScanAssembly (77ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (416ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (378ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (267ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (75ms) - ProcessInitializeOnLoadMethodAttributes (32ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.140 seconds -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.244 seconds -Domain Reload Profiling: 384ms - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (15ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (13ms) - LoadAllAssembliesAndSetupDomain (17ms) - LoadAssemblies (49ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (14ms) - TypeCache.Refresh (13ms) - TypeCache.ScanAssembly (6ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (244ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (148ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (20ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (15ms) - ProcessInitializeOnLoadAttributes (96ms) - ProcessInitializeOnLoadMethodAttributes (13ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.03 seconds -Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 14 Unused Serialized files (Serialized files now loaded: 0) -Unloading 3 unused Assets / (48.6 KB). Loaded Objects now: 488. -Memory consumption went from 57.8 MB to 57.8 MB. -Total: 1.493700 ms (FindLiveObjects: 0.032300 ms CreateObjectMapping: 0.003600 ms MarkObjects: 1.410400 ms DeleteObjects: 0.046800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: 6d391050e5a25f67b0a2c618074f2cd9 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> -======================================================================== -Received Import Request. - Time since last request: 530.660680 seconds. - path: Assets/Scripts/MonoSingleton.cs - artifactKey: Guid(ce49cf29f5faf754289d9c206d19cc66) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) -Start importing Assets/Scripts/MonoSingleton.cs using Guid(ce49cf29f5faf754289d9c206d19cc66) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! - -> (artifact id: 'c0c202af962dac269fc0da26a1461ab8') in 0.065926 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000012 seconds. - path: Assets/Scripts/SceneSingleton/Readme.txt - artifactKey: Guid(b5321323480504347b7440fcd4c4a103) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) -Start importing Assets/Scripts/SceneSingleton/Readme.txt using Guid(b5321323480504347b7440fcd4c4a103) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! - -> (artifact id: 'afec339db7729adf7738ee18733ab5b8') in 0.002246 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000098 seconds. - path: Assets/Scenes/_Preload.unity - artifactKey: Guid(5264bf0bd966f354a9b71d59147155c5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) -Start importing Assets/Scenes/_Preload.unity using Guid(5264bf0bd966f354a9b71d59147155c5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! - -> (artifact id: 'c5c6ea0195dfca284db5a426b91524b2') in 0.002083 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Scripts/SceneSingleton/SceneGameManager.cs - artifactKey: Guid(76768780153006f4396967b1083745d3) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) -Start importing Assets/Scripts/SceneSingleton/SceneGameManager.cs using Guid(76768780153006f4396967b1083745d3) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! - -> (artifact id: '1ef4b44300332ae2ca7ebec94c2d63d3') in 0.003443 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000137 seconds. - path: Assets/Scripts/SceneSingleton/SceneSingleton.cs - artifactKey: Guid(122ad7d0387233a4cb949b8c621bd8f7) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) -Start importing Assets/Scripts/SceneSingleton/SceneSingleton.cs using Guid(122ad7d0387233a4cb949b8c621bd8f7) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! - -> (artifact id: 'c84ed871e7e72a82e6882536b9cac5bd') in 0.002593 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000087 seconds. - path: Assets/Scripts/Test.cs - artifactKey: Guid(3830e8558eabcdb46914e81e3114bf45) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) -Start importing Assets/Scripts/Test.cs using Guid(3830e8558eabcdb46914e81e3114bf45) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! - -> (artifact id: 'a551d356226382fdfb9421bf696942e9') in 0.003688 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000083 seconds. - path: Assets/Scenes/Main Menu.unity - artifactKey: Guid(fd897d8df8f2e6d43811bdc3fd3eb11e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) -Start importing Assets/Scenes/Main Menu.unity using Guid(fd897d8df8f2e6d43811bdc3fd3eb11e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! - -> (artifact id: '8aab068a04743146256a2ecc9032d223') in 0.002188 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000089 seconds. - path: Assets/Scripts/Singleton.cs - artifactKey: Guid(face7a58eceba034f892c28bd5a18238) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) -Start importing Assets/Scripts/Singleton.cs using Guid(face7a58eceba034f892c28bd5a18238) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! - -> (artifact id: 'd1ac425c96b829195b07ecb7ce1c209e') in 0.002622 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000013 seconds. - path: Assets/Scripts/SceneSingleton/SceneTest.cs - artifactKey: Guid(f739991b0867d2442926af1d512bf347) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) -Start importing Assets/Scripts/SceneSingleton/SceneTest.cs using Guid(f739991b0867d2442926af1d512bf347) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! - -> (artifact id: '068838a429df0b319d7677bd8e2de125') in 0.003967 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -Editor requested this worker to shutdown with reason: Scaling down because of idle timeout -TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: The I/O operation has been aborted because of either a thread exit or an application request. -AssetImportWorker is now disconnected from the server -Process exiting -Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/Logs/Packages-Update.log b/Logs/Packages-Update.log deleted file mode 100644 index d525d80..0000000 --- a/Logs/Packages-Update.log +++ /dev/null @@ -1,38 +0,0 @@ - -=== Wed Jan 24 08:48:42 2024 - -Packages were changed. -Update Mode: resetToDefaultDependencies - -The following packages were added: - com.unity.modules.ai@1.0.0 - com.unity.modules.androidjni@1.0.0 - com.unity.modules.animation@1.0.0 - com.unity.modules.assetbundle@1.0.0 - com.unity.modules.audio@1.0.0 - com.unity.modules.cloth@1.0.0 - com.unity.modules.director@1.0.0 - com.unity.modules.imageconversion@1.0.0 - com.unity.modules.imgui@1.0.0 - com.unity.modules.jsonserialize@1.0.0 - com.unity.modules.particlesystem@1.0.0 - com.unity.modules.physics@1.0.0 - com.unity.modules.physics2d@1.0.0 - com.unity.modules.screencapture@1.0.0 - com.unity.modules.terrain@1.0.0 - com.unity.modules.terrainphysics@1.0.0 - com.unity.modules.tilemap@1.0.0 - com.unity.modules.ui@1.0.0 - com.unity.modules.uielements@1.0.0 - com.unity.modules.umbra@1.0.0 - com.unity.modules.unityanalytics@1.0.0 - com.unity.modules.unitywebrequest@1.0.0 - com.unity.modules.unitywebrequestassetbundle@1.0.0 - com.unity.modules.unitywebrequestaudio@1.0.0 - com.unity.modules.unitywebrequesttexture@1.0.0 - com.unity.modules.unitywebrequestwww@1.0.0 - com.unity.modules.vehicles@1.0.0 - com.unity.modules.video@1.0.0 - com.unity.modules.vr@1.0.0 - com.unity.modules.wind@1.0.0 - com.unity.modules.xr@1.0.0 diff --git a/Logs/shadercompiler-AssetImportWorker0.log b/Logs/shadercompiler-AssetImportWorker0.log deleted file mode 100644 index 30649bb..0000000 --- a/Logs/shadercompiler-AssetImportWorker0.log +++ /dev/null @@ -1,8 +0,0 @@ -Base path: 'D:/Program Files/Unity/2022.3.17f1/Editor/Data', plugins path 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines' -Cmd: initializeCompiler - -Cmd: initializeCompiler - -Unhandled exception: Protocol error - failed to read magic number (error -2147483644, transferred 0/4) - -Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe0.log b/Logs/shadercompiler-UnityShaderCompiler.exe0.log deleted file mode 100644 index f48f22d..0000000 --- a/Logs/shadercompiler-UnityShaderCompiler.exe0.log +++ /dev/null @@ -1,99 +0,0 @@ -Base path: 'D:/Program Files/Unity/2022.3.17f1/Editor/Data', plugins path 'D:/Program Files/Unity/2022.3.17f1/Editor/Data/PlaybackEngines' -Cmd: initializeCompiler - -Cmd: compileSnippet - insize=1622 file=Assets/DefaultResourcesExtra/Hidden/BlitCopy pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=33 mask=6 start=11 ok=1 outsize=722 - -Cmd: compileSnippet - insize=1622 file=Assets/DefaultResourcesExtra/Hidden/BlitCopy pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=33 mask=6 start=11 ok=1 outsize=386 - -Cmd: compileSnippet - insize=5069 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUIRoundedRect pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=33 mask=6 start=155 ok=1 outsize=1170 - -Cmd: compileSnippet - insize=5069 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUIRoundedRect pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=33 mask=6 start=155 ok=1 outsize=3566 - -Cmd: compileSnippet - insize=5069 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUIRoundedRect pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=33 mask=6 start=167 ok=1 outsize=1170 - -Cmd: compileSnippet - insize=5069 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUIRoundedRect pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=33 mask=6 start=167 ok=1 outsize=3566 - -Cmd: compileSnippet - insize=7893 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUIRoundedRectWithColorPerBorder pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=33 mask=6 start=223 ok=1 outsize=1170 - -Cmd: compileSnippet - insize=7893 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUIRoundedRectWithColorPerBorder pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=33 mask=6 start=223 ok=1 outsize=4802 - -Cmd: compileSnippet - insize=7893 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUIRoundedRectWithColorPerBorder pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=33 mask=6 start=235 ok=1 outsize=1170 - -Cmd: compileSnippet - insize=7893 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUIRoundedRectWithColorPerBorder pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=33 mask=6 start=235 ok=1 outsize=4802 - -Cmd: compileSnippet - insize=1381 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUITexture pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=1 mask=6 start=59 ok=1 outsize=822 - -Cmd: compileSnippet - insize=1381 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUITexture pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=1 mask=6 start=59 ok=1 outsize=434 - -Cmd: compileSnippet - insize=1381 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUITexture pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=1 mask=6 start=75 ok=1 outsize=822 - -Cmd: compileSnippet - insize=1381 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUITexture pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=1 mask=6 start=75 ok=1 outsize=434 - -Cmd: compileSnippet - insize=1918 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUITextureBlit pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=1 mask=6 start=71 ok=1 outsize=1114 - -Cmd: compileSnippet - insize=1918 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUITextureBlit pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=1 mask=6 start=71 ok=1 outsize=810 - -Cmd: compileSnippet - insize=1918 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUITextureBlit pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=1 mask=6 start=84 ok=1 outsize=1114 - -Cmd: compileSnippet - insize=1918 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUITextureBlit pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=1 mask=6 start=84 ok=1 outsize=810 - -Cmd: compileSnippet - insize=1882 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUITextureClip pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=1 mask=6 start=70 ok=1 outsize=1114 - -Cmd: compileSnippet - insize=1882 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUITextureClip pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=1 mask=6 start=70 ok=1 outsize=830 - -Cmd: compileSnippet - insize=1882 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUITextureClip pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=1 mask=6 start=83 ok=1 outsize=1114 - -Cmd: compileSnippet - insize=1882 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUITextureClip pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=1 mask=6 start=83 ok=1 outsize=830 - -Cmd: compileSnippet - insize=1741 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUITextureClipText pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=1 mask=6 start=64 ok=1 outsize=1126 - -Cmd: compileSnippet - insize=1741 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUITextureClipText pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=1 mask=6 start=64 ok=1 outsize=554 - -Cmd: compileSnippet - insize=1741 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUITextureClipText pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=1 mask=6 start=77 ok=1 outsize=1126 - -Cmd: compileSnippet - insize=1741 file=Assets/DefaultResourcesExtra/Hidden/Internal-GUITextureClipText pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=1 mask=6 start=77 ok=1 outsize=554 - -Cmd: compileSnippet - insize=4180 file=Assets/DefaultResourcesExtra/Internal/UIElements/Hidden/Internal-UIRAtlasBlitCopy pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=33 mask=6 start=20 ok=1 outsize=1374 - -Cmd: compileSnippet - insize=4180 file=Assets/DefaultResourcesExtra/Internal/UIElements/Hidden/Internal-UIRAtlasBlitCopy pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=33 mask=6 start=20 ok=1 outsize=1058 - -Cmd: compileSnippet - insize=802 file=Assets/DefaultResourcesExtra/Internal/UIElements/Hidden/UIElements/EditorUIE pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=4075 mask=6 start=54 ok=1 outsize=4162 - -Cmd: compileSnippet - insize=802 file=Assets/DefaultResourcesExtra/Internal/UIElements/Hidden/UIElements/EditorUIE pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=4075 mask=6 start=54 ok=1 outsize=9542 - -Cmd: compileSnippet - insize=16617 file=Assets/DefaultResourcesExtra/Skybox/Procedural pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_SUNDISK_SIMPLE dKW=_SUNDISK_NONE _SUNDISK_HIGH_QUALITY UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=33 mask=6 start=20 ok=1 outsize=5698 - -Cmd: compileSnippet - insize=16617 file=Assets/DefaultResourcesExtra/Skybox/Procedural pass= ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_SUNDISK_SIMPLE dKW=_SUNDISK_NONE _SUNDISK_HIGH_QUALITY UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=33 mask=6 start=20 ok=1 outsize=934 - diff --git a/Packages/manifest.json b/Packages/manifest.json deleted file mode 100644 index 6d1b6aa..0000000 --- a/Packages/manifest.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "dependencies": { - "com.unity.ide.visualstudio": "2.0.22", - "com.unity.modules.ai": "1.0.0", - "com.unity.modules.androidjni": "1.0.0", - "com.unity.modules.animation": "1.0.0", - "com.unity.modules.assetbundle": "1.0.0", - "com.unity.modules.audio": "1.0.0", - "com.unity.modules.cloth": "1.0.0", - "com.unity.modules.director": "1.0.0", - "com.unity.modules.imageconversion": "1.0.0", - "com.unity.modules.imgui": "1.0.0", - "com.unity.modules.jsonserialize": "1.0.0", - "com.unity.modules.particlesystem": "1.0.0", - "com.unity.modules.physics": "1.0.0", - "com.unity.modules.physics2d": "1.0.0", - "com.unity.modules.screencapture": "1.0.0", - "com.unity.modules.terrain": "1.0.0", - "com.unity.modules.terrainphysics": "1.0.0", - "com.unity.modules.tilemap": "1.0.0", - "com.unity.modules.ui": "1.0.0", - "com.unity.modules.uielements": "1.0.0", - "com.unity.modules.umbra": "1.0.0", - "com.unity.modules.unityanalytics": "1.0.0", - "com.unity.modules.unitywebrequest": "1.0.0", - "com.unity.modules.unitywebrequestassetbundle": "1.0.0", - "com.unity.modules.unitywebrequestaudio": "1.0.0", - "com.unity.modules.unitywebrequesttexture": "1.0.0", - "com.unity.modules.unitywebrequestwww": "1.0.0", - "com.unity.modules.vehicles": "1.0.0", - "com.unity.modules.video": "1.0.0", - "com.unity.modules.vr": "1.0.0", - "com.unity.modules.wind": "1.0.0", - "com.unity.modules.xr": "1.0.0" - } -} diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json deleted file mode 100644 index f7c5940..0000000 --- a/Packages/packages-lock.json +++ /dev/null @@ -1,274 +0,0 @@ -{ - "dependencies": { - "com.unity.ext.nunit": { - "version": "1.0.6", - "depth": 2, - "source": "registry", - "dependencies": {}, - "url": "https://packages.unity.com" - }, - "com.unity.ide.visualstudio": { - "version": "2.0.22", - "depth": 0, - "source": "registry", - "dependencies": { - "com.unity.test-framework": "1.1.9" - }, - "url": "https://packages.unity.com" - }, - "com.unity.test-framework": { - "version": "1.1.33", - "depth": 1, - "source": "registry", - "dependencies": { - "com.unity.ext.nunit": "1.0.6", - "com.unity.modules.imgui": "1.0.0", - "com.unity.modules.jsonserialize": "1.0.0" - }, - "url": "https://packages.unity.com" - }, - "com.unity.modules.ai": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": {} - }, - "com.unity.modules.androidjni": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": {} - }, - "com.unity.modules.animation": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": {} - }, - "com.unity.modules.assetbundle": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": {} - }, - "com.unity.modules.audio": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": {} - }, - "com.unity.modules.cloth": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": { - "com.unity.modules.physics": "1.0.0" - } - }, - "com.unity.modules.director": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": { - "com.unity.modules.audio": "1.0.0", - "com.unity.modules.animation": "1.0.0" - } - }, - "com.unity.modules.imageconversion": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": {} - }, - "com.unity.modules.imgui": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": {} - }, - "com.unity.modules.jsonserialize": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": {} - }, - "com.unity.modules.particlesystem": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": {} - }, - "com.unity.modules.physics": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": {} - }, - "com.unity.modules.physics2d": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": {} - }, - "com.unity.modules.screencapture": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": { - "com.unity.modules.imageconversion": "1.0.0" - } - }, - "com.unity.modules.subsystems": { - "version": "1.0.0", - "depth": 1, - "source": "builtin", - "dependencies": { - "com.unity.modules.jsonserialize": "1.0.0" - } - }, - "com.unity.modules.terrain": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": {} - }, - "com.unity.modules.terrainphysics": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": { - "com.unity.modules.physics": "1.0.0", - "com.unity.modules.terrain": "1.0.0" - } - }, - "com.unity.modules.tilemap": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": { - "com.unity.modules.physics2d": "1.0.0" - } - }, - "com.unity.modules.ui": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": {} - }, - "com.unity.modules.uielements": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": { - "com.unity.modules.ui": "1.0.0", - "com.unity.modules.imgui": "1.0.0", - "com.unity.modules.jsonserialize": "1.0.0" - } - }, - "com.unity.modules.umbra": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": {} - }, - "com.unity.modules.unityanalytics": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": { - "com.unity.modules.unitywebrequest": "1.0.0", - "com.unity.modules.jsonserialize": "1.0.0" - } - }, - "com.unity.modules.unitywebrequest": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": {} - }, - "com.unity.modules.unitywebrequestassetbundle": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": { - "com.unity.modules.assetbundle": "1.0.0", - "com.unity.modules.unitywebrequest": "1.0.0" - } - }, - "com.unity.modules.unitywebrequestaudio": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": { - "com.unity.modules.unitywebrequest": "1.0.0", - "com.unity.modules.audio": "1.0.0" - } - }, - "com.unity.modules.unitywebrequesttexture": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": { - "com.unity.modules.unitywebrequest": "1.0.0", - "com.unity.modules.imageconversion": "1.0.0" - } - }, - "com.unity.modules.unitywebrequestwww": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": { - "com.unity.modules.unitywebrequest": "1.0.0", - "com.unity.modules.unitywebrequestassetbundle": "1.0.0", - "com.unity.modules.unitywebrequestaudio": "1.0.0", - "com.unity.modules.audio": "1.0.0", - "com.unity.modules.assetbundle": "1.0.0", - "com.unity.modules.imageconversion": "1.0.0" - } - }, - "com.unity.modules.vehicles": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": { - "com.unity.modules.physics": "1.0.0" - } - }, - "com.unity.modules.video": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": { - "com.unity.modules.audio": "1.0.0", - "com.unity.modules.ui": "1.0.0", - "com.unity.modules.unitywebrequest": "1.0.0" - } - }, - "com.unity.modules.vr": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": { - "com.unity.modules.jsonserialize": "1.0.0", - "com.unity.modules.physics": "1.0.0", - "com.unity.modules.xr": "1.0.0" - } - }, - "com.unity.modules.wind": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": {} - }, - "com.unity.modules.xr": { - "version": "1.0.0", - "depth": 0, - "source": "builtin", - "dependencies": { - "com.unity.modules.physics": "1.0.0", - "com.unity.modules.jsonserialize": "1.0.0", - "com.unity.modules.subsystems": "1.0.0" - } - } - } -} diff --git a/ProjectSettings/AudioManager.asset b/ProjectSettings/AudioManager.asset deleted file mode 100644 index da61125..0000000 --- a/ProjectSettings/AudioManager.asset +++ /dev/null @@ -1,17 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!11 &1 -AudioManager: - m_ObjectHideFlags: 0 - m_Volume: 1 - Rolloff Scale: 1 - Doppler Factor: 1 - Default Speaker Mode: 2 - m_SampleRate: 0 - m_DSPBufferSize: 0 - m_VirtualVoiceCount: 512 - m_RealVoiceCount: 32 - m_SpatializerPlugin: - m_AmbisonicDecoderPlugin: - m_DisableAudio: 0 - m_VirtualizeEffects: 1 diff --git a/ProjectSettings/ClusterInputManager.asset b/ProjectSettings/ClusterInputManager.asset deleted file mode 100644 index e7886b2..0000000 --- a/ProjectSettings/ClusterInputManager.asset +++ /dev/null @@ -1,6 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!236 &1 -ClusterInputManager: - m_ObjectHideFlags: 0 - m_Inputs: [] diff --git a/ProjectSettings/DynamicsManager.asset b/ProjectSettings/DynamicsManager.asset deleted file mode 100644 index 1931946..0000000 --- a/ProjectSettings/DynamicsManager.asset +++ /dev/null @@ -1,19 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!55 &1 -PhysicsManager: - m_ObjectHideFlags: 0 - serializedVersion: 3 - m_Gravity: {x: 0, y: -9.81, z: 0} - m_DefaultMaterial: {fileID: 0} - m_BounceThreshold: 2 - m_SleepThreshold: 0.005 - m_DefaultContactOffset: 0.01 - m_DefaultSolverIterations: 6 - m_DefaultSolverVelocityIterations: 1 - m_QueriesHitBackfaces: 0 - m_QueriesHitTriggers: 1 - m_EnableAdaptiveForce: 0 - m_EnablePCM: 1 - m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff - m_AutoSimulation: 1 diff --git a/ProjectSettings/EditorBuildSettings.asset b/ProjectSettings/EditorBuildSettings.asset deleted file mode 100644 index 391384b..0000000 --- a/ProjectSettings/EditorBuildSettings.asset +++ /dev/null @@ -1,16 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1045 &1 -EditorBuildSettings: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Scenes: - - enabled: 1 - path: Assets/Scenes/_Preload.unity - guid: 5264bf0bd966f354a9b71d59147155c5 - - enabled: 1 - path: Assets/Scenes/Main Menu.unity - guid: fd897d8df8f2e6d43811bdc3fd3eb11e - - enabled: 1 - path: Assets/Scenes/Game.unity - guid: 499d8b731179029439d2ed711317b688 diff --git a/ProjectSettings/EditorSettings.asset b/ProjectSettings/EditorSettings.asset deleted file mode 100644 index f33b6fb..0000000 --- a/ProjectSettings/EditorSettings.asset +++ /dev/null @@ -1,16 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!159 &1 -EditorSettings: - m_ObjectHideFlags: 0 - serializedVersion: 4 - m_ExternalVersionControlSupport: Visible Meta Files - m_SerializationMode: 2 - m_DefaultBehaviorMode: 0 - m_SpritePackerMode: 0 - m_SpritePackerPaddingPower: 1 - m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd - m_ProjectGenerationRootNamespace: - m_UserGeneratedProjectSuffix: - m_CollabEditorSettings: - inProgressEnabled: 1 diff --git a/ProjectSettings/GraphicsSettings.asset b/ProjectSettings/GraphicsSettings.asset deleted file mode 100644 index 74d7b53..0000000 --- a/ProjectSettings/GraphicsSettings.asset +++ /dev/null @@ -1,61 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!30 &1 -GraphicsSettings: - m_ObjectHideFlags: 0 - serializedVersion: 12 - m_Deferred: - m_Mode: 1 - m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} - m_DeferredReflections: - m_Mode: 1 - m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} - m_ScreenSpaceShadows: - m_Mode: 1 - m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} - m_LegacyDeferred: - m_Mode: 1 - m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} - m_DepthNormals: - m_Mode: 1 - m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} - m_MotionVectors: - m_Mode: 1 - m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} - m_LightHalo: - m_Mode: 1 - m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} - m_LensFlare: - m_Mode: 1 - m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} - m_AlwaysIncludedShaders: - - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} - - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} - - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} - - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} - - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} - - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} - m_PreloadedShaders: [] - m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, - type: 0} - m_CustomRenderPipeline: {fileID: 0} - m_TransparencySortMode: 0 - m_TransparencySortAxis: {x: 0, y: 0, z: 1} - m_DefaultRenderingPath: 1 - m_DefaultMobileRenderingPath: 1 - m_TierSettings: [] - m_LightmapStripping: 0 - m_FogStripping: 0 - m_InstancingStripping: 0 - m_LightmapKeepPlain: 1 - m_LightmapKeepDirCombined: 1 - m_LightmapKeepDynamicPlain: 1 - m_LightmapKeepDynamicDirCombined: 1 - m_LightmapKeepShadowMask: 1 - m_LightmapKeepSubtractive: 1 - m_FogKeepLinear: 1 - m_FogKeepExp: 1 - m_FogKeepExp2: 1 - m_AlbedoSwatchInfos: [] - m_LightsUseLinearIntensity: 0 - m_LightsUseColorTemperature: 0 diff --git a/ProjectSettings/InputManager.asset b/ProjectSettings/InputManager.asset deleted file mode 100644 index 17c8f53..0000000 --- a/ProjectSettings/InputManager.asset +++ /dev/null @@ -1,295 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!13 &1 -InputManager: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Axes: - - serializedVersion: 3 - m_Name: Horizontal - descriptiveName: - descriptiveNegativeName: - negativeButton: left - positiveButton: right - altNegativeButton: a - altPositiveButton: d - gravity: 3 - dead: 0.001 - sensitivity: 3 - snap: 1 - invert: 0 - type: 0 - axis: 0 - joyNum: 0 - - serializedVersion: 3 - m_Name: Vertical - descriptiveName: - descriptiveNegativeName: - negativeButton: down - positiveButton: up - altNegativeButton: s - altPositiveButton: w - gravity: 3 - dead: 0.001 - sensitivity: 3 - snap: 1 - invert: 0 - type: 0 - axis: 0 - joyNum: 0 - - serializedVersion: 3 - m_Name: Fire1 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: left ctrl - altNegativeButton: - altPositiveButton: mouse 0 - gravity: 1000 - dead: 0.001 - sensitivity: 1000 - snap: 0 - invert: 0 - type: 0 - axis: 0 - joyNum: 0 - - serializedVersion: 3 - m_Name: Fire2 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: left alt - altNegativeButton: - altPositiveButton: mouse 1 - gravity: 1000 - dead: 0.001 - sensitivity: 1000 - snap: 0 - invert: 0 - type: 0 - axis: 0 - joyNum: 0 - - serializedVersion: 3 - m_Name: Fire3 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: left shift - altNegativeButton: - altPositiveButton: mouse 2 - gravity: 1000 - dead: 0.001 - sensitivity: 1000 - snap: 0 - invert: 0 - type: 0 - axis: 0 - joyNum: 0 - - serializedVersion: 3 - m_Name: Jump - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: space - altNegativeButton: - altPositiveButton: - gravity: 1000 - dead: 0.001 - sensitivity: 1000 - snap: 0 - invert: 0 - type: 0 - axis: 0 - joyNum: 0 - - serializedVersion: 3 - m_Name: Mouse X - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0 - sensitivity: 0.1 - snap: 0 - invert: 0 - type: 1 - axis: 0 - joyNum: 0 - - serializedVersion: 3 - m_Name: Mouse Y - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0 - sensitivity: 0.1 - snap: 0 - invert: 0 - type: 1 - axis: 1 - joyNum: 0 - - serializedVersion: 3 - m_Name: Mouse ScrollWheel - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0 - sensitivity: 0.1 - snap: 0 - invert: 0 - type: 1 - axis: 2 - joyNum: 0 - - serializedVersion: 3 - m_Name: Horizontal - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 0 - joyNum: 0 - - serializedVersion: 3 - m_Name: Vertical - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 1 - type: 2 - axis: 1 - joyNum: 0 - - serializedVersion: 3 - m_Name: Fire1 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: joystick button 0 - altNegativeButton: - altPositiveButton: - gravity: 1000 - dead: 0.001 - sensitivity: 1000 - snap: 0 - invert: 0 - type: 0 - axis: 0 - joyNum: 0 - - serializedVersion: 3 - m_Name: Fire2 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: joystick button 1 - altNegativeButton: - altPositiveButton: - gravity: 1000 - dead: 0.001 - sensitivity: 1000 - snap: 0 - invert: 0 - type: 0 - axis: 0 - joyNum: 0 - - serializedVersion: 3 - m_Name: Fire3 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: joystick button 2 - altNegativeButton: - altPositiveButton: - gravity: 1000 - dead: 0.001 - sensitivity: 1000 - snap: 0 - invert: 0 - type: 0 - axis: 0 - joyNum: 0 - - serializedVersion: 3 - m_Name: Jump - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: joystick button 3 - altNegativeButton: - altPositiveButton: - gravity: 1000 - dead: 0.001 - sensitivity: 1000 - snap: 0 - invert: 0 - type: 0 - axis: 0 - joyNum: 0 - - serializedVersion: 3 - m_Name: Submit - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: return - altNegativeButton: - altPositiveButton: joystick button 0 - gravity: 1000 - dead: 0.001 - sensitivity: 1000 - snap: 0 - invert: 0 - type: 0 - axis: 0 - joyNum: 0 - - serializedVersion: 3 - m_Name: Submit - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: enter - altNegativeButton: - altPositiveButton: space - gravity: 1000 - dead: 0.001 - sensitivity: 1000 - snap: 0 - invert: 0 - type: 0 - axis: 0 - joyNum: 0 - - serializedVersion: 3 - m_Name: Cancel - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: escape - altNegativeButton: - altPositiveButton: joystick button 1 - gravity: 1000 - dead: 0.001 - sensitivity: 1000 - snap: 0 - invert: 0 - type: 0 - axis: 0 - joyNum: 0 diff --git a/ProjectSettings/MemorySettings.asset b/ProjectSettings/MemorySettings.asset deleted file mode 100644 index 5b5face..0000000 --- a/ProjectSettings/MemorySettings.asset +++ /dev/null @@ -1,35 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!387306366 &1 -MemorySettings: - m_ObjectHideFlags: 0 - m_EditorMemorySettings: - m_MainAllocatorBlockSize: -1 - m_ThreadAllocatorBlockSize: -1 - m_MainGfxBlockSize: -1 - m_ThreadGfxBlockSize: -1 - m_CacheBlockSize: -1 - m_TypetreeBlockSize: -1 - m_ProfilerBlockSize: -1 - m_ProfilerEditorBlockSize: -1 - m_BucketAllocatorGranularity: -1 - m_BucketAllocatorBucketsCount: -1 - m_BucketAllocatorBlockSize: -1 - m_BucketAllocatorBlockCount: -1 - m_ProfilerBucketAllocatorGranularity: -1 - m_ProfilerBucketAllocatorBucketsCount: -1 - m_ProfilerBucketAllocatorBlockSize: -1 - m_ProfilerBucketAllocatorBlockCount: -1 - m_TempAllocatorSizeMain: -1 - m_JobTempAllocatorBlockSize: -1 - m_BackgroundJobTempAllocatorBlockSize: -1 - m_JobTempAllocatorReducedBlockSize: -1 - m_TempAllocatorSizeGIBakingWorker: -1 - m_TempAllocatorSizeNavMeshWorker: -1 - m_TempAllocatorSizeAudioWorker: -1 - m_TempAllocatorSizeCloudWorker: -1 - m_TempAllocatorSizeGfx: -1 - m_TempAllocatorSizeJobWorker: -1 - m_TempAllocatorSizeBackgroundWorker: -1 - m_TempAllocatorSizePreloadManager: -1 - m_PlatformMemorySettings: {} diff --git a/ProjectSettings/NavMeshAreas.asset b/ProjectSettings/NavMeshAreas.asset deleted file mode 100644 index 6dd520f..0000000 --- a/ProjectSettings/NavMeshAreas.asset +++ /dev/null @@ -1,89 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!126 &1 -NavMeshProjectSettings: - m_ObjectHideFlags: 0 - serializedVersion: 2 - areas: - - name: Walkable - cost: 1 - - name: Not Walkable - cost: 1 - - name: Jump - cost: 2 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - - name: - cost: 1 - m_LastAgentTypeID: -887442657 - m_Settings: - - serializedVersion: 2 - agentTypeID: 0 - agentRadius: 0.5 - agentHeight: 2 - agentSlope: 45 - agentClimb: 0.75 - ledgeDropHeight: 0 - maxJumpAcrossDistance: 0 - minRegionArea: 2 - manualCellSize: 0 - cellSize: 0.16666667 - manualTileSize: 0 - tileSize: 256 - accuratePlacement: 0 - m_SettingNames: - - Humanoid diff --git a/ProjectSettings/NetworkManager.asset b/ProjectSettings/NetworkManager.asset deleted file mode 100644 index 5dc6a83..0000000 --- a/ProjectSettings/NetworkManager.asset +++ /dev/null @@ -1,8 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!149 &1 -NetworkManager: - m_ObjectHideFlags: 0 - m_DebugLevel: 0 - m_Sendrate: 15 - m_AssetToPrefab: {} diff --git a/ProjectSettings/PackageManagerSettings.asset b/ProjectSettings/PackageManagerSettings.asset deleted file mode 100644 index 89ffc0e..0000000 --- a/ProjectSettings/PackageManagerSettings.asset +++ /dev/null @@ -1,36 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &1 -MonoBehaviour: - m_ObjectHideFlags: 53 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_EnablePreReleasePackages: 0 - m_AdvancedSettingsExpanded: 1 - m_ScopedRegistriesSettingsExpanded: 1 - m_SeeAllPackageVersions: 0 - m_DismissPreviewPackagesInUse: 0 - oneTimeWarningShown: 0 - m_Registries: - - m_Id: main - m_Name: - m_Url: https://packages.unity.com - m_Scopes: [] - m_IsDefault: 1 - m_Capabilities: 7 - m_ConfigSource: 0 - m_UserSelectedRegistryName: - m_UserAddingNewScopedRegistry: 0 - m_RegistryInfoDraft: - m_Modified: 0 - m_ErrorMessage: - m_UserModificationsInstanceId: -864 - m_OriginalInstanceId: -866 - m_LoadAssets: 0 diff --git a/ProjectSettings/Physics2DSettings.asset b/ProjectSettings/Physics2DSettings.asset deleted file mode 100644 index e3b2d0b..0000000 --- a/ProjectSettings/Physics2DSettings.asset +++ /dev/null @@ -1,36 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!19 &1 -Physics2DSettings: - m_ObjectHideFlags: 0 - serializedVersion: 3 - m_Gravity: {x: 0, y: -9.81} - m_DefaultMaterial: {fileID: 0} - m_VelocityIterations: 8 - m_PositionIterations: 3 - m_VelocityThreshold: 1 - m_MaxLinearCorrection: 0.2 - m_MaxAngularCorrection: 8 - m_MaxTranslationSpeed: 100 - m_MaxRotationSpeed: 360 - m_BaumgarteScale: 0.2 - m_BaumgarteTimeOfImpactScale: 0.75 - m_TimeToSleep: 0.5 - m_LinearSleepTolerance: 0.01 - m_AngularSleepTolerance: 2 - m_DefaultContactOffset: 0.01 - m_AutoSimulation: 1 - m_QueriesHitTriggers: 1 - m_QueriesStartInColliders: 1 - m_ChangeStopsCallbacks: 0 - m_CallbacksOnDisable: 1 - m_AlwaysShowColliders: 0 - m_ShowColliderSleep: 1 - m_ShowColliderContacts: 0 - m_ShowColliderAABB: 0 - m_ContactArrowScale: 0.2 - m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} - m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} - m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} - m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} - m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff diff --git a/ProjectSettings/PresetManager.asset b/ProjectSettings/PresetManager.asset deleted file mode 100644 index 67a94da..0000000 --- a/ProjectSettings/PresetManager.asset +++ /dev/null @@ -1,7 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1386491679 &1 -PresetManager: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_DefaultPresets: {} diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset deleted file mode 100644 index 45c1ce0..0000000 --- a/ProjectSettings/ProjectSettings.asset +++ /dev/null @@ -1,938 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!129 &1 -PlayerSettings: - m_ObjectHideFlags: 0 - serializedVersion: 26 - productGUID: dc0d24de907948441b07cc35167c6a79 - AndroidProfiler: 0 - AndroidFilterTouchesWhenObscured: 0 - AndroidEnableSustainedPerformanceMode: 0 - defaultScreenOrientation: 4 - targetDevice: 2 - useOnDemandResources: 0 - accelerometerFrequency: 60 - companyName: DefaultCompany - productName: UnitySingleton - defaultCursor: {fileID: 0} - cursorHotspot: {x: 0, y: 0} - m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} - m_ShowUnitySplashScreen: 1 - m_ShowUnitySplashLogo: 1 - m_SplashScreenOverlayOpacity: 1 - m_SplashScreenAnimation: 1 - m_SplashScreenLogoStyle: 1 - m_SplashScreenDrawMode: 0 - m_SplashScreenBackgroundAnimationZoom: 1 - m_SplashScreenLogoAnimationZoom: 1 - m_SplashScreenBackgroundLandscapeAspect: 1 - m_SplashScreenBackgroundPortraitAspect: 1 - m_SplashScreenBackgroundLandscapeUvs: - serializedVersion: 2 - x: 0 - y: 0 - width: 1 - height: 1 - m_SplashScreenBackgroundPortraitUvs: - serializedVersion: 2 - x: 0 - y: 0 - width: 1 - height: 1 - m_SplashScreenLogos: [] - m_VirtualRealitySplashScreen: {fileID: 0} - m_HolographicTrackingLossScreen: {fileID: 0} - defaultScreenWidth: 1024 - defaultScreenHeight: 768 - defaultScreenWidthWeb: 960 - defaultScreenHeightWeb: 600 - m_StereoRenderingPath: 0 - m_ActiveColorSpace: 0 - unsupportedMSAAFallback: 0 - m_SpriteBatchVertexThreshold: 300 - m_MTRendering: 1 - mipStripping: 0 - numberOfMipsStripped: 0 - numberOfMipsStrippedPerMipmapLimitGroup: {} - m_StackTraceTypes: 010000000100000001000000010000000100000001000000 - iosShowActivityIndicatorOnLoading: -1 - androidShowActivityIndicatorOnLoading: -1 - iosUseCustomAppBackgroundBehavior: 0 - allowedAutorotateToPortrait: 1 - allowedAutorotateToPortraitUpsideDown: 1 - allowedAutorotateToLandscapeRight: 1 - allowedAutorotateToLandscapeLeft: 1 - useOSAutorotation: 1 - use32BitDisplayBuffer: 1 - preserveFramebufferAlpha: 0 - disableDepthAndStencilBuffers: 0 - androidStartInFullscreen: 1 - androidRenderOutsideSafeArea: 1 - androidUseSwappy: 0 - androidBlitType: 0 - androidResizableWindow: 0 - androidDefaultWindowWidth: 1920 - androidDefaultWindowHeight: 1080 - androidMinimumWindowWidth: 400 - androidMinimumWindowHeight: 300 - androidFullscreenMode: 1 - androidAutoRotationBehavior: 1 - defaultIsNativeResolution: 1 - macRetinaSupport: 1 - runInBackground: 0 - captureSingleScreen: 0 - muteOtherAudioSources: 0 - Prepare IOS For Recording: 0 - Force IOS Speakers When Recording: 0 - deferSystemGesturesMode: 0 - hideHomeButton: 0 - submitAnalytics: 1 - usePlayerLog: 1 - dedicatedServerOptimizations: 0 - bakeCollisionMeshes: 0 - forceSingleInstance: 0 - useFlipModelSwapchain: 1 - resizableWindow: 0 - useMacAppStoreValidation: 0 - macAppStoreCategory: public.app-category.games - gpuSkinning: 0 - xboxPIXTextureCapture: 0 - xboxEnableAvatar: 0 - xboxEnableKinect: 0 - xboxEnableKinectAutoTracking: 0 - xboxEnableFitness: 0 - visibleInBackground: 1 - allowFullscreenSwitch: 1 - fullscreenMode: 1 - xboxSpeechDB: 0 - xboxEnableHeadOrientation: 0 - xboxEnableGuest: 0 - xboxEnablePIXSampling: 0 - metalFramebufferOnly: 0 - xboxOneResolution: 0 - xboxOneSResolution: 0 - xboxOneXResolution: 3 - xboxOneMonoLoggingLevel: 0 - xboxOneLoggingLevel: 1 - xboxOneDisableEsram: 0 - xboxOneEnableTypeOptimization: 0 - xboxOnePresentImmediateThreshold: 0 - switchQueueCommandMemory: 1048576 - switchQueueControlMemory: 16384 - switchQueueComputeMemory: 262144 - switchNVNShaderPoolsGranularity: 33554432 - switchNVNDefaultPoolsGranularity: 16777216 - switchNVNOtherPoolsGranularity: 16777216 - switchGpuScratchPoolGranularity: 2097152 - switchAllowGpuScratchShrinking: 0 - switchNVNMaxPublicTextureIDCount: 0 - switchNVNMaxPublicSamplerIDCount: 0 - switchNVNGraphicsFirmwareMemory: 32 - switchMaxWorkerMultiple: 8 - stadiaPresentMode: 0 - stadiaTargetFramerate: 0 - vulkanNumSwapchainBuffers: 3 - vulkanEnableSetSRGBWrite: 0 - vulkanEnablePreTransform: 0 - vulkanEnableLateAcquireNextImage: 0 - vulkanEnableCommandBufferRecycling: 1 - loadStoreDebugModeEnabled: 0 - bundleVersion: 1.0 - preloadedAssets: [] - metroInputSource: 0 - wsaTransparentSwapchain: 0 - m_HolographicPauseOnTrackingLoss: 1 - xboxOneDisableKinectGpuReservation: 0 - xboxOneEnable7thCore: 0 - vrSettings: - enable360StereoCapture: 0 - isWsaHolographicRemotingEnabled: 0 - enableFrameTimingStats: 0 - enableOpenGLProfilerGPURecorders: 1 - allowHDRDisplaySupport: 0 - useHDRDisplay: 0 - hdrBitDepth: 0 - m_ColorGamuts: 00000000 - targetPixelDensity: 30 - resolutionScalingMode: 0 - resetResolutionOnWindowResize: 0 - androidSupportedAspectRatio: 1 - androidMaxAspectRatio: 2.1 - applicationIdentifier: {} - buildNumber: - Standalone: 0 - VisionOS: 0 - iPhone: 0 - tvOS: 0 - overrideDefaultApplicationIdentifier: 0 - AndroidBundleVersionCode: 1 - AndroidMinSdkVersion: 22 - AndroidTargetSdkVersion: 0 - AndroidPreferredInstallLocation: 1 - aotOptions: - stripEngineCode: 1 - iPhoneStrippingLevel: 0 - iPhoneScriptCallOptimization: 0 - ForceInternetPermission: 0 - ForceSDCardPermission: 0 - CreateWallpaper: 0 - APKExpansionFiles: 0 - keepLoadedShadersAlive: 0 - StripUnusedMeshComponents: 0 - strictShaderVariantMatching: 0 - VertexChannelCompressionMask: 214 - iPhoneSdkVersion: 988 - iOSTargetOSVersionString: 12.0 - tvOSSdkVersion: 0 - tvOSRequireExtendedGameController: 0 - tvOSTargetOSVersionString: 12.0 - VisionOSSdkVersion: 0 - VisionOSTargetOSVersionString: 1.0 - uIPrerenderedIcon: 0 - uIRequiresPersistentWiFi: 0 - uIRequiresFullScreen: 1 - uIStatusBarHidden: 1 - uIExitOnSuspend: 0 - uIStatusBarStyle: 0 - appleTVSplashScreen: {fileID: 0} - appleTVSplashScreen2x: {fileID: 0} - tvOSSmallIconLayers: [] - tvOSSmallIconLayers2x: [] - tvOSLargeIconLayers: [] - tvOSLargeIconLayers2x: [] - tvOSTopShelfImageLayers: [] - tvOSTopShelfImageLayers2x: [] - tvOSTopShelfImageWideLayers: [] - tvOSTopShelfImageWideLayers2x: [] - iOSLaunchScreenType: 0 - iOSLaunchScreenPortrait: {fileID: 0} - iOSLaunchScreenLandscape: {fileID: 0} - iOSLaunchScreenBackgroundColor: - serializedVersion: 2 - rgba: 0 - iOSLaunchScreenFillPct: 100 - iOSLaunchScreenSize: 100 - iOSLaunchScreenCustomXibPath: - iOSLaunchScreeniPadType: 0 - iOSLaunchScreeniPadImage: {fileID: 0} - iOSLaunchScreeniPadBackgroundColor: - serializedVersion: 2 - rgba: 0 - iOSLaunchScreeniPadFillPct: 100 - iOSLaunchScreeniPadSize: 100 - iOSLaunchScreeniPadCustomXibPath: - iOSLaunchScreenCustomStoryboardPath: - iOSLaunchScreeniPadCustomStoryboardPath: - iOSDeviceRequirements: [] - iOSURLSchemes: [] - macOSURLSchemes: [] - iOSBackgroundModes: 0 - iOSMetalForceHardShadows: 0 - metalEditorSupport: 1 - metalAPIValidation: 1 - iOSRenderExtraFrameOnPause: 0 - iosCopyPluginsCodeInsteadOfSymlink: 0 - appleDeveloperTeamID: - iOSManualSigningProvisioningProfileID: - tvOSManualSigningProvisioningProfileID: - VisionOSManualSigningProvisioningProfileID: - iOSManualSigningProvisioningProfileType: 0 - tvOSManualSigningProvisioningProfileType: 0 - VisionOSManualSigningProvisioningProfileType: 0 - appleEnableAutomaticSigning: 0 - iOSRequireARKit: 0 - iOSAutomaticallyDetectAndAddCapabilities: 1 - appleEnableProMotion: 0 - shaderPrecisionModel: 0 - clonedFromGUID: 00000000000000000000000000000000 - templatePackageId: - templateDefaultScene: - useCustomMainManifest: 0 - useCustomLauncherManifest: 0 - useCustomMainGradleTemplate: 0 - useCustomLauncherGradleManifest: 0 - useCustomBaseGradleTemplate: 0 - useCustomGradlePropertiesTemplate: 0 - useCustomGradleSettingsTemplate: 0 - useCustomProguardFile: 0 - AndroidTargetArchitectures: 1 - AndroidTargetDevices: 0 - AndroidSplashScreenScale: 0 - androidSplashScreen: {fileID: 0} - AndroidKeystoreName: '{inproject}: ' - AndroidKeyaliasName: - AndroidEnableArmv9SecurityFeatures: 0 - AndroidBuildApkPerCpuArchitecture: 0 - AndroidTVCompatibility: 1 - AndroidIsGame: 1 - AndroidEnableTango: 0 - androidEnableBanner: 1 - androidUseLowAccuracyLocation: 0 - androidUseCustomKeystore: 0 - m_AndroidBanners: - - width: 320 - height: 180 - banner: {fileID: 0} - androidGamepadSupportLevel: 0 - chromeosInputEmulation: 1 - AndroidMinifyRelease: 0 - AndroidMinifyDebug: 0 - AndroidValidateAppBundleSize: 1 - AndroidAppBundleSizeToValidate: 150 - m_BuildTargetIcons: [] - m_BuildTargetPlatformIcons: - - m_BuildTarget: iPhone - m_Icons: - - m_Textures: [] - m_Width: 180 - m_Height: 180 - m_Kind: 0 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 120 - m_Height: 120 - m_Kind: 0 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 167 - m_Height: 167 - m_Kind: 0 - m_SubKind: iPad - - m_Textures: [] - m_Width: 152 - m_Height: 152 - m_Kind: 0 - m_SubKind: iPad - - m_Textures: [] - m_Width: 76 - m_Height: 76 - m_Kind: 0 - m_SubKind: iPad - - m_Textures: [] - m_Width: 120 - m_Height: 120 - m_Kind: 3 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 80 - m_Height: 80 - m_Kind: 3 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 80 - m_Height: 80 - m_Kind: 3 - m_SubKind: iPad - - m_Textures: [] - m_Width: 40 - m_Height: 40 - m_Kind: 3 - m_SubKind: iPad - - m_Textures: [] - m_Width: 87 - m_Height: 87 - m_Kind: 1 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 58 - m_Height: 58 - m_Kind: 1 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 29 - m_Height: 29 - m_Kind: 1 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 58 - m_Height: 58 - m_Kind: 1 - m_SubKind: iPad - - m_Textures: [] - m_Width: 29 - m_Height: 29 - m_Kind: 1 - m_SubKind: iPad - - m_Textures: [] - m_Width: 60 - m_Height: 60 - m_Kind: 2 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 40 - m_Height: 40 - m_Kind: 2 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 40 - m_Height: 40 - m_Kind: 2 - m_SubKind: iPad - - m_Textures: [] - m_Width: 20 - m_Height: 20 - m_Kind: 2 - m_SubKind: iPad - - m_Textures: [] - m_Width: 1024 - m_Height: 1024 - m_Kind: 4 - m_SubKind: App Store - - m_BuildTarget: Android - m_Icons: - - m_Textures: [] - m_Width: 432 - m_Height: 432 - m_Kind: 2 - m_SubKind: - - m_Textures: [] - m_Width: 324 - m_Height: 324 - m_Kind: 2 - m_SubKind: - - m_Textures: [] - m_Width: 216 - m_Height: 216 - m_Kind: 2 - m_SubKind: - - m_Textures: [] - m_Width: 162 - m_Height: 162 - m_Kind: 2 - m_SubKind: - - m_Textures: [] - m_Width: 108 - m_Height: 108 - m_Kind: 2 - m_SubKind: - - m_Textures: [] - m_Width: 81 - m_Height: 81 - m_Kind: 2 - m_SubKind: - - m_Textures: [] - m_Width: 192 - m_Height: 192 - m_Kind: 1 - m_SubKind: - - m_Textures: [] - m_Width: 144 - m_Height: 144 - m_Kind: 1 - m_SubKind: - - m_Textures: [] - m_Width: 96 - m_Height: 96 - m_Kind: 1 - m_SubKind: - - m_Textures: [] - m_Width: 72 - m_Height: 72 - m_Kind: 1 - m_SubKind: - - m_Textures: [] - m_Width: 48 - m_Height: 48 - m_Kind: 1 - m_SubKind: - - m_Textures: [] - m_Width: 36 - m_Height: 36 - m_Kind: 1 - m_SubKind: - - m_Textures: [] - m_Width: 192 - m_Height: 192 - m_Kind: 0 - m_SubKind: - - m_Textures: [] - m_Width: 144 - m_Height: 144 - m_Kind: 0 - m_SubKind: - - m_Textures: [] - m_Width: 96 - m_Height: 96 - m_Kind: 0 - m_SubKind: - - m_Textures: [] - m_Width: 72 - m_Height: 72 - m_Kind: 0 - m_SubKind: - - m_Textures: [] - m_Width: 48 - m_Height: 48 - m_Kind: 0 - m_SubKind: - - m_Textures: [] - m_Width: 36 - m_Height: 36 - m_Kind: 0 - m_SubKind: - m_BuildTargetBatching: [] - m_BuildTargetShaderSettings: [] - m_BuildTargetGraphicsJobs: - - m_BuildTarget: WindowsStandaloneSupport - m_GraphicsJobs: 0 - - m_BuildTarget: MacStandaloneSupport - m_GraphicsJobs: 0 - - m_BuildTarget: LinuxStandaloneSupport - m_GraphicsJobs: 0 - - m_BuildTarget: AndroidPlayer - m_GraphicsJobs: 0 - - m_BuildTarget: iOSSupport - m_GraphicsJobs: 0 - - m_BuildTarget: PS4Player - m_GraphicsJobs: 0 - - m_BuildTarget: PS5Player - m_GraphicsJobs: 0 - - m_BuildTarget: XboxOnePlayer - m_GraphicsJobs: 0 - - m_BuildTarget: GameCoreXboxOneSupport - m_GraphicsJobs: 0 - - m_BuildTarget: GameCoreScarlettSupport - m_GraphicsJobs: 0 - - m_BuildTarget: Switch - m_GraphicsJobs: 0 - - m_BuildTarget: WebGLSupport - m_GraphicsJobs: 0 - - m_BuildTarget: MetroSupport - m_GraphicsJobs: 0 - - m_BuildTarget: AppleTVSupport - m_GraphicsJobs: 0 - - m_BuildTarget: VisionOSPlayer - m_GraphicsJobs: 0 - - m_BuildTarget: BJMSupport - m_GraphicsJobs: 0 - - m_BuildTarget: CloudRendering - m_GraphicsJobs: 0 - - m_BuildTarget: EmbeddedLinux - m_GraphicsJobs: 0 - - m_BuildTarget: QNX - m_GraphicsJobs: 0 - m_BuildTargetGraphicsJobMode: - - m_BuildTarget: PS4Player - m_GraphicsJobMode: 0 - - m_BuildTarget: XboxOnePlayer - m_GraphicsJobMode: 0 - m_BuildTargetGraphicsAPIs: - - m_BuildTarget: iOSSupport - m_APIs: 10000000 - m_Automatic: 1 - - m_BuildTarget: AndroidPlayer - m_APIs: 0b00000008000000 - m_Automatic: 0 - m_BuildTargetVRSettings: [] - m_DefaultShaderChunkSizeInMB: 16 - m_DefaultShaderChunkCount: 0 - openGLRequireES31: 0 - openGLRequireES31AEP: 0 - openGLRequireES32: 0 - m_TemplateCustomTags: {} - mobileMTRendering: - VisionOS: 1 - iPhone: 1 - tvOS: 1 - m_BuildTargetGroupLightmapEncodingQuality: - - m_BuildTarget: Standalone - m_EncodingQuality: 1 - - m_BuildTarget: XboxOne - m_EncodingQuality: 1 - - m_BuildTarget: PS4 - m_EncodingQuality: 1 - - m_BuildTarget: GameCoreScarlett - m_EncodingQuality: 1 - - m_BuildTarget: GameCoreXboxOne - m_EncodingQuality: 1 - m_BuildTargetGroupHDRCubemapEncodingQuality: - - m_BuildTarget: Standalone - m_EncodingQuality: 2 - - m_BuildTarget: XboxOne - m_EncodingQuality: 2 - - m_BuildTarget: PS4 - m_EncodingQuality: 2 - - m_BuildTarget: GameCoreScarlett - m_EncodingQuality: 2 - - m_BuildTarget: GameCoreXboxOne - m_EncodingQuality: 2 - m_BuildTargetGroupLightmapSettings: [] - m_BuildTargetGroupLoadStoreDebugModeSettings: [] - m_BuildTargetNormalMapEncoding: [] - m_BuildTargetDefaultTextureCompressionFormat: [] - playModeTestRunnerEnabled: 0 - runPlayModeTestAsEditModeTest: 0 - actionOnDotNetUnhandledException: 1 - enableInternalProfiler: 0 - logObjCUncaughtExceptions: 1 - enableCrashReportAPI: 0 - cameraUsageDescription: - locationUsageDescription: - microphoneUsageDescription: - bluetoothUsageDescription: - macOSTargetOSVersion: 10.13.0 - switchNMETAOverride: - switchNetLibKey: - switchSocketMemoryPoolSize: 6144 - switchSocketAllocatorPoolSize: 128 - switchSocketConcurrencyLimit: 14 - switchScreenResolutionBehavior: 2 - switchUseCPUProfiler: 0 - switchEnableFileSystemTrace: 0 - switchLTOSetting: 0 - switchApplicationID: 0x01004b9000490000 - switchNSODependencies: - switchCompilerFlags: - switchTitleNames_0: - switchTitleNames_1: - switchTitleNames_2: - switchTitleNames_3: - switchTitleNames_4: - switchTitleNames_5: - switchTitleNames_6: - switchTitleNames_7: - switchTitleNames_8: - switchTitleNames_9: - switchTitleNames_10: - switchTitleNames_11: - switchTitleNames_12: - switchTitleNames_13: - switchTitleNames_14: - switchTitleNames_15: - switchPublisherNames_0: - switchPublisherNames_1: - switchPublisherNames_2: - switchPublisherNames_3: - switchPublisherNames_4: - switchPublisherNames_5: - switchPublisherNames_6: - switchPublisherNames_7: - switchPublisherNames_8: - switchPublisherNames_9: - switchPublisherNames_10: - switchPublisherNames_11: - switchPublisherNames_12: - switchPublisherNames_13: - switchPublisherNames_14: - switchPublisherNames_15: - switchIcons_0: {fileID: 0} - switchIcons_1: {fileID: 0} - switchIcons_2: {fileID: 0} - switchIcons_3: {fileID: 0} - switchIcons_4: {fileID: 0} - switchIcons_5: {fileID: 0} - switchIcons_6: {fileID: 0} - switchIcons_7: {fileID: 0} - switchIcons_8: {fileID: 0} - switchIcons_9: {fileID: 0} - switchIcons_10: {fileID: 0} - switchIcons_11: {fileID: 0} - switchIcons_12: {fileID: 0} - switchIcons_13: {fileID: 0} - switchIcons_14: {fileID: 0} - switchIcons_15: {fileID: 0} - switchSmallIcons_0: {fileID: 0} - switchSmallIcons_1: {fileID: 0} - switchSmallIcons_2: {fileID: 0} - switchSmallIcons_3: {fileID: 0} - switchSmallIcons_4: {fileID: 0} - switchSmallIcons_5: {fileID: 0} - switchSmallIcons_6: {fileID: 0} - switchSmallIcons_7: {fileID: 0} - switchSmallIcons_8: {fileID: 0} - switchSmallIcons_9: {fileID: 0} - switchSmallIcons_10: {fileID: 0} - switchSmallIcons_11: {fileID: 0} - switchSmallIcons_12: {fileID: 0} - switchSmallIcons_13: {fileID: 0} - switchSmallIcons_14: {fileID: 0} - switchSmallIcons_15: {fileID: 0} - switchManualHTML: - switchAccessibleURLs: - switchLegalInformation: - switchMainThreadStackSize: 1048576 - switchPresenceGroupId: - switchLogoHandling: 0 - switchReleaseVersion: 0 - switchDisplayVersion: 1.0.0 - switchStartupUserAccount: 0 - switchSupportedLanguagesMask: 0 - switchLogoType: 0 - switchApplicationErrorCodeCategory: - switchUserAccountSaveDataSize: 0 - switchUserAccountSaveDataJournalSize: 0 - switchApplicationAttribute: 0 - switchCardSpecSize: -1 - switchCardSpecClock: -1 - switchRatingsMask: 0 - switchRatingsInt_0: 0 - switchRatingsInt_1: 0 - switchRatingsInt_2: 0 - switchRatingsInt_3: 0 - switchRatingsInt_4: 0 - switchRatingsInt_5: 0 - switchRatingsInt_6: 0 - switchRatingsInt_7: 0 - switchRatingsInt_8: 0 - switchRatingsInt_9: 0 - switchRatingsInt_10: 0 - switchRatingsInt_11: 0 - switchRatingsInt_12: 0 - switchLocalCommunicationIds_0: - switchLocalCommunicationIds_1: - switchLocalCommunicationIds_2: - switchLocalCommunicationIds_3: - switchLocalCommunicationIds_4: - switchLocalCommunicationIds_5: - switchLocalCommunicationIds_6: - switchLocalCommunicationIds_7: - switchParentalControl: 0 - switchAllowsScreenshot: 1 - switchAllowsVideoCapturing: 1 - switchAllowsRuntimeAddOnContentInstall: 0 - switchDataLossConfirmation: 0 - switchUserAccountLockEnabled: 0 - switchSystemResourceMemory: 16777216 - switchSupportedNpadStyles: 3 - switchNativeFsCacheSize: 32 - switchIsHoldTypeHorizontal: 1 - switchSupportedNpadCount: 8 - switchEnableTouchScreen: 1 - switchSocketConfigEnabled: 0 - switchTcpInitialSendBufferSize: 32 - switchTcpInitialReceiveBufferSize: 64 - switchTcpAutoSendBufferSizeMax: 256 - switchTcpAutoReceiveBufferSizeMax: 256 - switchUdpSendBufferSize: 9 - switchUdpReceiveBufferSize: 42 - switchSocketBufferEfficiency: 4 - switchSocketInitializeEnabled: 1 - switchNetworkInterfaceManagerInitializeEnabled: 1 - switchUseNewStyleFilepaths: 1 - switchUseLegacyFmodPriorities: 0 - switchUseMicroSleepForYield: 1 - switchEnableRamDiskSupport: 0 - switchMicroSleepForYieldTime: 25 - switchRamDiskSpaceSize: 12 - ps4NPAgeRating: 12 - ps4NPTitleSecret: - ps4NPTrophyPackPath: - ps4ParentalLevel: 11 - ps4ContentID: ED1633-NPXX51362_00-0000000000000000 - ps4Category: 0 - ps4MasterVersion: 01.00 - ps4AppVersion: 01.00 - ps4AppType: 0 - ps4ParamSfxPath: - ps4VideoOutPixelFormat: 0 - ps4VideoOutInitialWidth: 1920 - ps4VideoOutBaseModeInitialWidth: 1920 - ps4VideoOutReprojectionRate: 120 - ps4PronunciationXMLPath: - ps4PronunciationSIGPath: - ps4BackgroundImagePath: - ps4StartupImagePath: - ps4StartupImagesFolder: - ps4IconImagesFolder: - ps4SaveDataImagePath: - ps4SdkOverride: - ps4BGMPath: - ps4ShareFilePath: - ps4ShareOverlayImagePath: - ps4PrivacyGuardImagePath: - ps4ExtraSceSysFile: - ps4NPtitleDatPath: - ps4RemotePlayKeyAssignment: -1 - ps4RemotePlayKeyMappingDir: - ps4PlayTogetherPlayerCount: 0 - ps4EnterButtonAssignment: 1 - ps4ApplicationParam1: 0 - ps4ApplicationParam2: 0 - ps4ApplicationParam3: 0 - ps4ApplicationParam4: 0 - ps4DownloadDataSize: 0 - ps4GarlicHeapSize: 2048 - ps4ProGarlicHeapSize: 2560 - playerPrefsMaxSize: 32768 - ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ - ps4pnSessions: 1 - ps4pnPresence: 1 - ps4pnFriends: 1 - ps4pnGameCustomData: 1 - playerPrefsSupport: 0 - enableApplicationExit: 0 - resetTempFolder: 1 - restrictedAudioUsageRights: 0 - ps4UseResolutionFallback: 0 - ps4ReprojectionSupport: 0 - ps4UseAudio3dBackend: 0 - ps4UseLowGarlicFragmentationMode: 1 - ps4SocialScreenEnabled: 0 - ps4ScriptOptimizationLevel: 0 - ps4Audio3dVirtualSpeakerCount: 14 - ps4attribCpuUsage: 0 - ps4PatchPkgPath: - ps4PatchLatestPkgPath: - ps4PatchChangeinfoPath: - ps4PatchDayOne: 0 - ps4attribUserManagement: 0 - ps4attribMoveSupport: 0 - ps4attrib3DSupport: 0 - ps4attribShareSupport: 0 - ps4attribExclusiveVR: 0 - ps4disableAutoHideSplash: 0 - ps4videoRecordingFeaturesUsed: 0 - ps4contentSearchFeaturesUsed: 0 - ps4CompatibilityPS5: 0 - ps4AllowPS5Detection: 0 - ps4GPU800MHz: 1 - ps4attribEyeToEyeDistanceSettingVR: 0 - ps4IncludedModules: [] - ps4attribVROutputEnabled: 0 - monoEnv: - splashScreenBackgroundSourceLandscape: {fileID: 0} - splashScreenBackgroundSourcePortrait: {fileID: 0} - blurSplashScreenBackground: 1 - spritePackerPolicy: - webGLMemorySize: 256 - webGLExceptionSupport: 1 - webGLNameFilesAsHashes: 0 - webGLShowDiagnostics: 0 - webGLDataCaching: 0 - webGLDebugSymbols: 0 - webGLEmscriptenArgs: - webGLModulesDirectory: - webGLTemplate: APPLICATION:Default - webGLAnalyzeBuildSize: 0 - webGLUseEmbeddedResources: 0 - webGLCompressionFormat: 1 - webGLWasmArithmeticExceptions: 0 - webGLLinkerTarget: 1 - webGLThreadsSupport: 0 - webGLDecompressionFallback: 0 - webGLInitialMemorySize: 32 - webGLMaximumMemorySize: 2048 - webGLMemoryGrowthMode: 2 - webGLMemoryLinearGrowthStep: 16 - webGLMemoryGeometricGrowthStep: 0.2 - webGLMemoryGeometricGrowthCap: 96 - webGLPowerPreference: 2 - scriptingDefineSymbols: {} - additionalCompilerArguments: {} - platformArchitecture: {} - scriptingBackend: {} - il2cppCompilerConfiguration: {} - il2cppCodeGeneration: {} - managedStrippingLevel: - EmbeddedLinux: 1 - GameCoreScarlett: 1 - GameCoreXboxOne: 1 - Nintendo Switch: 1 - PS4: 1 - PS5: 1 - QNX: 1 - Stadia: 1 - VisionOS: 1 - WebGL: 1 - Windows Store Apps: 1 - XboxOne: 1 - iPhone: 1 - tvOS: 1 - incrementalIl2cppBuild: {} - suppressCommonWarnings: 1 - allowUnsafeCode: 0 - useDeterministicCompilation: 1 - additionalIl2CppArgs: - scriptingRuntimeVersion: 1 - gcIncremental: 1 - gcWBarrierValidation: 0 - apiCompatibilityLevelPerPlatform: {} - m_RenderingPath: 1 - m_MobileRenderingPath: 1 - metroPackageName: UnitySingleton - metroPackageVersion: - metroCertificatePath: - metroCertificatePassword: - metroCertificateSubject: - metroCertificateIssuer: - metroCertificateNotAfter: 0000000000000000 - metroApplicationDescription: UnitySingleton - wsaImages: {} - metroTileShortName: - metroTileShowName: 0 - metroMediumTileShowName: 0 - metroLargeTileShowName: 0 - metroWideTileShowName: 0 - metroSupportStreamingInstall: 0 - metroLastRequiredScene: 0 - metroDefaultTileSize: 1 - metroTileForegroundText: 2 - metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} - metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, - a: 1} - metroSplashScreenUseBackgroundColor: 0 - platformCapabilities: {} - metroTargetDeviceFamilies: {} - metroFTAName: - metroFTAFileTypes: [] - metroProtocolName: - vcxProjDefaultLanguage: - XboxOneProductId: - XboxOneUpdateKey: - XboxOneSandboxId: - XboxOneContentId: - XboxOneTitleId: - XboxOneSCId: - XboxOneGameOsOverridePath: - XboxOnePackagingOverridePath: - XboxOneAppManifestOverridePath: - XboxOneVersion: 1.0.0.0 - XboxOnePackageEncryption: 0 - XboxOnePackageUpdateGranularity: 2 - XboxOneDescription: - XboxOneLanguage: - - enus - XboxOneCapability: [] - XboxOneGameRating: {} - XboxOneIsContentPackage: 0 - XboxOneEnhancedXboxCompatibilityMode: 0 - XboxOneEnableGPUVariability: 0 - XboxOneSockets: {} - XboxOneSplashScreen: {fileID: 0} - XboxOneAllowedProductIds: [] - XboxOnePersistentLocalStorageSize: 0 - XboxOneXTitleMemory: 8 - XboxOneOverrideIdentityName: - XboxOneOverrideIdentityPublisher: - vrEditorSettings: {} - cloudServicesEnabled: {} - luminIcon: - m_Name: - m_ModelFolderPath: - m_PortalFolderPath: - luminCert: - m_CertPath: - m_SignPackage: 1 - luminIsChannelApp: 0 - luminVersion: - m_VersionCode: 1 - m_VersionName: - hmiPlayerDataPath: - hmiForceSRGBBlit: 1 - embeddedLinuxEnableGamepadInput: 1 - hmiLogStartupTiming: 0 - hmiCpuConfiguration: - apiCompatibilityLevel: 6 - activeInputHandler: 0 - windowsGamepadBackendHint: 0 - cloudProjectId: - framebufferDepthMemorylessMode: 0 - qualitySettingsNames: [] - projectName: - organizationId: - cloudEnabled: 0 - legacyClampBlendShapeWeights: 1 - hmiLoadingImage: {fileID: 0} - platformRequiresReadableAssets: 0 - virtualTexturingSupportEnabled: 0 - insecureHttpOption: 0 diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt deleted file mode 100644 index 396831e..0000000 --- a/ProjectSettings/ProjectVersion.txt +++ /dev/null @@ -1,2 +0,0 @@ -m_EditorVersion: 2022.3.17f1 -m_EditorVersionWithRevision: 2022.3.17f1 (4fc78088f837) diff --git a/ProjectSettings/QualitySettings.asset b/ProjectSettings/QualitySettings.asset deleted file mode 100644 index 86c047f..0000000 --- a/ProjectSettings/QualitySettings.asset +++ /dev/null @@ -1,193 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!47 &1 -QualitySettings: - m_ObjectHideFlags: 0 - serializedVersion: 5 - m_CurrentQuality: 5 - m_QualitySettings: - - serializedVersion: 2 - name: Very Low - pixelLightCount: 0 - shadows: 0 - shadowResolution: 0 - shadowProjection: 1 - shadowCascades: 1 - shadowDistance: 15 - shadowNearPlaneOffset: 3 - shadowCascade2Split: 0.33333334 - shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} - shadowmaskMode: 0 - blendWeights: 1 - textureQuality: 1 - anisotropicTextures: 0 - antiAliasing: 0 - softParticles: 0 - softVegetation: 0 - realtimeReflectionProbes: 0 - billboardsFaceCameraPosition: 0 - vSyncCount: 0 - lodBias: 0.3 - maximumLODLevel: 0 - particleRaycastBudget: 4 - asyncUploadTimeSlice: 2 - asyncUploadBufferSize: 4 - resolutionScalingFixedDPIFactor: 1 - excludedTargetPlatforms: [] - - serializedVersion: 2 - name: Low - pixelLightCount: 0 - shadows: 0 - shadowResolution: 0 - shadowProjection: 1 - shadowCascades: 1 - shadowDistance: 20 - shadowNearPlaneOffset: 3 - shadowCascade2Split: 0.33333334 - shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} - shadowmaskMode: 0 - blendWeights: 2 - textureQuality: 0 - anisotropicTextures: 0 - antiAliasing: 0 - softParticles: 0 - softVegetation: 0 - realtimeReflectionProbes: 0 - billboardsFaceCameraPosition: 0 - vSyncCount: 0 - lodBias: 0.4 - maximumLODLevel: 0 - particleRaycastBudget: 16 - asyncUploadTimeSlice: 2 - asyncUploadBufferSize: 4 - resolutionScalingFixedDPIFactor: 1 - excludedTargetPlatforms: [] - - serializedVersion: 2 - name: Medium - pixelLightCount: 1 - shadows: 1 - shadowResolution: 0 - shadowProjection: 1 - shadowCascades: 1 - shadowDistance: 20 - shadowNearPlaneOffset: 3 - shadowCascade2Split: 0.33333334 - shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} - shadowmaskMode: 0 - blendWeights: 2 - textureQuality: 0 - anisotropicTextures: 1 - antiAliasing: 0 - softParticles: 0 - softVegetation: 0 - realtimeReflectionProbes: 0 - billboardsFaceCameraPosition: 0 - vSyncCount: 1 - lodBias: 0.7 - maximumLODLevel: 0 - particleRaycastBudget: 64 - asyncUploadTimeSlice: 2 - asyncUploadBufferSize: 4 - resolutionScalingFixedDPIFactor: 1 - excludedTargetPlatforms: [] - - serializedVersion: 2 - name: High - pixelLightCount: 2 - shadows: 2 - shadowResolution: 1 - shadowProjection: 1 - shadowCascades: 2 - shadowDistance: 40 - shadowNearPlaneOffset: 3 - shadowCascade2Split: 0.33333334 - shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} - shadowmaskMode: 1 - blendWeights: 2 - textureQuality: 0 - anisotropicTextures: 1 - antiAliasing: 0 - softParticles: 0 - softVegetation: 1 - realtimeReflectionProbes: 1 - billboardsFaceCameraPosition: 1 - vSyncCount: 1 - lodBias: 1 - maximumLODLevel: 0 - particleRaycastBudget: 256 - asyncUploadTimeSlice: 2 - asyncUploadBufferSize: 4 - resolutionScalingFixedDPIFactor: 1 - excludedTargetPlatforms: [] - - serializedVersion: 2 - name: Very High - pixelLightCount: 3 - shadows: 2 - shadowResolution: 2 - shadowProjection: 1 - shadowCascades: 2 - shadowDistance: 70 - shadowNearPlaneOffset: 3 - shadowCascade2Split: 0.33333334 - shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} - shadowmaskMode: 1 - blendWeights: 4 - textureQuality: 0 - anisotropicTextures: 2 - antiAliasing: 2 - softParticles: 1 - softVegetation: 1 - realtimeReflectionProbes: 1 - billboardsFaceCameraPosition: 1 - vSyncCount: 1 - lodBias: 1.5 - maximumLODLevel: 0 - particleRaycastBudget: 1024 - asyncUploadTimeSlice: 2 - asyncUploadBufferSize: 4 - resolutionScalingFixedDPIFactor: 1 - excludedTargetPlatforms: [] - - serializedVersion: 2 - name: Ultra - pixelLightCount: 4 - shadows: 2 - shadowResolution: 2 - shadowProjection: 1 - shadowCascades: 4 - shadowDistance: 150 - shadowNearPlaneOffset: 3 - shadowCascade2Split: 0.33333334 - shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} - shadowmaskMode: 1 - blendWeights: 4 - textureQuality: 0 - anisotropicTextures: 2 - antiAliasing: 2 - softParticles: 1 - softVegetation: 1 - realtimeReflectionProbes: 1 - billboardsFaceCameraPosition: 1 - vSyncCount: 1 - lodBias: 2 - maximumLODLevel: 0 - particleRaycastBudget: 4096 - asyncUploadTimeSlice: 2 - asyncUploadBufferSize: 4 - resolutionScalingFixedDPIFactor: 1 - excludedTargetPlatforms: [] - m_PerPlatformDefaultQuality: - Android: 2 - Nintendo 3DS: 5 - Nintendo Switch: 5 - PS4: 5 - PSM: 5 - PSP2: 2 - Samsung TV: 2 - Standalone: 5 - Tizen: 2 - Web: 5 - WebGL: 3 - WiiU: 5 - Windows Store Apps: 5 - XboxOne: 5 - iPhone: 2 - tvOS: 2 diff --git a/ProjectSettings/SceneTemplateSettings.json b/ProjectSettings/SceneTemplateSettings.json deleted file mode 100644 index 5e97f83..0000000 --- a/ProjectSettings/SceneTemplateSettings.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "templatePinStates": [], - "dependencyTypeInfos": [ - { - "userAdded": false, - "type": "UnityEngine.AnimationClip", - "defaultInstantiationMode": 0 - }, - { - "userAdded": false, - "type": "UnityEditor.Animations.AnimatorController", - "defaultInstantiationMode": 0 - }, - { - "userAdded": false, - "type": "UnityEngine.AnimatorOverrideController", - "defaultInstantiationMode": 0 - }, - { - "userAdded": false, - "type": "UnityEditor.Audio.AudioMixerController", - "defaultInstantiationMode": 0 - }, - { - "userAdded": false, - "type": "UnityEngine.ComputeShader", - "defaultInstantiationMode": 1 - }, - { - "userAdded": false, - "type": "UnityEngine.Cubemap", - "defaultInstantiationMode": 0 - }, - { - "userAdded": false, - "type": "UnityEngine.GameObject", - "defaultInstantiationMode": 0 - }, - { - "userAdded": false, - "type": "UnityEditor.LightingDataAsset", - "defaultInstantiationMode": 0 - }, - { - "userAdded": false, - "type": "UnityEngine.LightingSettings", - "defaultInstantiationMode": 0 - }, - { - "userAdded": false, - "type": "UnityEngine.Material", - "defaultInstantiationMode": 0 - }, - { - "userAdded": false, - "type": "UnityEditor.MonoScript", - "defaultInstantiationMode": 1 - }, - { - "userAdded": false, - "type": "UnityEngine.PhysicMaterial", - "defaultInstantiationMode": 0 - }, - { - "userAdded": false, - "type": "UnityEngine.PhysicsMaterial2D", - "defaultInstantiationMode": 0 - }, - { - "userAdded": false, - "type": "UnityEngine.Rendering.PostProcessing.PostProcessProfile", - "defaultInstantiationMode": 0 - }, - { - "userAdded": false, - "type": "UnityEngine.Rendering.PostProcessing.PostProcessResources", - "defaultInstantiationMode": 0 - }, - { - "userAdded": false, - "type": "UnityEngine.Rendering.VolumeProfile", - "defaultInstantiationMode": 0 - }, - { - "userAdded": false, - "type": "UnityEditor.SceneAsset", - "defaultInstantiationMode": 1 - }, - { - "userAdded": false, - "type": "UnityEngine.Shader", - "defaultInstantiationMode": 1 - }, - { - "userAdded": false, - "type": "UnityEngine.ShaderVariantCollection", - "defaultInstantiationMode": 1 - }, - { - "userAdded": false, - "type": "UnityEngine.Texture", - "defaultInstantiationMode": 0 - }, - { - "userAdded": false, - "type": "UnityEngine.Texture2D", - "defaultInstantiationMode": 0 - }, - { - "userAdded": false, - "type": "UnityEngine.Timeline.TimelineAsset", - "defaultInstantiationMode": 0 - } - ], - "defaultDependencyTypeInfo": { - "userAdded": false, - "type": "", - "defaultInstantiationMode": 1 - }, - "newSceneOverride": 0 -} \ No newline at end of file diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset deleted file mode 100644 index 1c92a78..0000000 --- a/ProjectSettings/TagManager.asset +++ /dev/null @@ -1,43 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!78 &1 -TagManager: - serializedVersion: 2 - tags: [] - layers: - - Default - - TransparentFX - - Ignore Raycast - - - - Water - - UI - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - m_SortingLayers: - - name: Default - uniqueID: 0 - locked: 0 diff --git a/ProjectSettings/TimeManager.asset b/ProjectSettings/TimeManager.asset deleted file mode 100644 index 558a017..0000000 --- a/ProjectSettings/TimeManager.asset +++ /dev/null @@ -1,9 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!5 &1 -TimeManager: - m_ObjectHideFlags: 0 - Fixed Timestep: 0.02 - Maximum Allowed Timestep: 0.33333334 - m_TimeScale: 1 - Maximum Particle Timestep: 0.03 diff --git a/ProjectSettings/UnityConnectSettings.asset b/ProjectSettings/UnityConnectSettings.asset deleted file mode 100644 index 1cc5485..0000000 --- a/ProjectSettings/UnityConnectSettings.asset +++ /dev/null @@ -1,34 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!310 &1 -UnityConnectSettings: - m_ObjectHideFlags: 0 - m_Enabled: 0 - m_TestMode: 0 - m_TestEventUrl: - m_TestConfigUrl: - m_TestInitMode: 0 - CrashReportingSettings: - m_EventUrl: https://perf-events.cloud.unity3d.com/api/events/crashes - m_Enabled: 0 - m_CaptureEditorExceptions: 1 - UnityPurchasingSettings: - m_Enabled: 0 - m_TestMode: 0 - UnityAnalyticsSettings: - m_Enabled: 0 - m_InitializeOnStartup: 1 - m_TestMode: 0 - m_TestEventUrl: - m_TestConfigUrl: - UnityAdsSettings: - m_Enabled: 0 - m_InitializeOnStartup: 1 - m_TestMode: 0 - m_EnabledPlatforms: 4294967295 - m_IosGameId: - m_AndroidGameId: - m_GameIds: {} - m_GameId: - PerformanceReportingSettings: - m_Enabled: 0 diff --git a/ProjectSettings/VFXManager.asset b/ProjectSettings/VFXManager.asset deleted file mode 100644 index 852348b..0000000 --- a/ProjectSettings/VFXManager.asset +++ /dev/null @@ -1,18 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!937362698 &1 -VFXManager: - m_ObjectHideFlags: 0 - m_IndirectShader: {fileID: 0} - m_CopyBufferShader: {fileID: 0} - m_SortShader: {fileID: 0} - m_StripUpdateShader: {fileID: 0} - m_EmptyShader: {fileID: 0} - m_RenderPipeSettingsPath: - m_FixedTimeStep: 0.016666668 - m_MaxDeltaTime: 0.05 - m_MaxScrubTime: 30 - m_CompiledVersion: 0 - m_RuntimeVersion: 0 - m_RuntimeResources: {fileID: 0} - m_BatchEmptyLifetime: 300 diff --git a/ProjectSettings/VersionControlSettings.asset b/ProjectSettings/VersionControlSettings.asset deleted file mode 100644 index dca2881..0000000 --- a/ProjectSettings/VersionControlSettings.asset +++ /dev/null @@ -1,8 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!890905787 &1 -VersionControlSettings: - m_ObjectHideFlags: 0 - m_Mode: Visible Meta Files - m_CollabEditorSettings: - inProgressEnabled: 1 diff --git a/README.md b/README.md index 5aefa54..8c4d6bc 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ | [Getting Started](#getting-started) | [Features](#features) | [License](#license) | [Resources](#resources) | [Download](#download) | -|-------------------------------------|-----------------------|---------------------|-------------------------|-----------------------| +| ----------------------------------- | --------------------- | ------------------- | ----------------------- | --------------------- | # Unity Singleton -The best way to implement singleton pattern in Unity. By using this pattern you will be able to define Global variables and classes and use their methods and properties in Global. This pattern is a must have for most of the games that made using Unity engine. +The best way to implement singleton pattern in Unity. By using this pattern you will be able to define Global variables and classes and use their methods and properties in Global. This pattern is a must-have for most of the games that made using Unity engine. -:book: [Learn More about Singleton pattern](https://en.wikipedia.org/wiki/Singleton_pattern) +📖 [Learn More about Singleton pattern](https://en.wikipedia.org/wiki/Singleton_pattern) ## Features @@ -15,10 +15,19 @@ The best way to implement singleton pattern in Unity. By using this pattern you ## Getting Started -- [Download the Project](#download). -- Open the Project in Unity. -- Create your own Singleton classes by extending the Generic [:sparkles: Singleton :sparkles:](https://github.com/UnityCommunity/UnitySingleton/blob/master/Assets/Scripts/Singleton.cs) class. [:rocket: Check out the example GameManager](https://github.com/UnityCommunity/UnitySingleton/blob/master/Assets/Scripts/GameManager.cs) -- Attach your singleton classes to the GameManager game object in the _Preload scene. +This package can be added to your project via [Git UPM](https://docs.unity3d.com/6000.0/Documentation/Manual/upm-ui-giturl.html). +To add this package, copy: + +```shell +https://github.com/UnityCommunity/UnitySingleton.git +``` + +and add it as a git package in the Unity Package Manager by clicking on the "+" icon on the top left of the Package Manager Window, and selecting "Install package from git URL". + +Once you have the package installed, you may + +- Create your own Singleton classes by extending the Generic [✨ Singleton ✨](Runtime/Scripts/Singleton.cs) class. (🚀 Check out the example [GameManager](Samples~/Scripts/GameManager.cs) in the example [\_Preload scene](Samples~/Scenes/_Preload.unity).) +- Attach your singleton classes to a GameManager game object in a \_Preload scene of your own. - Edit the variables inside the inspector - Run the game and enjoy! @@ -30,6 +39,10 @@ Add `using UnityCommunity.UnitySingleton;` for using the classes. - Use `MonoSingleton` if you want a Scene-based singleton which is not persistent across scenes. - Use `PersistentMonoSingleton` if you want a Global and persistent singleton across scenes. +## Contribute + +Please refer to [CONTRIBUTING.md](CONTRIBUTING.md) for more information on how to contribute to this project. + ## Download Run the following command in terminal or command prompt to clone the repository: @@ -38,18 +51,16 @@ Run the following command in terminal or command prompt to clone the repository: git clone https://github.com/UnityCommunity/UnitySingleton.git ``` -Or [:fire: Download the master branch as zip](https://github.com/UnityCommunity/UnitySingleton/archive/master.zip). +Or [🔥 Download the master branch as zip](https://github.com/UnityCommunity/UnitySingleton/archive/master.zip). ## Resources -- [:book: UnityGeek Singleton Article](http://www.unitygeek.com/unity_c_singleton/) -- [:book: Stackoverflow Answer](https://stackoverflow.com/questions/35890932/unity-game-manager-script-works-only-one-time/35891919#35891919) -- [:book: Unity Offical Wiki Singleton](http://wiki.unity3d.com/index.php/Singleton) -- [:book: Singleton.cs Gist](https://gist.github.com/EmpireWorld/11ff050fc1affc733ea74a497ce42961) -- [:book: Wikipedia](https://en.wikipedia.org/wiki/Singleton_pattern) +- [📖 Wikipedia](https://en.wikipedia.org/wiki/Singleton_pattern) +- [📖 On the \_Preload Scene](https://stackoverflow.com/questions/35890932/unity-game-manager-script-works-only-one-time/35891919#35891919) +- [▶️ Deep dive into the Singleton Pattern](https://www.youtube.com/watch?v=mpM0C6quQjs) ## License MIT @ [Unity Community](https://github.com/UnityCommunity) -Made with :heart: by [Unity Community](https://github.com/UnityCommunity) +Made with ❤️ by [Unity Community](https://github.com/UnityCommunity) diff --git a/README.md.meta b/README.md.meta new file mode 100644 index 0000000..856cce1 --- /dev/null +++ b/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 8a91ec861a8abb547b8934ca3a3fd16d +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Runtime.meta b/Runtime.meta similarity index 77% rename from Assets/Scripts/Runtime.meta rename to Runtime.meta index e38c019..773465a 100644 --- a/Assets/Scripts/Runtime.meta +++ b/Runtime.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 12ef551e3d1bdfc43997d880a586ec38 +guid: ce805a05ddc963747a4dc94cb43e45af folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/Scripts/Samples.meta b/Runtime/Scripts.meta similarity index 77% rename from Assets/Scripts/Samples.meta rename to Runtime/Scripts.meta index 7a0e4c3..0bc5176 100644 --- a/Assets/Scripts/Samples.meta +++ b/Runtime/Scripts.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: aa2b4521c6351104eb54e7316550054e +guid: 6bbedb2a0fe1045428904f242ef23df1 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/Scripts/Runtime/ISingleton.cs b/Runtime/Scripts/ISingleton.cs similarity index 73% rename from Assets/Scripts/Runtime/ISingleton.cs rename to Runtime/Scripts/ISingleton.cs index 37048a0..b737a93 100644 --- a/Assets/Scripts/Runtime/ISingleton.cs +++ b/Runtime/Scripts/ISingleton.cs @@ -1,21 +1,12 @@ -using System.Collections; -using System.Collections.Generic; - -using UnityEngine; - namespace UnityCommunity.UnitySingleton { - /// /// The singleton interface. /// public interface ISingleton { - public void InitializeSingleton(); public void ClearSingleton(); - } - } \ No newline at end of file diff --git a/Runtime/Scripts/ISingleton.cs.meta b/Runtime/Scripts/ISingleton.cs.meta new file mode 100644 index 0000000..f142379 --- /dev/null +++ b/Runtime/Scripts/ISingleton.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: c74da12ece85ed04ab1bd15679da7a4e \ No newline at end of file diff --git a/Assets/Scripts/Runtime/MonoSingleton.cs b/Runtime/Scripts/MonoSingleton.cs similarity index 95% rename from Assets/Scripts/Runtime/MonoSingleton.cs rename to Runtime/Scripts/MonoSingleton.cs index 83aa2a2..d4bdd7b 100644 --- a/Assets/Scripts/Runtime/MonoSingleton.cs +++ b/Runtime/Scripts/MonoSingleton.cs @@ -1,20 +1,14 @@ -using System.Collections; -using System.Collections.Generic; - -using UnityCommunity.UnitySingleton; - -using UnityEngine; +using UnityEngine; namespace UnityCommunity.UnitySingleton { - /// /// The basic MonoBehaviour singleton implementation, this singleton is destroyed after scene changes, use if you want a persistent and global singleton instance. /// /// + [DefaultExecutionOrder(-50)] public abstract class MonoSingleton : MonoBehaviour, ISingleton where T : MonoSingleton { - #region Fields /// @@ -41,7 +35,11 @@ public static T Instance { if (instance == null) { +#if UNITY_6000 + instance = FindAnyObjectByType(); +#else instance = FindObjectOfType(); +#endif if (instance == null) { GameObject obj = new GameObject(); @@ -75,7 +73,7 @@ protected virtual void Awake() // Initialize existing instance InitializeSingleton(); } - else + else if (instance != this) { // Destory duplicates @@ -149,7 +147,5 @@ public static void DestroyInstance() } #endregion - } - -} \ No newline at end of file +} diff --git a/Runtime/Scripts/MonoSingleton.cs.meta b/Runtime/Scripts/MonoSingleton.cs.meta new file mode 100644 index 0000000..fc5b001 --- /dev/null +++ b/Runtime/Scripts/MonoSingleton.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: d1dd8bf5a34f8d44e82ce68fc0929036 \ No newline at end of file diff --git a/Assets/Scripts/Runtime/PersistentMonoSingleton.cs b/Runtime/Scripts/PersistentMonoSingleton.cs similarity index 59% rename from Assets/Scripts/Runtime/PersistentMonoSingleton.cs rename to Runtime/Scripts/PersistentMonoSingleton.cs index 2365119..8a19221 100644 --- a/Assets/Scripts/Runtime/PersistentMonoSingleton.cs +++ b/Runtime/Scripts/PersistentMonoSingleton.cs @@ -1,24 +1,26 @@ -using System.Collections; -using System.Collections.Generic; - -using UnityCommunity.UnitySingleton; - -using UnityEngine; +using UnityEngine; namespace UnityCommunity.UnitySingleton { - /// /// This singleton is persistent across scenes by calling . /// /// public abstract class PersistentMonoSingleton : MonoSingleton where T : MonoSingleton { - + /// + /// if this is true, this singleton will auto detach if it finds itself parented on awake + /// + [Tooltip("if this is true, this singleton will auto detach if it finds itself parented on awake")] + [SerializeField] private bool UnparentOnAwake = true; + #region Protected Methods protected override void OnInitializing() { + if (UnparentOnAwake) { + transform.SetParent(null); + } base.OnInitializing(); if (Application.isPlaying) { @@ -27,7 +29,5 @@ protected override void OnInitializing() } #endregion - } - } \ No newline at end of file diff --git a/Runtime/Scripts/PersistentMonoSingleton.cs.meta b/Runtime/Scripts/PersistentMonoSingleton.cs.meta new file mode 100644 index 0000000..2800fb1 --- /dev/null +++ b/Runtime/Scripts/PersistentMonoSingleton.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: c5a25f5168adee44b8aa5522c314a274 \ No newline at end of file diff --git a/Assets/Scripts/Runtime/Singleton.cs b/Runtime/Scripts/Singleton.cs similarity index 92% rename from Assets/Scripts/Runtime/Singleton.cs rename to Runtime/Scripts/Singleton.cs index 981a830..4766c1e 100644 --- a/Assets/Scripts/Runtime/Singleton.cs +++ b/Runtime/Scripts/Singleton.cs @@ -1,11 +1,5 @@ -using System.Collections; -using System.Collections.Generic; - -using UnityEngine; - -namespace UnityCommunity.UnitySingleton +namespace UnityCommunity.UnitySingleton { - public enum SingletonInitializationStatus { None, @@ -44,12 +38,12 @@ public static T Instance { get { - if (Instance == null) + if (instance == null) { //ensure that only one thread can execute lock (typeof(T)) { - if (Instance == null) + if (instance == null) { instance = new T(); instance.InitializeSingleton(); diff --git a/Runtime/Scripts/Singleton.cs.meta b/Runtime/Scripts/Singleton.cs.meta new file mode 100644 index 0000000..c25bf2f --- /dev/null +++ b/Runtime/Scripts/Singleton.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 84eb48fd76368e04598346d2598c5d6f \ No newline at end of file diff --git a/Runtime/UnityCommunity.UnitySingleton.asmdef b/Runtime/UnityCommunity.UnitySingleton.asmdef new file mode 100644 index 0000000..6ba9b84 --- /dev/null +++ b/Runtime/UnityCommunity.UnitySingleton.asmdef @@ -0,0 +1,14 @@ +{ + "name": "UnityCommunity.UnitySingleton", + "rootNamespace": "UnityCommunity.UnitySingleton", + "references": [], + "includePlatforms": [], + "excludePlatforms": [], + "allowUnsafeCode": false, + "overrideReferences": true, + "precompiledReferences": [], + "autoReferenced": true, + "defineConstraints": [], + "versionDefines": [], + "noEngineReferences": false +} \ No newline at end of file diff --git a/Assets/Scripts/Runtime/UnityCommunity.UnitySingleton.Runtime.asmdef.meta b/Runtime/UnityCommunity.UnitySingleton.asmdef.meta similarity index 76% rename from Assets/Scripts/Runtime/UnityCommunity.UnitySingleton.Runtime.asmdef.meta rename to Runtime/UnityCommunity.UnitySingleton.asmdef.meta index bea3a1f..269419a 100644 --- a/Assets/Scripts/Runtime/UnityCommunity.UnitySingleton.Runtime.asmdef.meta +++ b/Runtime/UnityCommunity.UnitySingleton.asmdef.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: d0b10caa629c1bf43b90a0347a51e434 +guid: de184cc3ec226704b92a2445e8648cf3 AssemblyDefinitionImporter: externalObjects: {} userData: diff --git a/Samples~/Readme.asset b/Samples~/Readme.asset new file mode 100644 index 0000000..b34adb1 --- /dev/null +++ b/Samples~/Readme.asset @@ -0,0 +1,33 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fcf7219bab7fe46a1ad266029b2fee19, type: 3} + m_Name: Readme + m_EditorClassIdentifier: + title: How to use Unity Singleton + sections: + - heading: Example Usage + text: + - This is a quick demo on how to use the Unity Singleton Package + - 'To quickly test it out:' + - "\u2022 Go to the Scenes in this Samples folder" + - "\u2022 Add the scenes in the following order" + - " \u2022 _Preload" + - " \u2022 Main Menu" + - "\u2022 Then open the Scenes folder and edit the name parameter on the GameManager component attached to the GameManager object" + - "\u2022 Save and press play" + - "\u2022 The scene will change to the Main Menu, and the log will print out the name provided" + - heading: Functionality overview + text: + - Add using UnityCommunity.UnitySingleton; for using the classes + - "\u2022 Use Singleton for plain C# classes" + - "\u2022 Use MonoSingleton if you want a Scene-based singleton which is not persistent across scenes" + - "\u2022 Use PersistentMonoSingleton if you want a Global and persistent singleton across scenes" diff --git a/Assets/Scripts.meta b/Samples~/SamplesGuideInfo/Scripts.meta similarity index 57% rename from Assets/Scripts.meta rename to Samples~/SamplesGuideInfo/Scripts.meta index 308b4a6..a143579 100644 --- a/Assets/Scripts.meta +++ b/Samples~/SamplesGuideInfo/Scripts.meta @@ -1,9 +1,8 @@ fileFormatVersion: 2 -guid: aaa3a38b294872e429be3a5a74721fa3 +guid: ff02088bc4508c64895365f91fac63de folderAsset: yes -timeCreated: 1505546752 -licenseType: Free DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Scenes.meta b/Samples~/SamplesGuideInfo/Scripts/Editor.meta similarity index 57% rename from Assets/Scenes.meta rename to Samples~/SamplesGuideInfo/Scripts/Editor.meta index 77787b9..f59f099 100644 --- a/Assets/Scenes.meta +++ b/Samples~/SamplesGuideInfo/Scripts/Editor.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 -guid: f7976d5cdeac54d44a4a18cefb75b672 +guid: 3ad9b87dffba344c89909c6d1b1c17e1 folderAsset: yes -timeCreated: 1505546764 -licenseType: Free +timeCreated: 1475593892 +licenseType: Store DefaultImporter: userData: assetBundleName: diff --git a/Samples~/SamplesGuideInfo/Scripts/Editor/ReadmeEditor.cs b/Samples~/SamplesGuideInfo/Scripts/Editor/ReadmeEditor.cs new file mode 100644 index 0000000..b86b095 --- /dev/null +++ b/Samples~/SamplesGuideInfo/Scripts/Editor/ReadmeEditor.cs @@ -0,0 +1,178 @@ +// Copyright (c) Unity Technologies. +// Based on the "URP TutorialInfo ReadmeEditor.cs" script included in URP template projects. +// +// Original asset by Unity Technologies. This version has been modified to display +// a custom Readme.asset in the Inspector about how to use the Singletons package +// +// Modified by github.com/ThatAmuzak - 2025 + +using UnityEngine; +using UnityEditor; +using System.IO; + +[CustomEditor(typeof(Readme))] +public class ReadmeEditor : Editor +{ + const float k_Space = 8f; + + static void RemoveTutorial() + { + string s_ReadmeSourcePath = GetReadmePath(); + if (string.IsNullOrEmpty(s_ReadmeSourcePath)) + { + Debug.LogWarning("Could not determine the Readme folder path."); + return; + } + + string s_ReadmeSourceDirectory = Path.GetDirectoryName(s_ReadmeSourcePath) + "\\SamplesGuideInfo"; + + if (EditorUtility.DisplayDialog("Remove Readme Assets", $"All contents under {s_ReadmeSourceDirectory} will be removed, are you sure you want to proceed?", "Proceed", "Cancel")) + { + if (Directory.Exists(s_ReadmeSourceDirectory)) + { + FileUtil.DeleteFileOrDirectory(s_ReadmeSourceDirectory); + FileUtil.DeleteFileOrDirectory(s_ReadmeSourceDirectory + ".meta"); + } + else + { + Debug.Log($"Could not find the Readme folder at {s_ReadmeSourceDirectory}"); + } + + var readmeAsset = SelectReadme(); + if (readmeAsset != null) + { + var path = AssetDatabase.GetAssetPath(readmeAsset); + FileUtil.DeleteFileOrDirectory(path + ".meta"); + FileUtil.DeleteFileOrDirectory(path); + } + + AssetDatabase.Refresh(); + } + } + + static string GetReadmePath() + { + var readmeAsset = Selection.activeObject; + if (readmeAsset == null) return string.Empty; + + string path = AssetDatabase.GetAssetPath(readmeAsset); + return path; + } + + static Readme SelectReadme() + { + var ids = AssetDatabase.FindAssets("Readme t:Readme"); + if (ids.Length == 1) + { + var readmeObject = AssetDatabase.LoadMainAssetAtPath(AssetDatabase.GUIDToAssetPath(ids[0])); + + Selection.objects = new[] { readmeObject }; + + return (Readme)readmeObject; + } + + Debug.Log("Couldn't find a readme"); + return null; + } + + protected override void OnHeaderGUI() + { + var readme = (Readme)target; + Init(); + + GUILayout.BeginHorizontal("In BigTitle"); + { + GUILayout.Space(k_Space); + GUILayout.BeginVertical(); + { + + GUILayout.FlexibleSpace(); + GUILayout.Label(readme.title, TitleStyle); + GUILayout.FlexibleSpace(); + } + GUILayout.EndVertical(); + GUILayout.FlexibleSpace(); + } + GUILayout.EndHorizontal(); + } + + public override void OnInspectorGUI() + { + var readme = (Readme)target; + Init(); + Rect rect; + foreach (var section in readme.sections) + { + GUILayout.Space(k_Space); + rect = EditorGUILayout.GetControlRect(false, 2 ); + rect.height = 2; + EditorGUI.DrawRect(rect, new Color ( 0.5f,0.5f,0.5f, 1 ) ); + GUILayout.Space(k_Space); + + if (!string.IsNullOrEmpty(section.heading)) + { + GUILayout.Label(section.heading, HeadingStyle); + } + + foreach (var subtext in section.text) + { + if (!string.IsNullOrEmpty(subtext)) + { + GUILayout.Label(subtext, BodyStyle); + } + } + } + GUILayout.Space(k_Space); + rect = EditorGUILayout.GetControlRect(false, 2 ); + rect.height = 2; + GUILayout.Space(k_Space); + if (GUILayout.Button("Remove Readme Assets", ButtonStyle)) + { + RemoveTutorial(); + } + } + + bool m_Initialized; + + GUIStyle TitleStyle => m_TitleStyle; + + [SerializeField] + GUIStyle m_TitleStyle; + + GUIStyle HeadingStyle => m_HeadingStyle; + + [SerializeField] + GUIStyle m_HeadingStyle; + + GUIStyle BodyStyle => m_BodyStyle; + + [SerializeField] + GUIStyle m_BodyStyle; + + GUIStyle ButtonStyle => m_ButtonStyle; + + [SerializeField] + GUIStyle m_ButtonStyle; + + void Init() + { + if (m_Initialized) + return; + m_BodyStyle = new GUIStyle(EditorStyles.label); + m_BodyStyle.wordWrap = true; + m_BodyStyle.fontSize = 14; + m_BodyStyle.richText = true; + + m_TitleStyle = new GUIStyle(m_BodyStyle); + m_TitleStyle.fontSize = 26; + + m_HeadingStyle = new GUIStyle(m_BodyStyle); + m_HeadingStyle.fontStyle = FontStyle.Bold; + m_HeadingStyle.fontSize = 18; + + m_ButtonStyle = new GUIStyle(EditorStyles.miniButton); + m_ButtonStyle.fontStyle = FontStyle.Bold; + + m_Initialized = true; + } +} diff --git a/Assets/Scripts/Runtime/ISingleton.cs.meta b/Samples~/SamplesGuideInfo/Scripts/Editor/ReadmeEditor.cs.meta similarity index 68% rename from Assets/Scripts/Runtime/ISingleton.cs.meta rename to Samples~/SamplesGuideInfo/Scripts/Editor/ReadmeEditor.cs.meta index 35b700c..f038618 100644 --- a/Assets/Scripts/Runtime/ISingleton.cs.meta +++ b/Samples~/SamplesGuideInfo/Scripts/Editor/ReadmeEditor.cs.meta @@ -1,7 +1,8 @@ fileFormatVersion: 2 -guid: 1e65ccf68dac32144b7b90ab5ad00d8d +guid: 476cc7d7cd9874016adc216baab94a0a +timeCreated: 1484146680 +licenseType: Store MonoImporter: - externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 diff --git a/Samples~/SamplesGuideInfo/Scripts/Readme.cs b/Samples~/SamplesGuideInfo/Scripts/Readme.cs new file mode 100644 index 0000000..694a393 --- /dev/null +++ b/Samples~/SamplesGuideInfo/Scripts/Readme.cs @@ -0,0 +1,25 @@ +// Copyright (c) Unity Technologies. +// Based on the "URP TutorialInfo ReadmeEditor.cs" script included in URP template projects. +// +// Original asset by Unity Technologies. This version has been modified to display +// a custom Readme.asset in the Inspector about how to use the Singletons package +// +// Modified by ThatAmuzak - 2025 + +using System; +using System.Collections.Generic; +using UnityEngine; + +[CreateAssetMenu(fileName = "Readme", menuName = "ScriptableObjects/Readme", order = 1)] +public class Readme : ScriptableObject +{ + public string title; + public Section[] sections; + + [Serializable] + public class Section + { + public string heading; + public List text; + } +} diff --git a/Samples~/SamplesGuideInfo/Scripts/Readme.cs.meta b/Samples~/SamplesGuideInfo/Scripts/Readme.cs.meta new file mode 100644 index 0000000..935153f --- /dev/null +++ b/Samples~/SamplesGuideInfo/Scripts/Readme.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fcf7219bab7fe46a1ad266029b2fee19 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: + - icon: {instanceID: 0} + executionOrder: 0 + icon: {fileID: 2800000, guid: a186f8a87ca4f4d3aa864638ad5dfb65, type: 3} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Samples~/Scenes.meta b/Samples~/Scenes.meta new file mode 100644 index 0000000..316590a --- /dev/null +++ b/Samples~/Scenes.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 7a33e7dcf21d4b4c9b9f058a7c61b34a +timeCreated: 1740108284 \ No newline at end of file diff --git a/Assets/Scenes/Game.unity b/Samples~/Scenes/Game.unity similarity index 56% rename from Assets/Scenes/Game.unity rename to Samples~/Scenes/Game.unity index d3500f6..da527d9 100644 --- a/Assets/Scenes/Game.unity +++ b/Samples~/Scenes/Game.unity @@ -13,7 +13,7 @@ OcclusionCullingSettings: --- !u!104 &2 RenderSettings: m_ObjectHideFlags: 0 - serializedVersion: 8 + serializedVersion: 10 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -38,62 +38,69 @@ RenderSettings: m_ReflectionIntensity: 1 m_CustomReflection: {fileID: 0} m_Sun: {fileID: 0} - m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_UseRadianceAmbientProbe: 0 --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 11 - m_GIWorkflowMode: 1 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 m_GISettings: serializedVersion: 2 m_BounceScale: 1 m_IndirectOutputScale: 1 m_AlbedoBoost: 1 - m_TemporalCoherenceThreshold: 1 m_EnvironmentLightingMode: 0 m_EnableBakedLightmaps: 1 - m_EnableRealtimeLightmaps: 1 + m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 9 + serializedVersion: 12 m_Resolution: 2 m_BakeResolution: 40 - m_TextureWidth: 1024 - m_TextureHeight: 1024 + m_AtlasSize: 1024 m_AO: 0 m_AOMaxDistance: 1 m_CompAOExponent: 1 m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 m_Padding: 2 m_LightmapParameters: {fileID: 0} m_LightmapsBakeMode: 1 m_TextureCompression: 1 - m_FinalGather: 0 - m_FinalGatherFiltering: 1 - m_FinalGatherRayCount: 256 m_ReflectionCompression: 2 m_MixedBakeMode: 2 - m_BakeBackend: 0 + m_BakeBackend: 1 m_PVRSampling: 1 m_PVRDirectSampleCount: 32 - m_PVRSampleCount: 500 + m_PVRSampleCount: 512 m_PVRBounces: 2 - m_PVRFiltering: 0 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 m_PVRCulling: 1 m_PVRFilteringGaussRadiusDirect: 1 - m_PVRFilteringGaussRadiusIndirect: 5 - m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousColorSigma: 1 - m_PVRFilteringAtrousNormalSigma: 1 - m_PVRFilteringAtrousPositionSigma: 1 - m_LightingDataAsset: {fileID: 0} - m_UseShadowmask: 1 + m_PVRFilteringGaussRadiusIndirect: 1 + m_PVRFilteringGaussRadiusAO: 1 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 20201, guid: 0000000000000000f000000000000000, type: 0} + m_LightingSettings: {fileID: 0} --- !u!196 &4 NavMeshSettings: serializedVersion: 2 m_ObjectHideFlags: 0 m_BuildSettings: - serializedVersion: 2 + serializedVersion: 3 agentTypeID: 0 agentRadius: 0.5 agentHeight: 2 @@ -106,17 +113,22 @@ NavMeshSettings: cellSize: 0.16666667 manualTileSize: 0 tileSize: 256 - accuratePlacement: 0 + buildHeightMesh: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 m_NavMeshData: {fileID: 0} ---- !u!1 &142967083 +--- !u!1 &816866412 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - - component: {fileID: 142967085} - - component: {fileID: 142967084} + - component: {fileID: 816866414} + - component: {fileID: 816866413} m_Layer: 0 m_Name: Directional Light m_TagString: Untagged @@ -124,19 +136,21 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!108 &142967084 +--- !u!108 &816866413 Light: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 142967083} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 816866412} m_Enabled: 1 - serializedVersion: 8 + serializedVersion: 11 m_Type: 1 m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} m_Intensity: 1 m_Range: 10 m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 m_CookieSize: 10 m_Shadows: m_Type: 2 @@ -146,6 +160,24 @@ Light: m_Bias: 0.05 m_NormalBias: 0.4 m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 m_Cookie: {fileID: 0} m_DrawHalo: 0 m_Flare: {fileID: 0} @@ -153,52 +185,48 @@ Light: m_CullingMask: serializedVersion: 2 m_Bits: 4294967295 + m_RenderingLayerMask: 1 m_Lightmapping: 4 + m_LightShadowCasterMode: 0 m_AreaSize: {x: 1, y: 1} m_BounceIntensity: 1 - m_FalloffTable: - m_Table[0]: 0 - m_Table[1]: 0 - m_Table[2]: 0 - m_Table[3]: 0 - m_Table[4]: 0 - m_Table[5]: 0 - m_Table[6]: 0 - m_Table[7]: 0 - m_Table[8]: 0 - m_Table[9]: 0 - m_Table[10]: 0 - m_Table[11]: 0 - m_Table[12]: 0 m_ColorTemperature: 6570 m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ForceVisible: 0 m_ShadowRadius: 0 m_ShadowAngle: 0 ---- !u!4 &142967085 + m_LightUnit: 1 + m_LuxAtDistance: 1 + m_EnableSpotReflector: 1 +--- !u!4 &816866414 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 142967083} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 816866412} + serializedVersion: 2 m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} m_LocalPosition: {x: 0, y: 3, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} ---- !u!1 &1020764077 +--- !u!1 &1379872856 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - - component: {fileID: 1020764082} - - component: {fileID: 1020764081} - - component: {fileID: 1020764080} - - component: {fileID: 1020764079} - - component: {fileID: 1020764078} + - component: {fileID: 1379872859} + - component: {fileID: 1379872858} + - component: {fileID: 1379872857} m_Layer: 0 m_Name: Main Camera m_TagString: MainCamera @@ -206,37 +234,39 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!81 &1020764078 +--- !u!81 &1379872857 AudioListener: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1020764077} - m_Enabled: 1 ---- !u!124 &1020764079 -Behaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1020764077} - m_Enabled: 1 ---- !u!92 &1020764080 -Behaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1020764077} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1379872856} m_Enabled: 1 ---- !u!20 &1020764081 +--- !u!20 &1379872858 Camera: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1020764077} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1379872856} m_Enabled: 1 serializedVersion: 2 m_ClearFlags: 1 m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} m_NormalizedViewPortRect: serializedVersion: 2 x: 0 @@ -258,21 +288,29 @@ Camera: m_TargetEye: 3 m_HDR: 1 m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 m_ForceIntoRT: 0 m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 - m_StereoMirrorMode: 0 ---- !u!4 &1020764082 +--- !u!4 &1379872859 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1020764077} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1379872856} + serializedVersion: 2 m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 1, z: -10} m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 1379872859} + - {fileID: 816866414} diff --git a/Assets/Scenes/Game.unity.meta b/Samples~/Scenes/Game.unity.meta similarity index 53% rename from Assets/Scenes/Game.unity.meta rename to Samples~/Scenes/Game.unity.meta index eeaabdc..972a491 100644 --- a/Assets/Scenes/Game.unity.meta +++ b/Samples~/Scenes/Game.unity.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 -guid: 499d8b731179029439d2ed711317b688 -timeCreated: 1505546838 -licenseType: Free +guid: 0ddcff96bc0ef8844abfa8c1f0f5c7a8 DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Scenes/Main Menu.unity b/Samples~/Scenes/Main Menu.unity similarity index 51% rename from Assets/Scenes/Main Menu.unity rename to Samples~/Scenes/Main Menu.unity index 69340ff..f7d4070 100644 --- a/Assets/Scenes/Main Menu.unity +++ b/Samples~/Scenes/Main Menu.unity @@ -13,7 +13,7 @@ OcclusionCullingSettings: --- !u!104 &2 RenderSettings: m_ObjectHideFlags: 0 - serializedVersion: 8 + serializedVersion: 10 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -38,62 +38,69 @@ RenderSettings: m_ReflectionIntensity: 1 m_CustomReflection: {fileID: 0} m_Sun: {fileID: 0} - m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_UseRadianceAmbientProbe: 0 --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 11 - m_GIWorkflowMode: 1 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 m_GISettings: serializedVersion: 2 m_BounceScale: 1 m_IndirectOutputScale: 1 m_AlbedoBoost: 1 - m_TemporalCoherenceThreshold: 1 m_EnvironmentLightingMode: 0 m_EnableBakedLightmaps: 1 - m_EnableRealtimeLightmaps: 1 + m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 9 + serializedVersion: 12 m_Resolution: 2 m_BakeResolution: 40 - m_TextureWidth: 1024 - m_TextureHeight: 1024 + m_AtlasSize: 1024 m_AO: 0 m_AOMaxDistance: 1 m_CompAOExponent: 1 m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 m_Padding: 2 m_LightmapParameters: {fileID: 0} m_LightmapsBakeMode: 1 m_TextureCompression: 1 - m_FinalGather: 0 - m_FinalGatherFiltering: 1 - m_FinalGatherRayCount: 256 m_ReflectionCompression: 2 m_MixedBakeMode: 2 - m_BakeBackend: 0 + m_BakeBackend: 1 m_PVRSampling: 1 m_PVRDirectSampleCount: 32 - m_PVRSampleCount: 500 + m_PVRSampleCount: 512 m_PVRBounces: 2 - m_PVRFiltering: 0 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 m_PVRCulling: 1 m_PVRFilteringGaussRadiusDirect: 1 - m_PVRFilteringGaussRadiusIndirect: 5 - m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousColorSigma: 1 - m_PVRFilteringAtrousNormalSigma: 1 - m_PVRFilteringAtrousPositionSigma: 1 - m_LightingDataAsset: {fileID: 0} - m_UseShadowmask: 1 + m_PVRFilteringGaussRadiusIndirect: 1 + m_PVRFilteringGaussRadiusAO: 1 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 20201, guid: 0000000000000000f000000000000000, type: 0} + m_LightingSettings: {fileID: 0} --- !u!196 &4 NavMeshSettings: serializedVersion: 2 m_ObjectHideFlags: 0 m_BuildSettings: - serializedVersion: 2 + serializedVersion: 3 agentTypeID: 0 agentRadius: 0.5 agentHeight: 2 @@ -106,106 +113,22 @@ NavMeshSettings: cellSize: 0.16666667 manualTileSize: 0 tileSize: 256 - accuratePlacement: 0 + buildHeightMesh: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 m_NavMeshData: {fileID: 0} ---- !u!1 &214353527 +--- !u!1 &830374137 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - - component: {fileID: 214353532} - - component: {fileID: 214353531} - - component: {fileID: 214353530} - - component: {fileID: 214353529} - - component: {fileID: 214353528} - m_Layer: 0 - m_Name: Main Camera - m_TagString: MainCamera - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!81 &214353528 -AudioListener: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 214353527} - m_Enabled: 1 ---- !u!124 &214353529 -Behaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 214353527} - m_Enabled: 1 ---- !u!92 &214353530 -Behaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 214353527} - m_Enabled: 1 ---- !u!20 &214353531 -Camera: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 214353527} - m_Enabled: 1 - serializedVersion: 2 - m_ClearFlags: 1 - m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} - m_NormalizedViewPortRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 1 - height: 1 - near clip plane: 0.3 - far clip plane: 1000 - field of view: 60 - orthographic: 0 - orthographic size: 5 - m_Depth: -1 - m_CullingMask: - serializedVersion: 2 - m_Bits: 4294967295 - m_RenderingPath: -1 - m_TargetTexture: {fileID: 0} - m_TargetDisplay: 0 - m_TargetEye: 3 - m_HDR: 1 - m_AllowMSAA: 1 - m_ForceIntoRT: 0 - m_OcclusionCulling: 1 - m_StereoConvergence: 10 - m_StereoSeparation: 0.022 - m_StereoMirrorMode: 0 ---- !u!4 &214353532 -Transform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 214353527} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 1, z: -10} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &667216367 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 667216369} - - component: {fileID: 667216368} + - component: {fileID: 830374139} + - component: {fileID: 830374138} m_Layer: 0 m_Name: Test m_TagString: Untagged @@ -213,39 +136,44 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!114 &667216368 +--- !u!114 &830374138 MonoBehaviour: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 667216367} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 830374137} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3830e8558eabcdb46914e81e3114bf45, type: 3} + m_Script: {fileID: 11500000, guid: 331da87ca46643538dbc0df750b99383, type: 3} m_Name: m_EditorClassIdentifier: ---- !u!4 &667216369 +--- !u!4 &830374139 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 667216367} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 830374137} + serializedVersion: 2 m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &877850609 +--- !u!1 &1720212551 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - - component: {fileID: 877850611} - - component: {fileID: 877850610} + - component: {fileID: 1720212553} + - component: {fileID: 1720212552} + - component: {fileID: 1720212554} m_Layer: 0 m_Name: Directional Light m_TagString: Untagged @@ -253,19 +181,21 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!108 &877850610 +--- !u!108 &1720212552 Light: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 877850609} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1720212551} m_Enabled: 1 - serializedVersion: 8 + serializedVersion: 11 m_Type: 1 m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} m_Intensity: 1 m_Range: 10 m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 m_CookieSize: 10 m_Shadows: m_Type: 2 @@ -275,6 +205,24 @@ Light: m_Bias: 0.05 m_NormalBias: 0.4 m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 m_Cookie: {fileID: 0} m_DrawHalo: 0 m_Flare: {fileID: 0} @@ -282,37 +230,156 @@ Light: m_CullingMask: serializedVersion: 2 m_Bits: 4294967295 + m_RenderingLayerMask: 1 m_Lightmapping: 4 + m_LightShadowCasterMode: 0 m_AreaSize: {x: 1, y: 1} m_BounceIntensity: 1 - m_FalloffTable: - m_Table[0]: 0 - m_Table[1]: 0 - m_Table[2]: 0 - m_Table[3]: 0 - m_Table[4]: 0 - m_Table[5]: 0 - m_Table[6]: 0 - m_Table[7]: 0 - m_Table[8]: 0 - m_Table[9]: 0 - m_Table[10]: 0 - m_Table[11]: 0 - m_Table[12]: 0 m_ColorTemperature: 6570 m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ForceVisible: 0 m_ShadowRadius: 0 m_ShadowAngle: 0 ---- !u!4 &877850611 + m_LightUnit: 1 + m_LuxAtDistance: 1 + m_EnableSpotReflector: 1 +--- !u!4 &1720212553 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 877850609} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1720212551} + serializedVersion: 2 m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} m_LocalPosition: {x: 0, y: 3, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!114 &1720212554 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1720212551} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Version: 3 + m_UsePipelineSettings: 1 + m_AdditionalLightsShadowResolutionTier: 2 + m_LightLayerMask: 1 + m_RenderingLayers: 1 + m_CustomShadowLayers: 0 + m_ShadowLayerMask: 1 + m_ShadowRenderingLayers: 1 + m_LightCookieSize: {x: 1, y: 1} + m_LightCookieOffset: {x: 0, y: 0} + m_SoftShadowQuality: 0 +--- !u!1 &1776611414 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1776611417} + - component: {fileID: 1776611416} + - component: {fileID: 1776611415} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!81 &1776611415 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1776611414} + m_Enabled: 1 +--- !u!20 &1776611416 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1776611414} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &1776611417 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1776611414} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: -10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 1776611417} + - {fileID: 1720212553} + - {fileID: 830374139} diff --git a/Assets/Scenes/Main Menu.unity.meta b/Samples~/Scenes/Main Menu.unity.meta similarity index 53% rename from Assets/Scenes/Main Menu.unity.meta rename to Samples~/Scenes/Main Menu.unity.meta index 124fdf1..b44d0aa 100644 --- a/Assets/Scenes/Main Menu.unity.meta +++ b/Samples~/Scenes/Main Menu.unity.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 -guid: fd897d8df8f2e6d43811bdc3fd3eb11e -timeCreated: 1505546822 -licenseType: Free +guid: 6ea71a6420da64341a3cdd2231fc6e26 DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Scenes/_Preload.unity b/Samples~/Scenes/_Preload.unity similarity index 60% rename from Assets/Scenes/_Preload.unity rename to Samples~/Scenes/_Preload.unity index 9ed566d..3a967b4 100644 --- a/Assets/Scenes/_Preload.unity +++ b/Samples~/Scenes/_Preload.unity @@ -13,7 +13,7 @@ OcclusionCullingSettings: --- !u!104 &2 RenderSettings: m_ObjectHideFlags: 0 - serializedVersion: 8 + serializedVersion: 10 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -38,62 +38,69 @@ RenderSettings: m_ReflectionIntensity: 1 m_CustomReflection: {fileID: 0} m_Sun: {fileID: 0} - m_IndirectSpecularColor: {r: 0.37311947, g: 0.38074005, b: 0.35872722, a: 1} + m_UseRadianceAmbientProbe: 0 --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 11 - m_GIWorkflowMode: 0 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 m_GISettings: serializedVersion: 2 m_BounceScale: 1 m_IndirectOutputScale: 1 m_AlbedoBoost: 1 - m_TemporalCoherenceThreshold: 1 m_EnvironmentLightingMode: 0 m_EnableBakedLightmaps: 1 - m_EnableRealtimeLightmaps: 1 + m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 9 + serializedVersion: 12 m_Resolution: 2 m_BakeResolution: 40 - m_TextureWidth: 1024 - m_TextureHeight: 1024 + m_AtlasSize: 1024 m_AO: 0 m_AOMaxDistance: 1 m_CompAOExponent: 1 m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 m_Padding: 2 m_LightmapParameters: {fileID: 0} m_LightmapsBakeMode: 1 m_TextureCompression: 1 - m_FinalGather: 0 - m_FinalGatherFiltering: 1 - m_FinalGatherRayCount: 256 m_ReflectionCompression: 2 m_MixedBakeMode: 2 - m_BakeBackend: 0 + m_BakeBackend: 1 m_PVRSampling: 1 m_PVRDirectSampleCount: 32 - m_PVRSampleCount: 500 + m_PVRSampleCount: 512 m_PVRBounces: 2 - m_PVRFiltering: 0 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 m_PVRCulling: 1 m_PVRFilteringGaussRadiusDirect: 1 - m_PVRFilteringGaussRadiusIndirect: 5 - m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousColorSigma: 1 - m_PVRFilteringAtrousNormalSigma: 1 - m_PVRFilteringAtrousPositionSigma: 1 - m_LightingDataAsset: {fileID: 0} - m_UseShadowmask: 1 + m_PVRFilteringGaussRadiusIndirect: 1 + m_PVRFilteringGaussRadiusAO: 1 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 20201, guid: 0000000000000000f000000000000000, type: 0} + m_LightingSettings: {fileID: 0} --- !u!196 &4 NavMeshSettings: serializedVersion: 2 m_ObjectHideFlags: 0 m_BuildSettings: - serializedVersion: 2 + serializedVersion: 3 agentTypeID: 0 agentRadius: 0.5 agentHeight: 2 @@ -106,17 +113,22 @@ NavMeshSettings: cellSize: 0.16666667 manualTileSize: 0 tileSize: 256 - accuratePlacement: 0 + buildHeightMesh: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 m_NavMeshData: {fileID: 0} ---- !u!1 &779268743 +--- !u!1 &203562652 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - - component: {fileID: 779268745} - - component: {fileID: 779268744} + - component: {fileID: 203562653} + - component: {fileID: 203562654} m_Layer: 0 m_Name: GameManager m_TagString: Untagged @@ -124,28 +136,36 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!114 &779268744 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 779268743} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0ca764009f215c14caab58653ce7251a, type: 3} - m_Name: - m_EditorClassIdentifier: - m_PlayerName: Hasan Bayat ---- !u!4 &779268745 +--- !u!4 &203562653 Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 779268743} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203562652} + serializedVersion: 2 m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &203562654 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203562652} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d4c34455da4a426fb79fdb00cf3f99b1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_PlayerName: Hasan Bayat +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 203562653} diff --git a/Assets/Scenes/_Preload.unity.meta b/Samples~/Scenes/_Preload.unity.meta similarity index 53% rename from Assets/Scenes/_Preload.unity.meta rename to Samples~/Scenes/_Preload.unity.meta index 740192d..93b6c51 100644 --- a/Assets/Scenes/_Preload.unity.meta +++ b/Samples~/Scenes/_Preload.unity.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 -guid: 5264bf0bd966f354a9b71d59147155c5 -timeCreated: 1505546812 -licenseType: Free +guid: 9a1cca499933f9f47ace2af7e40a5f27 DefaultImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Samples~/Scripts.meta b/Samples~/Scripts.meta new file mode 100644 index 0000000..4d99825 --- /dev/null +++ b/Samples~/Scripts.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: ed8313d3d1c1485581e662df6414d08e +timeCreated: 1740108276 \ No newline at end of file diff --git a/Assets/Scripts/Samples/GameManager.cs b/Samples~/Scripts/GameManager.cs similarity index 83% rename from Assets/Scripts/Samples/GameManager.cs rename to Samples~/Scripts/GameManager.cs index 25c0565..84688f2 100644 --- a/Assets/Scripts/Samples/GameManager.cs +++ b/Samples~/Scripts/GameManager.cs @@ -1,15 +1,10 @@ -using System.Collections; -using System.Collections.Generic; - -using UnityEngine; +using UnityEngine; using UnityEngine.SceneManagement; namespace UnityCommunity.UnitySingleton.Samples { - public class GameManager : PersistentMonoSingleton { - [SerializeField] protected string m_PlayerName; @@ -22,7 +17,5 @@ public string GetPlayerName() { return m_PlayerName; } - } - } \ No newline at end of file diff --git a/Samples~/Scripts/GameManager.cs.meta b/Samples~/Scripts/GameManager.cs.meta new file mode 100644 index 0000000..f0ffa07 --- /dev/null +++ b/Samples~/Scripts/GameManager.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: d4c34455da4a426fb79fdb00cf3f99b1 +timeCreated: 1740108150 \ No newline at end of file diff --git a/Assets/Scripts/Samples/SceneGameManager.cs b/Samples~/Scripts/SceneGameManager.cs similarity index 71% rename from Assets/Scripts/Samples/SceneGameManager.cs rename to Samples~/Scripts/SceneGameManager.cs index bba8775..5876129 100644 --- a/Assets/Scripts/Samples/SceneGameManager.cs +++ b/Samples~/Scripts/SceneGameManager.cs @@ -1,15 +1,9 @@ -using System.Collections; -using System.Collections.Generic; - -using UnityEngine; -using UnityEngine.SceneManagement; +using UnityEngine; namespace UnityCommunity.UnitySingleton.Samples { - public class SceneGameManager : MonoSingleton { - [SerializeField] protected string m_PlayerName = "NoSLoofah"; @@ -17,7 +11,5 @@ public string GetPlayerName() { return m_PlayerName; } - } - } \ No newline at end of file diff --git a/Samples~/Scripts/SceneGameManager.cs.meta b/Samples~/Scripts/SceneGameManager.cs.meta new file mode 100644 index 0000000..ad40dba --- /dev/null +++ b/Samples~/Scripts/SceneGameManager.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 6008d09c07034a338476992dc5791d31 +timeCreated: 1740108174 \ No newline at end of file diff --git a/Assets/Scripts/Samples/SceneTest.cs b/Samples~/Scripts/SceneTest.cs similarity index 72% rename from Assets/Scripts/Samples/SceneTest.cs rename to Samples~/Scripts/SceneTest.cs index 894e866..9d6bfbb 100644 --- a/Assets/Scripts/Samples/SceneTest.cs +++ b/Samples~/Scripts/SceneTest.cs @@ -1,11 +1,7 @@ -using System.Collections; -using System.Collections.Generic; - -using UnityEngine; +using UnityEngine; namespace UnityCommunity.UnitySingleton.Samples { - public class SceneTest : MonoBehaviour { void Start() @@ -13,5 +9,4 @@ void Start() Debug.Log(SceneGameManager.Instance.GetPlayerName()); } } - } \ No newline at end of file diff --git a/Samples~/Scripts/SceneTest.cs.meta b/Samples~/Scripts/SceneTest.cs.meta new file mode 100644 index 0000000..2fa438d --- /dev/null +++ b/Samples~/Scripts/SceneTest.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: da6211688755485cac17524804aecccb +timeCreated: 1740108184 \ No newline at end of file diff --git a/Assets/Scripts/Samples/Test.cs b/Samples~/Scripts/Test.cs similarity index 70% rename from Assets/Scripts/Samples/Test.cs rename to Samples~/Scripts/Test.cs index 7ddd9fd..246f611 100644 --- a/Assets/Scripts/Samples/Test.cs +++ b/Samples~/Scripts/Test.cs @@ -1,19 +1,12 @@ -using System.Collections; -using System.Collections.Generic; - -using UnityEngine; +using UnityEngine; namespace UnityCommunity.UnitySingleton.Samples { - public class Test : MonoBehaviour { - void Start() { Debug.Log(GameManager.Instance.GetPlayerName()); } - } - } \ No newline at end of file diff --git a/Samples~/Scripts/Test.cs.meta b/Samples~/Scripts/Test.cs.meta new file mode 100644 index 0000000..38addb5 --- /dev/null +++ b/Samples~/Scripts/Test.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 331da87ca46643538dbc0df750b99383 +timeCreated: 1740108212 \ No newline at end of file diff --git a/Samples~/UnityCommunity.UnitySingleton.Samples.asmdef b/Samples~/UnityCommunity.UnitySingleton.Samples.asmdef new file mode 100644 index 0000000..35f3983 --- /dev/null +++ b/Samples~/UnityCommunity.UnitySingleton.Samples.asmdef @@ -0,0 +1,16 @@ +{ + "name": "UnityCommunity.UnitySingleton.Samples", + "rootNamespace": "UnityCommunity.UnitySingleton.Samples", + "references": [ + "UnityCommunity.UnitySingleton" + ], + "includePlatforms": [], + "excludePlatforms": [], + "allowUnsafeCode": false, + "overrideReferences": false, + "precompiledReferences": [], + "autoReferenced": true, + "defineConstraints": [], + "versionDefines": [], + "noEngineReferences": false +} \ No newline at end of file diff --git a/Samples~/UnityCommunity.UnitySingleton.Samples.asmdef.meta b/Samples~/UnityCommunity.UnitySingleton.Samples.asmdef.meta new file mode 100644 index 0000000..a24b33a --- /dev/null +++ b/Samples~/UnityCommunity.UnitySingleton.Samples.asmdef.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 6ae01d2b31cd4efc8e8bff7d2af1c122 +timeCreated: 1740109230 \ No newline at end of file diff --git a/UserSettings/EditorUserSettings.asset b/UserSettings/EditorUserSettings.asset deleted file mode 100644 index 0781ebe..0000000 --- a/UserSettings/EditorUserSettings.asset +++ /dev/null @@ -1,25 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!162 &1 -EditorUserSettings: - m_ObjectHideFlags: 0 - serializedVersion: 4 - m_ConfigSettings: - vcSharedLogLevel: - value: 0d5e400f0650 - flags: 0 - m_VCAutomaticAdd: 1 - m_VCDebugCom: 0 - m_VCDebugCmd: 0 - m_VCDebugOut: 0 - m_SemanticMergeMode: 2 - m_DesiredImportWorkerCount: 6 - m_StandbyImportWorkerCount: 2 - m_IdleImportWorkerShutdownDelay: 60000 - m_VCShowFailedCheckout: 1 - m_VCOverwriteFailedCheckoutAssets: 1 - m_VCProjectOverlayIcons: 1 - m_VCHierarchyOverlayIcons: 1 - m_VCOtherOverlayIcons: 1 - m_VCAllowAsyncUpdate: 1 - m_ArtifactGarbageCollection: 1 diff --git a/UserSettings/Search.index b/UserSettings/Search.index deleted file mode 100644 index dba62d5..0000000 --- a/UserSettings/Search.index +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Assets", - "roots": ["Assets"], - "includes": [], - "excludes": [], - "options": { - "types": true, - "properties": true, - "extended": false, - "dependencies": false - }, - "baseScore": 999 -} \ No newline at end of file diff --git a/UserSettings/Search.settings b/UserSettings/Search.settings deleted file mode 100644 index 8d4fbd5..0000000 --- a/UserSettings/Search.settings +++ /dev/null @@ -1,75 +0,0 @@ -trackSelection = true -refreshSearchWindowsInPlayMode = false -fetchPreview = true -defaultFlags = 0 -keepOpen = false -queryFolder = "Assets" -onBoardingDoNotAskAgain = true -showPackageIndexes = false -showStatusBar = false -scopes = { -} -providers = { - packages = { - active = true - priority = 90 - defaultAction = null - } - profilermarkers = { - active = false - priority = 100 - defaultAction = null - } - store = { - active = true - priority = 100 - defaultAction = null - } - log = { - active = false - priority = 210 - defaultAction = null - } - scene = { - active = true - priority = 50 - defaultAction = null - } - find = { - active = true - priority = 25 - defaultAction = null - } - performance = { - active = false - priority = 100 - defaultAction = null - } - adb = { - active = false - priority = 2500 - defaultAction = null - } - asset = { - active = true - priority = 25 - defaultAction = null - } -} -objectSelectors = { -} -recentSearches = [ -] -searchItemFavorites = [ -] -savedSearchesSortOrder = 0 -showSavedSearchPanel = false -hideTabs = false -expandedQueries = [ -] -queryBuilder = false -ignoredProperties = "id;name;classname;imagecontentshash" -helperWidgetCurrentArea = "all" -disabledIndexers = "" -minIndexVariations = 2 -findProviderIndexHelper = true \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..5a46793 --- /dev/null +++ b/package.json @@ -0,0 +1,23 @@ +{ + "name": "com.unitycommunity.unitysingleton", + "version": "3.0.0", + "displayName": "Unity Singleton", + "description": "The best way to implement singleton pattern in Unity. ", + "unity": "2022.3", + "author": { + "name": "Unity Community", + "email": "hasanbayat1393@gmail.com" + }, + "scopedRegistries": [], + "changelogUrl": "https://github.com/UnityCommunity/UnitySingleton/blob/main/CHANGELOG.md", + "license": "MIT", + "licensesUrl": "https://github.com/UnityCommunity/UnitySingleton/blob/main/LICENSE", + "documentationUrl": "https://github.com/UnityCommunity/UnitySingleton/blob/main/README.md", + "samples": [ + { + "displayName": "Samples", + "description": "Sample scene with Singleton Setup. Based on a _Preload workflow", + "path": "Samples~/" + } + ] +} \ No newline at end of file diff --git a/package.json.meta b/package.json.meta new file mode 100644 index 0000000..8a06d92 --- /dev/null +++ b/package.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 721d2467222d0fa44bca492aea614254 +PackageManifestImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: