From a771b7888fea39a294c66e9d819f31d9422e63cb Mon Sep 17 00:00:00 2001 From: sin365 <353374337@qq.com> Date: Mon, 2 Jan 2023 14:47:39 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E5=88=B0URP?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AkiraPixelWind.sln | 32 +- Assembly-CSharp-Editor.csproj | 795 +++++++++++++ Assembly-CSharp.csproj | 884 +++++++------- Assets/Axibug/Axibug.prefab | 88 +- .../Prefabs/UI/UIYYControl/UIMgr.prefab | 103 +- Assets/Materials.meta | 8 + Assets/Materials/Skybox_Mat.mat | 89 ++ Assets/Materials/Skybox_Mat.mat.meta | 8 + Assets/Presets.meta | 8 + Assets/Presets/AudioCompressedInMemory.preset | 137 +++ .../AudioCompressedInMemory.preset.meta | 8 + Assets/Presets/AudioStreaming.preset | 137 +++ Assets/Presets/AudioStreaming.preset.meta | 8 + Assets/Presets/Defaults.meta | 8 + .../Defaults/AlbedoTexture_Default.preset | 497 ++++++++ .../AlbedoTexture_Default.preset.meta | 8 + .../Defaults/AudioDecompressOnLoad.preset | 137 +++ .../AudioDecompressOnLoad.preset.meta | 8 + .../Defaults/DirectionalLight_Default.preset | 137 +++ .../DirectionalLight_Default.preset.meta | 8 + Assets/Presets/NormalTexture.preset | 497 ++++++++ Assets/Presets/NormalTexture.preset.meta | 8 + Assets/Presets/UtilityTexture.preset | 497 ++++++++ Assets/Presets/UtilityTexture.preset.meta | 8 + Assets/Readme.asset | 50 + Assets/Readme.asset.meta | 8 + Assets/Scenes.meta | 2 +- Assets/Scenes/{Main.unity => MainScene.unity} | 488 +++++--- .../{Main.unity.meta => MainScene.unity.meta} | 2 +- .../Scenes/MainSceneLightingSettings.lighting | 63 + .../MainSceneLightingSettings.lighting.meta | 8 + Assets/Scripts.meta | 2 +- Assets/Scripts/SimpleCameraController.cs | 303 +++++ Assets/Scripts/SimpleCameraController.cs.meta | 11 + Assets/Settings.meta | 8 + Assets/Settings/ForwardRenderer.asset | 44 + Assets/Settings/ForwardRenderer.asset.meta | 8 + Assets/Settings/SampleSceneProfile.asset | 118 ++ Assets/Settings/SampleSceneProfile.asset.meta | 8 + Assets/Settings/UniversalRP-HighQuality.asset | 53 + .../UniversalRP-HighQuality.asset.meta | 8 + Assets/Settings/UniversalRP-LowQuality.asset | 53 + .../UniversalRP-LowQuality.asset.meta | 8 + .../Settings/UniversalRP-MediumQuality.asset | 53 + .../UniversalRP-MediumQuality.asset.meta | 8 + Assets/TutorialInfo.meta | 9 + Assets/TutorialInfo/Icons.meta | 9 + Assets/TutorialInfo/Icons/Help_Icon.png | Bin 0 -> 18108 bytes Assets/TutorialInfo/Icons/Help_Icon.png.meta | 128 ++ Assets/TutorialInfo/Icons/UniversalIcon.png | Bin 0 -> 132694 bytes .../TutorialInfo/Icons/UniversalIcon.png.meta | 128 ++ Assets/TutorialInfo/Layout.wlt | 654 +++++++++++ Assets/TutorialInfo/Layout.wlt.meta | 8 + Assets/TutorialInfo/Scripts.meta | 9 + Assets/TutorialInfo/Scripts/Editor.meta | 9 + .../Scripts/Editor/ReadmeEditor.cs | 158 +++ .../Scripts/Editor/ReadmeEditor.cs.meta | 12 + Assets/TutorialInfo/Scripts/Readme.cs | 14 + Assets/TutorialInfo/Scripts/Readme.cs.meta | 12 + Axibug.Editor.csproj | 427 ++++--- Axibug.Runtime.csproj | 922 +++++++-------- Axibug.csproj | 1028 ++++++++--------- Game.Editor.csproj | 429 ++++--- Game.csproj | 900 +++++++-------- Packages/manifest.json | 1 + Packages/packages-lock.json | 46 + ProjectSettings/AudioManager.asset | 2 +- ProjectSettings/DynamicsManager.asset | 10 +- ProjectSettings/EditorBuildSettings.asset | 5 +- ProjectSettings/EditorSettings.asset | 7 +- ProjectSettings/GraphicsSettings.asset | 11 +- ProjectSettings/InputManager.asset | 192 +++ ProjectSettings/PresetManager.asset | 24 +- ProjectSettings/ProjectSettings.asset | 72 +- ProjectSettings/QualitySettings.asset | 145 +-- ProjectSettings/TagManager.asset | 12 +- ProjectSettings/TimeManager.asset | 2 +- ProjectSettings/URPProjectSettings.asset | 15 + ProjectSettings/UnityConnectSettings.asset | 2 +- ProjectSettings/VFXManager.asset | 1 - Unity.AssetBundleBrowser.Editor.csproj | 435 ++++--- UserSettings/EditorUserSettings.asset | 4 +- 82 files changed, 8304 insertions(+), 2962 deletions(-) create mode 100644 Assembly-CSharp-Editor.csproj create mode 100644 Assets/Materials.meta create mode 100644 Assets/Materials/Skybox_Mat.mat create mode 100644 Assets/Materials/Skybox_Mat.mat.meta create mode 100644 Assets/Presets.meta create mode 100644 Assets/Presets/AudioCompressedInMemory.preset create mode 100644 Assets/Presets/AudioCompressedInMemory.preset.meta create mode 100644 Assets/Presets/AudioStreaming.preset create mode 100644 Assets/Presets/AudioStreaming.preset.meta create mode 100644 Assets/Presets/Defaults.meta create mode 100644 Assets/Presets/Defaults/AlbedoTexture_Default.preset create mode 100644 Assets/Presets/Defaults/AlbedoTexture_Default.preset.meta create mode 100644 Assets/Presets/Defaults/AudioDecompressOnLoad.preset create mode 100644 Assets/Presets/Defaults/AudioDecompressOnLoad.preset.meta create mode 100644 Assets/Presets/Defaults/DirectionalLight_Default.preset create mode 100644 Assets/Presets/Defaults/DirectionalLight_Default.preset.meta create mode 100644 Assets/Presets/NormalTexture.preset create mode 100644 Assets/Presets/NormalTexture.preset.meta create mode 100644 Assets/Presets/UtilityTexture.preset create mode 100644 Assets/Presets/UtilityTexture.preset.meta create mode 100644 Assets/Readme.asset create mode 100644 Assets/Readme.asset.meta rename Assets/Scenes/{Main.unity => MainScene.unity} (53%) rename Assets/Scenes/{Main.unity.meta => MainScene.unity.meta} (74%) create mode 100644 Assets/Scenes/MainSceneLightingSettings.lighting create mode 100644 Assets/Scenes/MainSceneLightingSettings.lighting.meta create mode 100644 Assets/Scripts/SimpleCameraController.cs create mode 100644 Assets/Scripts/SimpleCameraController.cs.meta create mode 100644 Assets/Settings.meta create mode 100644 Assets/Settings/ForwardRenderer.asset create mode 100644 Assets/Settings/ForwardRenderer.asset.meta create mode 100644 Assets/Settings/SampleSceneProfile.asset create mode 100644 Assets/Settings/SampleSceneProfile.asset.meta create mode 100644 Assets/Settings/UniversalRP-HighQuality.asset create mode 100644 Assets/Settings/UniversalRP-HighQuality.asset.meta create mode 100644 Assets/Settings/UniversalRP-LowQuality.asset create mode 100644 Assets/Settings/UniversalRP-LowQuality.asset.meta create mode 100644 Assets/Settings/UniversalRP-MediumQuality.asset create mode 100644 Assets/Settings/UniversalRP-MediumQuality.asset.meta create mode 100644 Assets/TutorialInfo.meta create mode 100644 Assets/TutorialInfo/Icons.meta create mode 100644 Assets/TutorialInfo/Icons/Help_Icon.png create mode 100644 Assets/TutorialInfo/Icons/Help_Icon.png.meta create mode 100644 Assets/TutorialInfo/Icons/UniversalIcon.png create mode 100644 Assets/TutorialInfo/Icons/UniversalIcon.png.meta create mode 100644 Assets/TutorialInfo/Layout.wlt create mode 100644 Assets/TutorialInfo/Layout.wlt.meta create mode 100644 Assets/TutorialInfo/Scripts.meta create mode 100644 Assets/TutorialInfo/Scripts/Editor.meta create mode 100644 Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs create mode 100644 Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta create mode 100644 Assets/TutorialInfo/Scripts/Readme.cs create mode 100644 Assets/TutorialInfo/Scripts/Readme.cs.meta create mode 100644 ProjectSettings/URPProjectSettings.asset diff --git a/AkiraPixelWind.sln b/AkiraPixelWind.sln index dc39c0d..114be59 100644 --- a/AkiraPixelWind.sln +++ b/AkiraPixelWind.sln @@ -7,11 +7,15 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Axibug.Runtime", "Axibug.Ru EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Axibug", "Axibug.csproj", "{1C6A6544-CF52-D2FA-C49F-74768676B988}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Axibug.Editor", "Axibug.Editor.csproj", "{627D77F4-C9BE-84D3-DB10-6046CB23071E}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp", "Assembly-CSharp.csproj", "{DCCC4B6C-854C-8A1A-E177-44093267F831}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Game.Editor", "Game.Editor.csproj", "{98FBFC68-818B-0A9E-7472-D409D606C424}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.AssetBundleBrowser.Editor", "Unity.AssetBundleBrowser.Editor.csproj", "{ABF204EF-1E2E-8CB2-72AF-91D7308875CD}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Game.Editor", "Game.Editor.csproj", "{98FBFC68-818B-0A9E-7472-D409D606C424}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Axibug.Editor", "Axibug.Editor.csproj", "{627D77F4-C9BE-84D3-DB10-6046CB23071E}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp-Editor", "Assembly-CSharp-Editor.csproj", "{A168D890-7B12-8BE2-A4ED-EF58FC71CA47}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -31,18 +35,26 @@ Global {1C6A6544-CF52-D2FA-C49F-74768676B988}.Debug|Any CPU.Build.0 = Debug|Any CPU {1C6A6544-CF52-D2FA-C49F-74768676B988}.Release|Any CPU.ActiveCfg = Release|Any CPU {1C6A6544-CF52-D2FA-C49F-74768676B988}.Release|Any CPU.Build.0 = Release|Any CPU - {627D77F4-C9BE-84D3-DB10-6046CB23071E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {627D77F4-C9BE-84D3-DB10-6046CB23071E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {627D77F4-C9BE-84D3-DB10-6046CB23071E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {627D77F4-C9BE-84D3-DB10-6046CB23071E}.Release|Any CPU.Build.0 = Release|Any CPU - {ABF204EF-1E2E-8CB2-72AF-91D7308875CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {ABF204EF-1E2E-8CB2-72AF-91D7308875CD}.Debug|Any CPU.Build.0 = Debug|Any CPU - {ABF204EF-1E2E-8CB2-72AF-91D7308875CD}.Release|Any CPU.ActiveCfg = Release|Any CPU - {ABF204EF-1E2E-8CB2-72AF-91D7308875CD}.Release|Any CPU.Build.0 = Release|Any CPU + {DCCC4B6C-854C-8A1A-E177-44093267F831}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DCCC4B6C-854C-8A1A-E177-44093267F831}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DCCC4B6C-854C-8A1A-E177-44093267F831}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DCCC4B6C-854C-8A1A-E177-44093267F831}.Release|Any CPU.Build.0 = Release|Any CPU {98FBFC68-818B-0A9E-7472-D409D606C424}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {98FBFC68-818B-0A9E-7472-D409D606C424}.Debug|Any CPU.Build.0 = Debug|Any CPU {98FBFC68-818B-0A9E-7472-D409D606C424}.Release|Any CPU.ActiveCfg = Release|Any CPU {98FBFC68-818B-0A9E-7472-D409D606C424}.Release|Any CPU.Build.0 = Release|Any CPU + {ABF204EF-1E2E-8CB2-72AF-91D7308875CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ABF204EF-1E2E-8CB2-72AF-91D7308875CD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ABF204EF-1E2E-8CB2-72AF-91D7308875CD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ABF204EF-1E2E-8CB2-72AF-91D7308875CD}.Release|Any CPU.Build.0 = Release|Any CPU + {627D77F4-C9BE-84D3-DB10-6046CB23071E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {627D77F4-C9BE-84D3-DB10-6046CB23071E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {627D77F4-C9BE-84D3-DB10-6046CB23071E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {627D77F4-C9BE-84D3-DB10-6046CB23071E}.Release|Any CPU.Build.0 = Release|Any CPU + {A168D890-7B12-8BE2-A4ED-EF58FC71CA47}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A168D890-7B12-8BE2-A4ED-EF58FC71CA47}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A168D890-7B12-8BE2-A4ED-EF58FC71CA47}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A168D890-7B12-8BE2-A4ED-EF58FC71CA47}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Assembly-CSharp-Editor.csproj b/Assembly-CSharp-Editor.csproj new file mode 100644 index 0000000..7a44627 --- /dev/null +++ b/Assembly-CSharp-Editor.csproj @@ -0,0 +1,795 @@ + + + + 8.0 + + + Debug + AnyCPU + 10.0.20506 + 2.0 + + {A168D890-7B12-8BE2-A4ED-EF58FC71CA47} + Library + Properties + Assembly-CSharp-Editor + v4.7.1 + 512 + . + + + true + full + false + Temp\Bin\Debug\ + UNITY_2020_3_33;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_CLOUD_FEATURES;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + prompt + 4 + 0169 + False + + + pdbonly + true + Temp\bin\Release\ + prompt + 4 + 0169 + False + + + true + true + false + false + false + + + {E097FAD1-6243-4DAD-9C02-E9B9EFC3FFC1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Package + 2.0.14 + Editor:5 + StandaloneWindows64:19 + 2020.3.33f1c2 + + + + + + + + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CloudFoundationModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEditor.Graphs.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll + + + C:\Program Files (x86)\Microsoft Visual Studio Tools for Unity\16.0\Editor\SyntaxTree.VisualStudio.Unity.Bridge.dll + + + Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + + Assets\Plugins\Google.Protobuf\System.Memory.dll + + + Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll + + + Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\unityplastic.dll + + + Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\log4netPlastic.dll + + + Assets\Plugins\Google.Protobuf\Google.Protobuf.dll + + + Library\PackageCache\com.unity.render-pipelines.core@10.9.0\Editor\ShaderGenerator\ICSharpCode.NRefactory.dll + + + Assets\Plugins\Google.Protobuf\System.Runtime.CompilerServices.Unsafe.dll + + + Assets\Plugins\Google.Protobuf\System.Buffers.dll + + + Assets\Plugins\likedll.dll + + + Library\PackageCache\com.unity.ext.nunit@1.0.6\net35\unity-custom\nunit.framework.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\mscorlib.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Core.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Runtime.Serialization.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.Linq.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.Vectors.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Net.Http.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.IO.Compression.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Microsoft.CSharp.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Data.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\Microsoft.Win32.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\netstandard.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.AppContext.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Concurrent.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.NonGeneric.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Specialized.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Annotations.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.EventBasedAsync.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.TypeConverter.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Console.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Data.Common.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Contracts.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Debug.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.FileVersionInfo.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Process.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.StackTrace.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TextWriterTraceListener.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Tools.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TraceSource.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Drawing.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Dynamic.Runtime.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Calendars.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Compression.ZipFile.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.DriveInfo.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Watcher.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.IsolatedStorage.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.MemoryMappedFiles.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Pipes.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.UnmanagedMemoryStream.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Expressions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Parallel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Queryable.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Http.Rtc.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NameResolution.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NetworkInformation.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Ping.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Requests.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Security.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Sockets.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebHeaderCollection.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.Client.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ObjectModel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.ILGeneration.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.Lightweight.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Reader.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.ResourceManager.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Writer.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.CompilerServices.VisualC.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Handles.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Numerics.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Formatters.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Json.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Xml.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Claims.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Algorithms.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Csp.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Encoding.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.X509Certificates.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Principal.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.SecureString.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Duplex.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Http.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.NetTcp.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Security.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.RegularExpressions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Overlapped.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.Parallel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Thread.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.ThreadPool.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Timer.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ValueTuple.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.ReaderWriter.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XDocument.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlDocument.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlSerializer.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.XDocument.dll + + + Library\ScriptAssemblies\UnityEngine.TestRunner.dll + + + Library\ScriptAssemblies\UnityEditor.TestRunner.dll + + + Library\ScriptAssemblies\Unity.VSCode.Editor.dll + + + Library\ScriptAssemblies\Unity.RenderPipelines.Universal.Shaders.dll + + + Library\ScriptAssemblies\Unity.RenderPipelines.Universal.Runtime.dll + + + Library\ScriptAssemblies\Unity.TextMeshPro.Editor.dll + + + Library\ScriptAssemblies\Unity.VisualStudio.Editor.dll + + + Library\ScriptAssemblies\Unity.Timeline.dll + + + Library\ScriptAssemblies\Unity.TextMeshPro.dll + + + Library\ScriptAssemblies\Unity.Searcher.Editor.dll + + + Library\ScriptAssemblies\Unity.RenderPipelines.Core.Runtime.dll + + + Library\ScriptAssemblies\UnityEditor.UI.dll + + + Library\ScriptAssemblies\Unity.PlasticSCM.Editor.dll + + + Library\ScriptAssemblies\Unity.Rider.Editor.dll + + + Library\ScriptAssemblies\Unity.RenderPipelines.Core.ShaderLibrary.dll + + + Library\ScriptAssemblies\UnityEngine.UI.dll + + + Library\ScriptAssemblies\Unity.Mathematics.dll + + + Library\ScriptAssemblies\Unity.ShaderGraph.Editor.dll + + + Library\ScriptAssemblies\Unity.RenderPipelines.Universal.Editor.dll + + + Library\ScriptAssemblies\Unity.RenderPipeline.Universal.ShaderLibrary.dll + + + Library\ScriptAssemblies\Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll + + + Library\ScriptAssemblies\Unity.Timeline.Editor.dll + + + Library\ScriptAssemblies\Unity.Mathematics.Editor.dll + + + Library\ScriptAssemblies\Unity.RenderPipelines.Core.Editor.dll + + + + + {DCCC4B6C-854C-8A1A-E177-44093267F831} + Assembly-CSharp + + + {ABF204EF-1E2E-8CB2-72AF-91D7308875CD} + Unity.AssetBundleBrowser.Editor + + + {627D77F4-C9BE-84D3-DB10-6046CB23071E} + Axibug.Editor + + + {88C9498B-28D5-9BC2-A070-28EA094BD304} + Axibug.Runtime + + + {98FBFC68-818B-0A9E-7472-D409D606C424} + Game.Editor + + + {1C6A6544-CF52-D2FA-C49F-74768676B988} + Axibug + + + {1E25715C-CDA3-48CD-B962-7142A7C4E9DE} + Game + + + + + + diff --git a/Assembly-CSharp.csproj b/Assembly-CSharp.csproj index 25af95a..2a90b9d 100644 --- a/Assembly-CSharp.csproj +++ b/Assembly-CSharp.csproj @@ -22,7 +22,7 @@ full false Temp\Bin\Debug\ - UNITY_2020_3_33;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_CLOUD_FEATURES;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + UNITY_2020_3_33;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_CLOUD_FEATURES;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169 @@ -53,242 +53,243 @@ 2020.3.33f1c2 - + - + + - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CloudFoundationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CloudFoundationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll Assets\Plugins\Google.Protobuf\System.Memory.dll @@ -305,375 +306,381 @@ Assets\Plugins\likedll.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Xcode.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Common.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\ref\2.0.0\netstandard.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\Microsoft.Win32.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.AppContext.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.Concurrent.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.NonGeneric.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.Specialized.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.TypeConverter.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Console.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Data.Common.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Contracts.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Debug.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Process.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.StackTrace.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Tools.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.TraceSource.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Tracing.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Drawing.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Dynamic.Runtime.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Globalization.Calendars.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Globalization.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Globalization.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.Compression.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.Compression.ZipFile.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.Watcher.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.IsolatedStorage.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.MemoryMappedFiles.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.Pipes.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.Expressions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.Parallel.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.Queryable.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Http.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.NameResolution.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.NetworkInformation.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Ping.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Requests.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Security.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Sockets.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.WebHeaderCollection.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.WebSockets.Client.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.WebSockets.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ObjectModel.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Reflection.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Reflection.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Reflection.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Resources.Reader.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Resources.ResourceManager.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Resources.Writer.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Handles.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.InteropServices.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Numerics.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Json.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Xml.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Claims.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Csp.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Encoding.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Principal.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.SecureString.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Text.Encoding.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Text.Encoding.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Text.RegularExpressions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Overlapped.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Tasks.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Tasks.Parallel.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Thread.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.ThreadPool.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Timer.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ValueTuple.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.ReaderWriter.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XDocument.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XmlDocument.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XmlSerializer.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XPath.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XPath.XDocument.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\Extensions\2.0.0\System.Numerics.Vectors.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\mscorlib.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.ComponentModel.Composition.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Core.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Data.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\mscorlib.dll - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Drawing.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.IO.Compression.FileSystem.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Net.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Numerics.dll + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Core.dll - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Runtime.Serialization.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.ServiceModel.Web.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Transactions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Web.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Windows.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Runtime.Serialization.dll - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Xml.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.dll - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Xml.Linq.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.Linq.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Xml.Serialization.dll + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.Vectors.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Net.Http.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.IO.Compression.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Microsoft.CSharp.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Data.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\Microsoft.Win32.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\netstandard.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.AppContext.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Concurrent.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.NonGeneric.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Specialized.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Annotations.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.EventBasedAsync.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.TypeConverter.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Console.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Data.Common.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Contracts.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Debug.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.FileVersionInfo.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Process.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.StackTrace.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TextWriterTraceListener.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Tools.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TraceSource.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Drawing.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Dynamic.Runtime.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Calendars.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Compression.ZipFile.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.DriveInfo.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Watcher.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.IsolatedStorage.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.MemoryMappedFiles.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Pipes.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.UnmanagedMemoryStream.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Expressions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Parallel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Queryable.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Http.Rtc.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NameResolution.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NetworkInformation.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Ping.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Requests.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Security.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Sockets.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebHeaderCollection.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.Client.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ObjectModel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.ILGeneration.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.Lightweight.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Reader.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.ResourceManager.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Writer.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.CompilerServices.VisualC.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Handles.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Numerics.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Formatters.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Json.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Xml.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Claims.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Algorithms.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Csp.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Encoding.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.X509Certificates.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Principal.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.SecureString.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Duplex.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Http.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.NetTcp.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Security.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.RegularExpressions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Overlapped.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.Parallel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Thread.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.ThreadPool.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Timer.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ValueTuple.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.ReaderWriter.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XDocument.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlDocument.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlSerializer.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.XDocument.dll Library\ScriptAssemblies\Unity.VSCode.Editor.dll + + Library\ScriptAssemblies\Unity.RenderPipelines.Universal.Shaders.dll + + + Library\ScriptAssemblies\Unity.RenderPipelines.Universal.Runtime.dll + Library\ScriptAssemblies\Unity.TextMeshPro.Editor.dll Library\ScriptAssemblies\Unity.VisualStudio.Editor.dll - - Library\ScriptAssemblies\Unity.Timeline.Editor.dll - Library\ScriptAssemblies\Unity.Timeline.dll Library\ScriptAssemblies\Unity.TextMeshPro.dll + + Library\ScriptAssemblies\Unity.Searcher.Editor.dll + + + Library\ScriptAssemblies\Unity.RenderPipelines.Core.Runtime.dll + Library\ScriptAssemblies\UnityEditor.UI.dll @@ -683,9 +690,36 @@ Library\ScriptAssemblies\Unity.Rider.Editor.dll + + Library\ScriptAssemblies\Unity.RenderPipelines.Core.ShaderLibrary.dll + Library\ScriptAssemblies\UnityEngine.UI.dll + + Library\ScriptAssemblies\Unity.Mathematics.dll + + + Library\ScriptAssemblies\Unity.ShaderGraph.Editor.dll + + + Library\ScriptAssemblies\Unity.RenderPipelines.Universal.Editor.dll + + + Library\ScriptAssemblies\Unity.RenderPipeline.Universal.ShaderLibrary.dll + + + Library\ScriptAssemblies\Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll + + + Library\ScriptAssemblies\Unity.Timeline.Editor.dll + + + Library\ScriptAssemblies\Unity.Mathematics.Editor.dll + + + Library\ScriptAssemblies\Unity.RenderPipelines.Core.Editor.dll + @@ -696,10 +730,6 @@ {627D77F4-C9BE-84D3-DB10-6046CB23071E} Axibug.Editor - - {1C6A6544-CF52-D2FA-C49F-74768676B988} - Axibug - {88C9498B-28D5-9BC2-A070-28EA094BD304} Axibug.Runtime @@ -708,6 +738,10 @@ {98FBFC68-818B-0A9E-7472-D409D606C424} Game.Editor + + {1C6A6544-CF52-D2FA-C49F-74768676B988} + Axibug + {1E25715C-CDA3-48CD-B962-7142A7C4E9DE} Game diff --git a/Assets/Axibug/Axibug.prefab b/Assets/Axibug/Axibug.prefab index 50226a6..4475542 100644 --- a/Assets/Axibug/Axibug.prefab +++ b/Assets/Axibug/Axibug.prefab @@ -197,89 +197,6 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: b1e6f7f2b29933741bdc9a6e1709b613, type: 3} m_Name: m_EditorClassIdentifier: ---- !u!1 &963194225 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 963194228} - - component: {fileID: 963194227} - - component: {fileID: 963194226} - m_Layer: 0 - m_Name: RoleCamera - m_TagString: MainCamera - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &963194228 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 963194225} - m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} - m_LocalPosition: {x: 0, y: 5, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 6993509460263203211} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} ---- !u!20 &963194227 -Camera: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 963194225} - m_Enabled: 1 - serializedVersion: 2 - m_ClearFlags: 3 - m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} - m_projectionMatrixMode: 1 - m_GateFitMode: 2 - m_FOVAxisMode: 0 - m_SensorSize: {x: 36, y: 24} - m_LensShift: {x: 0, y: 0} - m_FocalLength: 50 - m_NormalizedViewPortRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 1 - height: 1 - near clip plane: 0.3 - far clip plane: 20 - field of view: 60 - orthographic: 1 - orthographic size: 4 - m_Depth: 1 - m_CullingMask: - serializedVersion: 2 - m_Bits: 1920 - 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!81 &963194226 -AudioListener: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 963194225} - m_Enabled: 1 --- !u!1 &1300239976 GameObject: m_ObjectHideFlags: 0 @@ -667,8 +584,7 @@ Transform: 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_Children: - - {fileID: 963194228} + m_Children: [] m_Father: {fileID: 348142342} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -748,9 +664,9 @@ MonoBehaviour: m_AvailableProcedureTypeNames: - Game.ProcedureCheckVersion - Game.ProcedureLaunch - - Game.ProcedureLoadHotfix - Game.ProcedureSplash - Game.ProcedureUpdateVersion + - ProcedureInitSystem m_EntranceProcedureTypeName: Game.ProcedureLaunch --- !u!1 &7219867923705645490 GameObject: diff --git a/Assets/GameAssets/Prefabs/UI/UIYYControl/UIMgr.prefab b/Assets/GameAssets/Prefabs/UI/UIYYControl/UIMgr.prefab index e93532c..a24764b 100644 --- a/Assets/GameAssets/Prefabs/UI/UIYYControl/UIMgr.prefab +++ b/Assets/GameAssets/Prefabs/UI/UIYYControl/UIMgr.prefab @@ -10,13 +10,14 @@ GameObject: m_Component: - component: {fileID: 927088942} - component: {fileID: 927088941} + - component: {fileID: 8377977359272864668} m_Layer: 0 m_Name: Camera m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 + m_IsActive: 0 --- !u!4 &927088942 Transform: m_ObjectHideFlags: 0 @@ -74,6 +75,39 @@ Camera: m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 +--- !u!114 &8377977359272864668 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 927088939} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 --- !u!1 &1143469050170578 GameObject: m_ObjectHideFlags: 0 @@ -362,7 +396,6 @@ MonoBehaviour: m_EditorClassIdentifier: mode: 0 screenPointMax: {x: 0, y: 0} - m_Canvas: {fileID: 0} m_CanvasScaler: {fileID: 0} m_uiMgr: {fileID: 0} --- !u!1 &1680653295091926 @@ -789,108 +822,87 @@ PrefabInstance: propertyPath: m_Name value: TipsUI objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_Pivot.x value: 0.5 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_Pivot.y value: 0.5 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_RootOrder value: 0 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_AnchorMax.x value: 1 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_AnchorMax.y value: 1 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_AnchorMin.x value: 0 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_AnchorMin.y value: 0 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_SizeDelta.x value: 0 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_SizeDelta.y value: 0 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_LocalPosition.x value: 0 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_LocalPosition.y value: 0 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_LocalPosition.z value: 0 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_LocalRotation.w value: 1 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_LocalRotation.x value: 0 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_LocalRotation.y value: 0 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_LocalRotation.z value: 0 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_AnchoredPosition.x value: 0 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_LocalEulerAnglesHint.x value: 0 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_LocalEulerAnglesHint.y value: 0 objectReference: {fileID: 0} - - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + - target: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} propertyPath: m_LocalEulerAnglesHint.z value: 0 objectReference: {fileID: 0} @@ -898,7 +910,6 @@ PrefabInstance: m_SourcePrefab: {fileID: 100100000, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} --- !u!224 &5539281393800380099 stripped RectTransform: - m_CorrespondingSourceObject: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, - type: 3} + m_CorrespondingSourceObject: {fileID: 224537429145243674, guid: fa2bb67119bf3e7478e2c2f59adc7756, type: 3} m_PrefabInstance: {fileID: 5747380986524315353} m_PrefabAsset: {fileID: 0} diff --git a/Assets/Materials.meta b/Assets/Materials.meta new file mode 100644 index 0000000..ee17c23 --- /dev/null +++ b/Assets/Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d0234ba368eeec9418390da711bfdad0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Materials/Skybox_Mat.mat b/Assets/Materials/Skybox_Mat.mat new file mode 100644 index 0000000..ba73d5d --- /dev/null +++ b/Assets/Materials/Skybox_Mat.mat @@ -0,0 +1,89 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: Skybox_Mat + m_Shader: {fileID: 106, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: _METALLIC_SETUP _SUNDISK_HIGH_QUALITY + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AtmosphereThickness: 0.53 + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _Exposure: 1.25 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SunDisk: 2 + - _SunSize: 0.04 + - _SunSizeConvergence: 5 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _GroundColor: {r: 0.6392157, g: 0.6901961, b: 0.7411765, a: 1} + - _SkyTint: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} diff --git a/Assets/Materials/Skybox_Mat.mat.meta b/Assets/Materials/Skybox_Mat.mat.meta new file mode 100644 index 0000000..facef4a --- /dev/null +++ b/Assets/Materials/Skybox_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ffaa0b7117ba8c47a9d05ae701d4b4d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets.meta b/Assets/Presets.meta new file mode 100644 index 0000000..c3a6623 --- /dev/null +++ b/Assets/Presets.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 558255460b74ec04fa70b5570e9327bd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets/AudioCompressedInMemory.preset b/Assets/Presets/AudioCompressedInMemory.preset new file mode 100644 index 0000000..4ca91ac --- /dev/null +++ b/Assets/Presets/AudioCompressedInMemory.preset @@ -0,0 +1,137 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: AudioCompressedInMemory + m_TargetType: + m_NativeTypeID: 1020 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_ExternalObjects.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.loadType + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.compressionFormat + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.quality + value: 0.7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].first + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.loadType + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.compressionFormat + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.quality + value: 0.7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].first + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.loadType + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.compressionFormat + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.quality + value: 0.7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ForceToMono + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Normalize + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PreloadAudioData + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LoadInBackground + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Ambisonic + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_3D + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_UserData + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleName + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleVariant + value: + objectReference: {fileID: 0} diff --git a/Assets/Presets/AudioCompressedInMemory.preset.meta b/Assets/Presets/AudioCompressedInMemory.preset.meta new file mode 100644 index 0000000..cd0d563 --- /dev/null +++ b/Assets/Presets/AudioCompressedInMemory.preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2dd802e4d37c65149922028d3e973832 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets/AudioStreaming.preset b/Assets/Presets/AudioStreaming.preset new file mode 100644 index 0000000..8499ed8 --- /dev/null +++ b/Assets/Presets/AudioStreaming.preset @@ -0,0 +1,137 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: AudioStreaming + m_TargetType: + m_NativeTypeID: 1020 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_ExternalObjects.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.loadType + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.compressionFormat + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.quality + value: 0.7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].first + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.loadType + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.compressionFormat + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.quality + value: 0.7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].first + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.loadType + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.compressionFormat + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.quality + value: 0.7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ForceToMono + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Normalize + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PreloadAudioData + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LoadInBackground + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Ambisonic + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_3D + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_UserData + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleName + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleVariant + value: + objectReference: {fileID: 0} diff --git a/Assets/Presets/AudioStreaming.preset.meta b/Assets/Presets/AudioStreaming.preset.meta new file mode 100644 index 0000000..b7b8118 --- /dev/null +++ b/Assets/Presets/AudioStreaming.preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 86bcce7f5575b54408aa0f3a7d321039 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2655988077585873504 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets/Defaults.meta b/Assets/Presets/Defaults.meta new file mode 100644 index 0000000..959a49b --- /dev/null +++ b/Assets/Presets/Defaults.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 71ea82b02df99c2439e0dc8e4e1ebc24 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets/Defaults/AlbedoTexture_Default.preset b/Assets/Presets/Defaults/AlbedoTexture_Default.preset new file mode 100644 index 0000000..6137100 --- /dev/null +++ b/Assets/Presets/Defaults/AlbedoTexture_Default.preset @@ -0,0 +1,497 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: AlbedoTexture_Default + m_TargetType: + m_NativeTypeID: 1006 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_FileIDToRecycleName.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ExternalObjects.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_EnableMipMap + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_sRGBTexture + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LinearTexture + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_FadeOut + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_BorderMipMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapsPreserveCoverage + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaTestReferenceValue + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapFadeDistanceStart + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapFadeDistanceEnd + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ConvertToNormalMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ExternalNormalMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_HeightScale + value: 0.25 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_NormalMapFilter + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_IsReadable + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_StreamingMipmaps + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_StreamingMipmapsPriority + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_GrayScaleToAlpha + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_GenerateCubemap + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CubemapConvolution + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SeamlessCubemap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureFormat + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MaxTextureSize + value: 2048 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_FilterMode + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_Aniso + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_MipBias + value: -100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapU + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapV + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapW + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_NPOTScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Lightmap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteExtrude + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteMeshType + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Alignment + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePixelsToUnits + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteGenerateFallbackPhysicsShape + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaUsage + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaIsTransparency + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteTessellationDetail + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureType + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureShape + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SingleChannelComponent + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MaxTextureSizeSet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CompressionQualitySet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureFormatSet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.size + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_BuildTarget + value: DefaultTexturePlatform + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_BuildTarget + value: Standalone + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_BuildTarget + value: iPhone + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_BuildTarget + value: Android + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_BuildTarget + value: Windows Store Apps + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Sprites.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Outline.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_PhysicsShape.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Bones.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_SpriteID + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Vertices.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Indices.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Edges.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Weights.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePackingTag + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PSDRemoveMatte + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PSDShowRemoveMatteOption + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_UserData + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleName + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleVariant + value: + objectReference: {fileID: 0} diff --git a/Assets/Presets/Defaults/AlbedoTexture_Default.preset.meta b/Assets/Presets/Defaults/AlbedoTexture_Default.preset.meta new file mode 100644 index 0000000..2e7fd87 --- /dev/null +++ b/Assets/Presets/Defaults/AlbedoTexture_Default.preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e8537455c6c08bd4e8bf0be3707da685 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2655988077585873504 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets/Defaults/AudioDecompressOnLoad.preset b/Assets/Presets/Defaults/AudioDecompressOnLoad.preset new file mode 100644 index 0000000..dd415f6 --- /dev/null +++ b/Assets/Presets/Defaults/AudioDecompressOnLoad.preset @@ -0,0 +1,137 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: AudioDecompressOnLoad + m_TargetType: + m_NativeTypeID: 1020 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_ExternalObjects.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.loadType + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.compressionFormat + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.quality + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].first + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.loadType + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.compressionFormat + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.quality + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].first + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.loadType + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.compressionFormat + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.quality + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ForceToMono + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Normalize + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PreloadAudioData + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LoadInBackground + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Ambisonic + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_3D + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_UserData + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleName + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleVariant + value: + objectReference: {fileID: 0} diff --git a/Assets/Presets/Defaults/AudioDecompressOnLoad.preset.meta b/Assets/Presets/Defaults/AudioDecompressOnLoad.preset.meta new file mode 100644 index 0000000..8e3dd02 --- /dev/null +++ b/Assets/Presets/Defaults/AudioDecompressOnLoad.preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e7689051185d12f4298e1ebb2693a29f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets/Defaults/DirectionalLight_Default.preset b/Assets/Presets/Defaults/DirectionalLight_Default.preset new file mode 100644 index 0000000..24034e4 --- /dev/null +++ b/Assets/Presets/Defaults/DirectionalLight_Default.preset @@ -0,0 +1,137 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: DirectionalLight_Default + m_TargetType: + m_NativeTypeID: 108 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_Enabled + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Type + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Color.g + value: 0.95686275 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Color.b + value: 0.8392157 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Intensity + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Range + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpotAngle + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CookieSize + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Shadows.m_Type + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Shadows.m_Resolution + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Shadows.m_CustomResolution + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Shadows.m_Strength + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Shadows.m_Bias + value: 0.02 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Shadows.m_NormalBias + value: 0.1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Shadows.m_NearPlane + value: 0.1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Cookie + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DrawHalo + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Flare + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_RenderMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CullingMask.m_Bits + value: 4294967295 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Lightmapping + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LightShadowCasterMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AreaSize.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AreaSize.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_BounceIntensity + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ColorTemperature + value: 6570 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_UseColorTemperature + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ShadowRadius + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ShadowAngle + value: 0 + objectReference: {fileID: 0} diff --git a/Assets/Presets/Defaults/DirectionalLight_Default.preset.meta b/Assets/Presets/Defaults/DirectionalLight_Default.preset.meta new file mode 100644 index 0000000..ac83bf9 --- /dev/null +++ b/Assets/Presets/Defaults/DirectionalLight_Default.preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 463065d4f17d1d94d848aa127b94dd43 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2655988077585873504 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets/NormalTexture.preset b/Assets/Presets/NormalTexture.preset new file mode 100644 index 0000000..c6a771f --- /dev/null +++ b/Assets/Presets/NormalTexture.preset @@ -0,0 +1,497 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: NormalTexture + m_TargetType: + m_NativeTypeID: 1006 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_FileIDToRecycleName.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ExternalObjects.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_EnableMipMap + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_sRGBTexture + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LinearTexture + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_FadeOut + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_BorderMipMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapsPreserveCoverage + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaTestReferenceValue + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapFadeDistanceStart + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapFadeDistanceEnd + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ConvertToNormalMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ExternalNormalMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_HeightScale + value: 0.25 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_NormalMapFilter + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_IsReadable + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_StreamingMipmaps + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_StreamingMipmapsPriority + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_GrayScaleToAlpha + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_GenerateCubemap + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CubemapConvolution + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SeamlessCubemap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureFormat + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MaxTextureSize + value: 2048 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_FilterMode + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_Aniso + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_MipBias + value: -100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapU + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapV + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapW + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_NPOTScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Lightmap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteExtrude + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteMeshType + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Alignment + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePixelsToUnits + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteGenerateFallbackPhysicsShape + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaUsage + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaIsTransparency + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteTessellationDetail + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureType + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureShape + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SingleChannelComponent + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MaxTextureSizeSet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CompressionQualitySet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureFormatSet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.size + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_BuildTarget + value: DefaultTexturePlatform + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_BuildTarget + value: Standalone + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_BuildTarget + value: iPhone + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_BuildTarget + value: Android + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_BuildTarget + value: Windows Store Apps + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Sprites.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Outline.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_PhysicsShape.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Bones.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_SpriteID + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Vertices.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Indices.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Edges.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Weights.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePackingTag + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PSDRemoveMatte + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PSDShowRemoveMatteOption + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_UserData + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleName + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleVariant + value: + objectReference: {fileID: 0} diff --git a/Assets/Presets/NormalTexture.preset.meta b/Assets/Presets/NormalTexture.preset.meta new file mode 100644 index 0000000..33fcecf --- /dev/null +++ b/Assets/Presets/NormalTexture.preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 14a57cf3b9fa1c74b884aa7e0dcf1faa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2655988077585873504 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets/UtilityTexture.preset b/Assets/Presets/UtilityTexture.preset new file mode 100644 index 0000000..6b879d8 --- /dev/null +++ b/Assets/Presets/UtilityTexture.preset @@ -0,0 +1,497 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: UtilityTexture + m_TargetType: + m_NativeTypeID: 1006 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_FileIDToRecycleName.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ExternalObjects.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_EnableMipMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_sRGBTexture + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LinearTexture + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_FadeOut + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_BorderMipMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapsPreserveCoverage + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaTestReferenceValue + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapFadeDistanceStart + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapFadeDistanceEnd + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ConvertToNormalMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ExternalNormalMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_HeightScale + value: 0.25 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_NormalMapFilter + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_IsReadable + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_StreamingMipmaps + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_StreamingMipmapsPriority + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_GrayScaleToAlpha + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_GenerateCubemap + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CubemapConvolution + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SeamlessCubemap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureFormat + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MaxTextureSize + value: 2048 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_FilterMode + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_Aniso + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_MipBias + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapU + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapV + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapW + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_NPOTScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Lightmap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteExtrude + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteMeshType + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Alignment + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePixelsToUnits + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteGenerateFallbackPhysicsShape + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaUsage + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaIsTransparency + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteTessellationDetail + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureType + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureShape + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SingleChannelComponent + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MaxTextureSizeSet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CompressionQualitySet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureFormatSet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.size + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_BuildTarget + value: DefaultTexturePlatform + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_BuildTarget + value: Standalone + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_BuildTarget + value: iPhone + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_BuildTarget + value: Android + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_BuildTarget + value: Windows Store Apps + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_TextureCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Sprites.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Outline.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_PhysicsShape.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Bones.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_SpriteID + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Vertices.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Indices.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Edges.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Weights.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePackingTag + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PSDRemoveMatte + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PSDShowRemoveMatteOption + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_UserData + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleName + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleVariant + value: + objectReference: {fileID: 0} diff --git a/Assets/Presets/UtilityTexture.preset.meta b/Assets/Presets/UtilityTexture.preset.meta new file mode 100644 index 0000000..a11d2e9 --- /dev/null +++ b/Assets/Presets/UtilityTexture.preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 45f7b2e3c78185248b3adbb14429c2ab +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2655988077585873504 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Readme.asset b/Assets/Readme.asset new file mode 100644 index 0000000..4310d24 --- /dev/null +++ b/Assets/Readme.asset @@ -0,0 +1,50 @@ +%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: + icon: {fileID: 2800000, guid: 7801804018a7dcf42abb827444e18660, type: 3} + title: Universal Render Pipeline Template + sections: + - heading: Universal Render Pipeline + text: 'The Universal Project Template configures Project settings for Projects where performance, wide platform support, and ease of customizing graphics are the primary considerations.' + linkText: + url: + - heading: + text: 'This Template uses the Universal Render Pipeline (URP) and Shader Graph.' + linkText: + url: + - heading: + text: 'URP is prebuilt Scriptable Render Pipeline that is quick and easy to customize, and lets you create optimized graphics across a wide range of platforms. URP also includes an optimized 2D renderer complete with 2D lights and pixel perfect rendering, and an integrated post-processing solution.' + linkText: + url: + - heading: + text: 'Shader Graph is a tool that allows you to create shaders using a visual node editor instead of writing code.' + linkText: + url: + - heading: + text: 'This template contains a sample Scene that contains examples of how to configure lighting settings, Materials, Shaders, and post-processing effects in URP, several preconfigured Universal Render Pipeline Assets that let you quickly swap between graphics quality levels, and Presets that have been optimized for use with URP.' + linkText: + url: + - heading: + text: 'This template contains a sample Scene that contains examples of how to configure lighting settings, Materials, Shaders, and post-processing effects in URP, several preconfigured Universal Render Pipeline Assets that let you quickly swap between graphics quality levels, and Presets that have been optimized for use with URP.' + linkText: + url: + - heading: + text: 'To read more about URP and its built-in features, see the ' + linkText: URP documentation. + url: https://docs.unity3d.com/Packages/com.unity.render-pipelines.universal@latest/index.html + - heading: + text: 'For more information about Shader Graph, see the ' + linkText: Shader Graph documentation + url: https://docs.unity3d.com/Packages/com.unity.shadergraph@latest + loadedLayout: 1 diff --git a/Assets/Readme.asset.meta b/Assets/Readme.asset.meta new file mode 100644 index 0000000..0f2df39 --- /dev/null +++ b/Assets/Readme.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 83c2ed844a8c74b779a4c823d16594b1 +timeCreated: 1484217493 +licenseType: Store +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes.meta b/Assets/Scenes.meta index ce18ceb..cfaa6ba 100644 --- a/Assets/Scenes.meta +++ b/Assets/Scenes.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 46510c05b19540e4c97a396b4a7b19cb +guid: d4ecf1115bda82041b86fa53f582630e folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/Scenes/Main.unity b/Assets/Scenes/MainScene.unity similarity index 53% rename from Assets/Scenes/Main.unity rename to Assets/Scenes/MainScene.unity index 22e9448..1af3f8a 100644 --- a/Assets/Scenes/Main.unity +++ b/Assets/Scenes/MainScene.unity @@ -14,10 +14,10 @@ OcclusionCullingSettings: RenderSettings: m_ObjectHideFlags: 0 serializedVersion: 9 - m_Fog: 0 - m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_Fog: 1 + m_FogColor: {r: 0.65080994, g: 0.666729, b: 0.7075472, a: 1} m_FogMode: 3 - m_FogDensity: 0.01 + m_FogDensity: 0.05 m_LinearFogStart: 0 m_LinearFogEnd: 300 m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} @@ -25,8 +25,8 @@ RenderSettings: m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} m_AmbientIntensity: 1 m_AmbientMode: 0 - m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} - m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} + m_SubtractiveShadowColor: {r: 0.13296545, g: 0.19145328, b: 0.33962262, a: 1} + m_SkyboxMaterial: {fileID: 2100000, guid: 0ffaa0b7117ba8c47a9d05ae701d4b4d, type: 2} m_HaloStrength: 0.5 m_FlareStrength: 1 m_FlareFadeSpeed: 3 @@ -37,68 +37,68 @@ RenderSettings: m_ReflectionBounces: 1 m_ReflectionIntensity: 1 m_CustomReflection: {fileID: 0} - m_Sun: {fileID: 0} - m_IndirectSpecularColor: {r: 0.44657898, g: 0.4964133, b: 0.5748178, a: 1} + m_Sun: {fileID: 2138677392} + m_IndirectSpecularColor: {r: 0.2850269, g: 0.3713935, b: 0.49601045, a: 1} m_UseRadianceAmbientProbe: 0 --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 serializedVersion: 12 - m_GIWorkflowMode: 1 + m_GIWorkflowMode: 0 m_GISettings: serializedVersion: 2 m_BounceScale: 1 m_IndirectOutputScale: 1 m_AlbedoBoost: 1 - m_EnvironmentLightingMode: 0 + m_EnvironmentLightingMode: 1 m_EnableBakedLightmaps: 1 m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: serializedVersion: 12 m_Resolution: 2 - m_BakeResolution: 40 - m_AtlasSize: 1024 - m_AO: 0 + m_BakeResolution: 32 + m_AtlasSize: 512 + m_AO: 1 m_AOMaxDistance: 1 m_CompAOExponent: 1 - m_CompAOExponentDirect: 0 + m_CompAOExponentDirect: 0.3 m_ExtractAmbientOcclusion: 0 m_Padding: 2 m_LightmapParameters: {fileID: 0} - m_LightmapsBakeMode: 1 + m_LightmapsBakeMode: 0 m_TextureCompression: 1 m_FinalGather: 0 m_FinalGatherFiltering: 1 m_FinalGatherRayCount: 256 m_ReflectionCompression: 2 - m_MixedBakeMode: 2 + m_MixedBakeMode: 1 m_BakeBackend: 1 m_PVRSampling: 1 m_PVRDirectSampleCount: 32 - m_PVRSampleCount: 512 + m_PVRSampleCount: 256 m_PVRBounces: 2 m_PVREnvironmentSampleCount: 256 m_PVREnvironmentReferencePointCount: 2048 - m_PVRFilteringMode: 1 - m_PVRDenoiserTypeDirect: 1 - m_PVRDenoiserTypeIndirect: 1 - m_PVRDenoiserTypeAO: 1 + m_PVRFilteringMode: 2 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 m_PVRFilterTypeDirect: 0 m_PVRFilterTypeIndirect: 0 m_PVRFilterTypeAO: 0 - m_PVREnvironmentMIS: 1 + m_PVREnvironmentMIS: 0 m_PVRCulling: 1 m_PVRFilteringGaussRadiusDirect: 1 m_PVRFilteringGaussRadiusIndirect: 5 m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaDirect: 0.548 m_PVRFilteringAtrousPositionSigmaIndirect: 2 m_PVRFilteringAtrousPositionSigmaAO: 1 m_ExportTrainingData: 0 m_TrainingDataDestination: TrainingData m_LightProbeSampleCountMultiplier: 4 m_LightingDataAsset: {fileID: 0} - m_LightingSettings: {fileID: 0} + m_LightingSettings: {fileID: 4890085278179872738, guid: 477cc4148fad3449482a3bc3178594e2, type: 2} --- !u!196 &4 NavMeshSettings: serializedVersion: 2 @@ -123,48 +123,126 @@ NavMeshSettings: debug: m_Flags: 0 m_NavMeshData: {fileID: 0} ---- !u!1001 &86837571 +--- !u!1 &57299226 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 57299228} + - component: {fileID: 57299227} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &57299227 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 57299226} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &57299228 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 57299226} + 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_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &653260035 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 653260038} + - component: {fileID: 653260036} + m_Layer: 0 + m_Name: Post-process Volume + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &653260036 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 653260035} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 172515602e62fb746b5d573b38a5fe58, type: 3} + m_Name: + m_EditorClassIdentifier: + isGlobal: 1 + priority: 0 + blendDistance: 0 + weight: 1 + sharedProfile: {fileID: 11400000, guid: 10fc4df2da32a41aaa32d77bc913491c, type: 2} +--- !u!4 &653260038 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 653260035} + 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_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1475350494 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: m_TransformParent: {fileID: 0} m_Modifications: - - target: {fileID: 7219867922826372896, guid: c2b00befcb5658541b1e5a6850840fd3, type: 3} - propertyPath: m_AvailableProcedureTypeNames.Array.size - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 7219867922826372896, guid: c2b00befcb5658541b1e5a6850840fd3, type: 3} - propertyPath: m_AvailableProcedureTypeNames.Array.data[2] - value: Game.ProcedureSplash - objectReference: {fileID: 0} - - target: {fileID: 7219867922826372896, guid: c2b00befcb5658541b1e5a6850840fd3, type: 3} - propertyPath: m_AvailableProcedureTypeNames.Array.data[3] - value: Game.ProcedureUpdateVersion - objectReference: {fileID: 0} - - target: {fileID: 7219867922826372896, guid: c2b00befcb5658541b1e5a6850840fd3, type: 3} - propertyPath: m_AvailableProcedureTypeNames.Array.data[4] - value: ProcedureInitSystem - objectReference: {fileID: 0} - target: {fileID: 7219867924276195500, guid: c2b00befcb5658541b1e5a6850840fd3, type: 3} propertyPath: m_Name value: Axibug objectReference: {fileID: 0} - target: {fileID: 7219867924276195502, guid: c2b00befcb5658541b1e5a6850840fd3, type: 3} propertyPath: m_RootOrder - value: 3 + value: 4 objectReference: {fileID: 0} - target: {fileID: 7219867924276195502, guid: c2b00befcb5658541b1e5a6850840fd3, type: 3} propertyPath: m_LocalPosition.x - value: 1077.4392 + value: 0 objectReference: {fileID: 0} - target: {fileID: 7219867924276195502, guid: c2b00befcb5658541b1e5a6850840fd3, type: 3} propertyPath: m_LocalPosition.y - value: 453.25806 + value: 0 objectReference: {fileID: 0} - target: {fileID: 7219867924276195502, guid: c2b00befcb5658541b1e5a6850840fd3, type: 3} propertyPath: m_LocalPosition.z - value: -13.36145 + value: 0 objectReference: {fileID: 0} - target: {fileID: 7219867924276195502, guid: c2b00befcb5658541b1e5a6850840fd3, type: 3} propertyPath: m_LocalRotation.w @@ -196,7 +274,7 @@ PrefabInstance: objectReference: {fileID: 0} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: c2b00befcb5658541b1e5a6850840fd3, type: 3} ---- !u!1 &271893409 +--- !u!1 &1476386683 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -204,92 +282,94 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 271893411} - - component: {fileID: 271893410} + - component: {fileID: 1476386687} + - component: {fileID: 1476386686} + - component: {fileID: 1476386685} + - component: {fileID: 1476386684} m_Layer: 0 - m_Name: Directional Light + m_Name: Cube m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!108 &271893410 -Light: +--- !u!65 &1476386684 +BoxCollider: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 271893409} + m_GameObject: {fileID: 1476386683} + m_Material: {fileID: 0} + m_IsTrigger: 0 m_Enabled: 1 - serializedVersion: 10 - m_Type: 1 - m_Shape: 0 - 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 - m_Resolution: -1 - m_CustomResolution: -1 - m_Strength: 1 - 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} - m_RenderMode: 0 - m_CullingMask: - serializedVersion: 2 - m_Bits: 4294967295 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &1476386685 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1476386683} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 m_RenderingLayerMask: 1 - m_Lightmapping: 4 - m_LightShadowCasterMode: 0 - m_AreaSize: {x: 1, y: 1} - m_BounceIntensity: 1 - m_ColorTemperature: 6570 - m_UseColorTemperature: 0 - m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} - m_UseBoundingSphereOverride: 0 - m_UseViewFrustumForShadowCasterCull: 1 - m_ShadowRadius: 0 - m_ShadowAngle: 0 ---- !u!4 &271893411 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 31321ba15b8f8eb4c954353edc038b1d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &1476386686 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1476386683} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1476386687 Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 271893409} - m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} - m_LocalPosition: {x: 0, y: 3, z: 0} + m_GameObject: {fileID: 1476386683} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -1.95, y: 2.77, z: 10.84} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} ---- !u!1 &366157433 + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1687258581 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -297,8 +377,11 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 366157436} - - component: {fileID: 366157435} + - component: {fileID: 1687258585} + - component: {fileID: 1687258584} + - component: {fileID: 1687258582} + - component: {fileID: 1687258583} + - component: {fileID: 1687258586} m_Layer: 0 m_Name: MainCam m_TagString: MainCamera @@ -306,13 +389,62 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!20 &366157435 +--- !u!81 &1687258582 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1687258581} + m_Enabled: 1 +--- !u!114 &1687258583 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1687258581} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: be76e5f14cfee674cb30b491fb72b09b, type: 3} + m_Name: + m_EditorClassIdentifier: + boost: 3.5 + positionLerpTime: 0.2 + mouseSensitivity: 60 + mouseSensitivityCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5 + inSlope: 0 + outSlope: 5 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 2.5 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + rotationLerpTime: 0.01 + invertY: 0 +--- !u!20 &1687258584 Camera: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 366157433} + m_GameObject: {fileID: 1687258581} m_Enabled: 1 serializedVersion: 2 m_ClearFlags: 1 @@ -349,21 +481,54 @@ Camera: m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 ---- !u!4 &366157436 +--- !u!4 &1687258585 Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 366157433} + m_GameObject: {fileID: 1687258581} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 1, z: -10} + m_LocalPosition: {x: 0, y: 5.07, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 0} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &592808736 +--- !u!114 &1687258586 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1687258581} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 1 + m_Antialiasing: 1 + m_AntialiasingQuality: 2 + m_StopNaN: 1 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 +--- !u!1 &2138677391 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -371,41 +536,88 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 592808738} - - component: {fileID: 592808737} + - component: {fileID: 2138677393} + - component: {fileID: 2138677392} m_Layer: 0 - m_Name: EventSystem + m_Name: Directional Light m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!114 &592808737 -MonoBehaviour: +--- !u!108 &2138677392 +Light: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 592808736} + m_GameObject: {fileID: 2138677391} m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} - m_Name: - m_EditorClassIdentifier: - m_FirstSelected: {fileID: 0} - m_sendNavigationEvents: 1 - m_DragThreshold: 10 ---- !u!4 &592808738 + serializedVersion: 10 + m_Type: 1 + m_Shape: 0 + m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} + m_Intensity: 2 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.802082 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.02 + m_NormalBias: 0.1 + m_NearPlane: 0.1 + 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} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 1 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 6.957e-42, y: 1.02e-43, z: 5.09687e-39, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &2138677393 Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 592808736} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_GameObject: {fileID: 2138677391} + m_LocalRotation: {x: 0.7064338, y: 0.47771442, z: 0.030843567, w: 0.5213338} + m_LocalPosition: {x: 0.24, y: 3, z: 4.18} 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} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 45, y: 130, z: 90} diff --git a/Assets/Scenes/Main.unity.meta b/Assets/Scenes/MainScene.unity.meta similarity index 74% rename from Assets/Scenes/Main.unity.meta rename to Assets/Scenes/MainScene.unity.meta index c4a94ed..49be5f9 100644 --- a/Assets/Scenes/Main.unity.meta +++ b/Assets/Scenes/MainScene.unity.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 451a79be75d3332498c64373c72ca5bf +guid: d1c3109bdb54ad54c8a2b2838528e640 DefaultImporter: externalObjects: {} userData: diff --git a/Assets/Scenes/MainSceneLightingSettings.lighting b/Assets/Scenes/MainSceneLightingSettings.lighting new file mode 100644 index 0000000..b76b038 --- /dev/null +++ b/Assets/Scenes/MainSceneLightingSettings.lighting @@ -0,0 +1,63 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!850595691 &4890085278179872738 +LightingSettings: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: MainSceneLightingSettings + serializedVersion: 2 + m_GIWorkflowMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_RealtimeEnvironmentLighting: 0 + m_BounceScale: 1 + m_AlbedoBoost: 1 + m_IndirectOutputScale: 1 + m_UsingShadowmask: 0 + m_BakeBackend: 1 + m_LightmapMaxSize: 512 + m_BakeResolution: 32 + m_Padding: 2 + m_TextureCompression: 1 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0.3 + m_ExtractAO: 0 + m_MixedBakeMode: 0 + m_LightmapsBakeMode: 1 + m_FilterMode: 1 + m_LightmapParameters: {fileID: 0} + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_RealtimeResolution: 2 + m_ForceWhiteAlbedo: 0 + m_ForceUpdates: 0 + m_FinalGather: 0 + m_FinalGatherRayCount: 256 + m_FinalGatherFiltering: 1 + m_PVRCulling: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 256 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_LightProbeSampleCountMultiplier: 4 + m_PVRBounces: 2 + m_PVRRussianRouletteStartBounce: 2 + m_PVREnvironmentMIS: 0 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.548 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 diff --git a/Assets/Scenes/MainSceneLightingSettings.lighting.meta b/Assets/Scenes/MainSceneLightingSettings.lighting.meta new file mode 100644 index 0000000..8ddc05b --- /dev/null +++ b/Assets/Scenes/MainSceneLightingSettings.lighting.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 477cc4148fad3449482a3bc3178594e2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts.meta b/Assets/Scripts.meta index 4643df9..2b27efa 100644 --- a/Assets/Scripts.meta +++ b/Assets/Scripts.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 5e44fd5cab63f944daf67d42bfe980e4 +guid: 02a3527b6b33a924e8ec66aa805ea717 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/Scripts/SimpleCameraController.cs b/Assets/Scripts/SimpleCameraController.cs new file mode 100644 index 0000000..c878e02 --- /dev/null +++ b/Assets/Scripts/SimpleCameraController.cs @@ -0,0 +1,303 @@ +#if ENABLE_INPUT_SYSTEM +using UnityEngine.InputSystem; +#endif + +using UnityEngine; + +namespace UnityTemplateProjects +{ + public class SimpleCameraController : MonoBehaviour + { + class CameraState + { + public float yaw; + public float pitch; + public float roll; + public float x; + public float y; + public float z; + + public void SetFromTransform(Transform t) + { + pitch = t.eulerAngles.x; + yaw = t.eulerAngles.y; + roll = t.eulerAngles.z; + x = t.position.x; + y = t.position.y; + z = t.position.z; + } + + public void Translate(Vector3 translation) + { + Vector3 rotatedTranslation = Quaternion.Euler(pitch, yaw, roll) * translation; + + x += rotatedTranslation.x; + y += rotatedTranslation.y; + z += rotatedTranslation.z; + } + + public void LerpTowards(CameraState target, float positionLerpPct, float rotationLerpPct) + { + yaw = Mathf.Lerp(yaw, target.yaw, rotationLerpPct); + pitch = Mathf.Lerp(pitch, target.pitch, rotationLerpPct); + roll = Mathf.Lerp(roll, target.roll, rotationLerpPct); + + x = Mathf.Lerp(x, target.x, positionLerpPct); + y = Mathf.Lerp(y, target.y, positionLerpPct); + z = Mathf.Lerp(z, target.z, positionLerpPct); + } + + public void UpdateTransform(Transform t) + { + t.eulerAngles = new Vector3(pitch, yaw, roll); + t.position = new Vector3(x, y, z); + } + } + + const float k_MouseSensitivityMultiplier = 0.01f; + + CameraState m_TargetCameraState = new CameraState(); + CameraState m_InterpolatingCameraState = new CameraState(); + + [Header("Movement Settings")] + [Tooltip("Exponential boost factor on translation, controllable by mouse wheel.")] + public float boost = 3.5f; + + [Tooltip("Time it takes to interpolate camera position 99% of the way to the target."), Range(0.001f, 1f)] + public float positionLerpTime = 0.2f; + + [Header("Rotation Settings")] + [Tooltip("Multiplier for the sensitivity of the rotation.")] + public float mouseSensitivity = 60.0f; + + [Tooltip("X = Change in mouse position.\nY = Multiplicative factor for camera rotation.")] + public AnimationCurve mouseSensitivityCurve = new AnimationCurve(new Keyframe(0f, 0.5f, 0f, 5f), new Keyframe(1f, 2.5f, 0f, 0f)); + + [Tooltip("Time it takes to interpolate camera rotation 99% of the way to the target."), Range(0.001f, 1f)] + public float rotationLerpTime = 0.01f; + + [Tooltip("Whether or not to invert our Y axis for mouse input to rotation.")] + public bool invertY = false; + +#if ENABLE_INPUT_SYSTEM + InputAction movementAction; + InputAction verticalMovementAction; + InputAction lookAction; + InputAction boostFactorAction; + bool mouseRightButtonPressed; + + void Start() + { + var map = new InputActionMap("Simple Camera Controller"); + + lookAction = map.AddAction("look", binding: "/delta"); + movementAction = map.AddAction("move", binding: "/leftStick"); + verticalMovementAction = map.AddAction("Vertical Movement"); + boostFactorAction = map.AddAction("Boost Factor", binding: "/scroll"); + + lookAction.AddBinding("/rightStick").WithProcessor("scaleVector2(x=15, y=15)"); + movementAction.AddCompositeBinding("Dpad") + .With("Up", "/w") + .With("Up", "/upArrow") + .With("Down", "/s") + .With("Down", "/downArrow") + .With("Left", "/a") + .With("Left", "/leftArrow") + .With("Right", "/d") + .With("Right", "/rightArrow"); + verticalMovementAction.AddCompositeBinding("Dpad") + .With("Up", "/pageUp") + .With("Down", "/pageDown") + .With("Up", "/e") + .With("Down", "/q") + .With("Up", "/rightshoulder") + .With("Down", "/leftshoulder"); + boostFactorAction.AddBinding("/Dpad").WithProcessor("scaleVector2(x=1, y=4)"); + + movementAction.Enable(); + lookAction.Enable(); + verticalMovementAction.Enable(); + boostFactorAction.Enable(); + } +#endif + + void OnEnable() + { + m_TargetCameraState.SetFromTransform(transform); + m_InterpolatingCameraState.SetFromTransform(transform); + } + + Vector3 GetInputTranslationDirection() + { + Vector3 direction = Vector3.zero; +#if ENABLE_INPUT_SYSTEM + var moveDelta = movementAction.ReadValue(); + direction.x = moveDelta.x; + direction.z = moveDelta.y; + direction.y = verticalMovementAction.ReadValue().y; +#else + if (Input.GetKey(KeyCode.W)) + { + direction += Vector3.forward; + } + if (Input.GetKey(KeyCode.S)) + { + direction += Vector3.back; + } + if (Input.GetKey(KeyCode.A)) + { + direction += Vector3.left; + } + if (Input.GetKey(KeyCode.D)) + { + direction += Vector3.right; + } + if (Input.GetKey(KeyCode.Q)) + { + direction += Vector3.down; + } + if (Input.GetKey(KeyCode.E)) + { + direction += Vector3.up; + } +#endif + return direction; + } + + void Update() + { + // Exit Sample + + if (IsEscapePressed()) + { + Application.Quit(); + #if UNITY_EDITOR + UnityEditor.EditorApplication.isPlaying = false; + #endif + } + + // Hide and lock cursor when right mouse button pressed + if (IsRightMouseButtonDown()) + { + Cursor.lockState = CursorLockMode.Locked; + } + + // Unlock and show cursor when right mouse button released + if (IsRightMouseButtonUp()) + { + Cursor.visible = true; + Cursor.lockState = CursorLockMode.None; + } + + // Rotation + if (IsCameraRotationAllowed()) + { + var mouseMovement = GetInputLookRotation() * k_MouseSensitivityMultiplier * mouseSensitivity; + if (invertY) + mouseMovement.y = -mouseMovement.y; + + var mouseSensitivityFactor = mouseSensitivityCurve.Evaluate(mouseMovement.magnitude); + + m_TargetCameraState.yaw += mouseMovement.x * mouseSensitivityFactor; + m_TargetCameraState.pitch += mouseMovement.y * mouseSensitivityFactor; + } + + // Translation + var translation = GetInputTranslationDirection() * Time.deltaTime; + + // Speed up movement when shift key held + if (IsBoostPressed()) + { + translation *= 10.0f; + } + + // Modify movement by a boost factor (defined in Inspector and modified in play mode through the mouse scroll wheel) + boost += GetBoostFactor(); + translation *= Mathf.Pow(2.0f, boost); + + m_TargetCameraState.Translate(translation); + + // Framerate-independent interpolation + // Calculate the lerp amount, such that we get 99% of the way to our target in the specified time + var positionLerpPct = 1f - Mathf.Exp((Mathf.Log(1f - 0.99f) / positionLerpTime) * Time.deltaTime); + var rotationLerpPct = 1f - Mathf.Exp((Mathf.Log(1f - 0.99f) / rotationLerpTime) * Time.deltaTime); + m_InterpolatingCameraState.LerpTowards(m_TargetCameraState, positionLerpPct, rotationLerpPct); + + m_InterpolatingCameraState.UpdateTransform(transform); + } + + float GetBoostFactor() + { +#if ENABLE_INPUT_SYSTEM + return boostFactorAction.ReadValue().y * 0.01f; +#else + return Input.mouseScrollDelta.y * 0.01f; +#endif + } + + Vector2 GetInputLookRotation() + { + // try to compensate the diff between the two input systems by multiplying with empirical values +#if ENABLE_INPUT_SYSTEM + var delta = lookAction.ReadValue(); + delta *= 0.5f; // Account for scaling applied directly in Windows code by old input system. + delta *= 0.1f; // Account for sensitivity setting on old Mouse X and Y axes. + return delta; +#else + return new Vector2(Input.GetAxis("Mouse X"), Input.GetAxis("Mouse Y")); +#endif + } + + bool IsBoostPressed() + { +#if ENABLE_INPUT_SYSTEM + bool boost = Keyboard.current != null ? Keyboard.current.leftShiftKey.isPressed : false; + boost |= Gamepad.current != null ? Gamepad.current.xButton.isPressed : false; + return boost; +#else + return Input.GetKey(KeyCode.LeftShift); +#endif + + } + + bool IsEscapePressed() + { +#if ENABLE_INPUT_SYSTEM + return Keyboard.current != null ? Keyboard.current.escapeKey.isPressed : false; +#else + return Input.GetKey(KeyCode.Escape); +#endif + } + + bool IsCameraRotationAllowed() + { +#if ENABLE_INPUT_SYSTEM + bool canRotate = Mouse.current != null ? Mouse.current.rightButton.isPressed : false; + canRotate |= Gamepad.current != null ? Gamepad.current.rightStick.ReadValue().magnitude > 0 : false; + return canRotate; +#else + return Input.GetMouseButton(1); +#endif + } + + bool IsRightMouseButtonDown() + { +#if ENABLE_INPUT_SYSTEM + return Mouse.current != null ? Mouse.current.rightButton.isPressed : false; +#else + return Input.GetMouseButtonDown(1); +#endif + } + + bool IsRightMouseButtonUp() + { +#if ENABLE_INPUT_SYSTEM + return Mouse.current != null ? !Mouse.current.rightButton.isPressed : false; +#else + return Input.GetMouseButtonUp(1); +#endif + } + + } + +} diff --git a/Assets/Scripts/SimpleCameraController.cs.meta b/Assets/Scripts/SimpleCameraController.cs.meta new file mode 100644 index 0000000..5bb6da8 --- /dev/null +++ b/Assets/Scripts/SimpleCameraController.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: be76e5f14cfee674cb30b491fb72b09b +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings.meta b/Assets/Settings.meta new file mode 100644 index 0000000..8e9f13c --- /dev/null +++ b/Assets/Settings.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0735c275001a2c84dafdb30deced5d8d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/ForwardRenderer.asset b/Assets/Settings/ForwardRenderer.asset new file mode 100644 index 0000000..b9a801c --- /dev/null +++ b/Assets/Settings/ForwardRenderer.asset @@ -0,0 +1,44 @@ +%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: de640fe3d0db1804a85f9fc8f5cadab6, type: 3} + m_Name: ForwardRenderer + m_EditorClassIdentifier: + m_RendererFeatures: [] + m_RendererFeatureMap: + postProcessData: {fileID: 11400000, guid: 41439944d30ece34e96484bdb6645b55, type: 2} + xrSystemData: {fileID: 11400000, guid: 60e1133243b97e347b653163a8c01b64, type: 2} + shaders: + blitPS: {fileID: 4800000, guid: c17132b1f77d20942aa75f8429c0f8bc, type: 3} + copyDepthPS: {fileID: 4800000, guid: d6dae50ee9e1bfa4db75f19f99355220, type: 3} + screenSpaceShadowPS: {fileID: 4800000, guid: 0f854b35a0cf61a429bd5dcfea30eddd, type: 3} + samplingPS: {fileID: 4800000, guid: 04c410c9937594faa893a11dceb85f7e, type: 3} + tileDepthInfoPS: {fileID: 0} + tileDeferredPS: {fileID: 0} + stencilDeferredPS: {fileID: 4800000, guid: e9155b26e1bc55942a41e518703fe304, type: 3} + fallbackErrorPS: {fileID: 4800000, guid: e6e9a19c3678ded42a3bc431ebef7dbd, type: 3} + materialErrorPS: {fileID: 4800000, guid: 5fd9a8feb75a4b5894c241777f519d4e, type: 3} + m_OpaqueLayerMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_TransparentLayerMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_DefaultStencilState: + overrideStencilState: 0 + stencilReference: 0 + stencilCompareFunction: 8 + passOperation: 0 + failOperation: 0 + zFailOperation: 0 + m_ShadowTransparentReceive: 1 + m_RenderingMode: 0 + m_AccurateGbufferNormals: 0 diff --git a/Assets/Settings/ForwardRenderer.asset.meta b/Assets/Settings/ForwardRenderer.asset.meta new file mode 100644 index 0000000..06d9cab --- /dev/null +++ b/Assets/Settings/ForwardRenderer.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4a8e21d5c33334b11b34a596161b9360 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/SampleSceneProfile.asset b/Assets/Settings/SampleSceneProfile.asset new file mode 100644 index 0000000..cbc629b --- /dev/null +++ b/Assets/Settings/SampleSceneProfile.asset @@ -0,0 +1,118 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7893295128165547882 +MonoBehaviour: + m_ObjectHideFlags: 3 + 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: 0b2db86121404754db890f4c8dfe81b2, type: 3} + m_Name: Bloom + m_EditorClassIdentifier: + active: 1 + m_AdvancedMode: 0 + threshold: + m_OverrideState: 1 + m_Value: 1 + min: 0 + intensity: + m_OverrideState: 1 + m_Value: 1 + min: 0 + scatter: + m_OverrideState: 0 + m_Value: 0.7 + min: 0 + max: 1 + clamp: + m_OverrideState: 0 + m_Value: 65472 + min: 0 + tint: + m_OverrideState: 0 + m_Value: {r: 1, g: 1, b: 1, a: 1} + hdr: 0 + showAlpha: 0 + showEyeDropper: 1 + highQualityFiltering: + m_OverrideState: 0 + m_Value: 0 + dirtTexture: + m_OverrideState: 0 + m_Value: {fileID: 0} + dirtIntensity: + m_OverrideState: 0 + m_Value: 0 + min: 0 +--- !u!114 &-7011558710299706105 +MonoBehaviour: + m_ObjectHideFlags: 3 + 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: 899c54efeace73346a0a16faa3afe726, type: 3} + m_Name: Vignette + m_EditorClassIdentifier: + active: 1 + m_AdvancedMode: 0 + color: + m_OverrideState: 0 + m_Value: {r: 0, g: 0, b: 0, a: 1} + hdr: 0 + showAlpha: 0 + showEyeDropper: 1 + center: + m_OverrideState: 0 + m_Value: {x: 0.5, y: 0.5} + intensity: + m_OverrideState: 1 + m_Value: 0.25 + min: 0 + max: 1 + smoothness: + m_OverrideState: 1 + m_Value: 0.4 + min: 0.01 + max: 1 + rounded: + m_OverrideState: 0 + m_Value: 0 +--- !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: d7fd9488000d3734a9e00ee676215985, type: 3} + m_Name: SampleSceneProfile + m_EditorClassIdentifier: + components: + - {fileID: 849379129802519247} + - {fileID: -7893295128165547882} + - {fileID: -7011558710299706105} +--- !u!114 &849379129802519247 +MonoBehaviour: + m_ObjectHideFlags: 3 + 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: 97c23e3b12dc18c42a140437e53d3951, type: 3} + m_Name: Tonemapping + m_EditorClassIdentifier: + active: 1 + m_AdvancedMode: 0 + mode: + m_OverrideState: 1 + m_Value: 2 diff --git a/Assets/Settings/SampleSceneProfile.asset.meta b/Assets/Settings/SampleSceneProfile.asset.meta new file mode 100644 index 0000000..b82270c --- /dev/null +++ b/Assets/Settings/SampleSceneProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 10fc4df2da32a41aaa32d77bc913491c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/UniversalRP-HighQuality.asset b/Assets/Settings/UniversalRP-HighQuality.asset new file mode 100644 index 0000000..2ac23c8 --- /dev/null +++ b/Assets/Settings/UniversalRP-HighQuality.asset @@ -0,0 +1,53 @@ +%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: bf2edee5c58d82540a51f03df9d42094, type: 3} + m_Name: UniversalRP-HighQuality + m_EditorClassIdentifier: + k_AssetVersion: 5 + k_AssetPreviousVersion: 5 + m_RendererType: 1 + m_RendererData: {fileID: 0} + m_RendererDataList: + - {fileID: 11400000, guid: 4a8e21d5c33334b11b34a596161b9360, type: 2} + m_DefaultRendererIndex: 0 + m_RequireDepthTexture: 0 + m_RequireOpaqueTexture: 0 + m_OpaqueDownsampling: 1 + m_SupportsHDR: 1 + m_MSAA: 2 + m_RenderScale: 1 + m_MainLightRenderingMode: 1 + m_MainLightShadowsSupported: 1 + m_MainLightShadowmapResolution: 2048 + m_AdditionalLightsRenderingMode: 1 + m_AdditionalLightsPerObjectLimit: 4 + m_AdditionalLightShadowsSupported: 1 + m_AdditionalLightsShadowmapResolution: 512 + m_ShadowDistance: 50 + m_ShadowCascades: 1 + m_Cascade2Split: 0.25 + m_Cascade4Split: {x: 0.067, y: 0.2, z: 0.467} + m_ShadowDepthBias: 1 + m_ShadowNormalBias: 1 + m_SoftShadowsSupported: 1 + m_UseSRPBatcher: 1 + m_SupportsDynamicBatching: 0 + m_MixedLightingSupported: 1 + m_DebugLevel: 0 + m_ColorGradingMode: 0 + m_ColorGradingLutSize: 32 + m_ShadowType: 1 + m_LocalShadowsSupported: 0 + m_LocalShadowsAtlasResolution: 256 + m_MaxPixelLights: 0 + m_ShadowAtlasResolution: 256 + m_ShaderVariantLogLevel: 0 diff --git a/Assets/Settings/UniversalRP-HighQuality.asset.meta b/Assets/Settings/UniversalRP-HighQuality.asset.meta new file mode 100644 index 0000000..c8fa317 --- /dev/null +++ b/Assets/Settings/UniversalRP-HighQuality.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 19ba41d7c0026c3459d37c2fe90c55a0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/UniversalRP-LowQuality.asset b/Assets/Settings/UniversalRP-LowQuality.asset new file mode 100644 index 0000000..ab81d03 --- /dev/null +++ b/Assets/Settings/UniversalRP-LowQuality.asset @@ -0,0 +1,53 @@ +%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: bf2edee5c58d82540a51f03df9d42094, type: 3} + m_Name: UniversalRP-LowQuality + m_EditorClassIdentifier: + k_AssetVersion: 5 + k_AssetPreviousVersion: 5 + m_RendererType: 1 + m_RendererData: {fileID: 0} + m_RendererDataList: + - {fileID: 11400000, guid: 4a8e21d5c33334b11b34a596161b9360, type: 2} + m_DefaultRendererIndex: 0 + m_RequireDepthTexture: 0 + m_RequireOpaqueTexture: 0 + m_OpaqueDownsampling: 1 + m_SupportsHDR: 0 + m_MSAA: 1 + m_RenderScale: 1 + m_MainLightRenderingMode: 1 + m_MainLightShadowsSupported: 0 + m_MainLightShadowmapResolution: 2048 + m_AdditionalLightsRenderingMode: 0 + m_AdditionalLightsPerObjectLimit: 4 + m_AdditionalLightShadowsSupported: 0 + m_AdditionalLightsShadowmapResolution: 512 + m_ShadowDistance: 50 + m_ShadowCascades: 0 + m_Cascade2Split: 0.25 + m_Cascade4Split: {x: 0.067, y: 0.2, z: 0.467} + m_ShadowDepthBias: 1 + m_ShadowNormalBias: 1 + m_SoftShadowsSupported: 0 + m_UseSRPBatcher: 1 + m_SupportsDynamicBatching: 0 + m_MixedLightingSupported: 1 + m_DebugLevel: 0 + m_ColorGradingMode: 0 + m_ColorGradingLutSize: 16 + m_ShadowType: 1 + m_LocalShadowsSupported: 0 + m_LocalShadowsAtlasResolution: 256 + m_MaxPixelLights: 0 + m_ShadowAtlasResolution: 256 + m_ShaderVariantLogLevel: 0 diff --git a/Assets/Settings/UniversalRP-LowQuality.asset.meta b/Assets/Settings/UniversalRP-LowQuality.asset.meta new file mode 100644 index 0000000..040da39 --- /dev/null +++ b/Assets/Settings/UniversalRP-LowQuality.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a31e9f9f9c9d4b9429ed0d1234e22103 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/UniversalRP-MediumQuality.asset b/Assets/Settings/UniversalRP-MediumQuality.asset new file mode 100644 index 0000000..23de11b --- /dev/null +++ b/Assets/Settings/UniversalRP-MediumQuality.asset @@ -0,0 +1,53 @@ +%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: bf2edee5c58d82540a51f03df9d42094, type: 3} + m_Name: UniversalRP-MediumQuality + m_EditorClassIdentifier: + k_AssetVersion: 5 + k_AssetPreviousVersion: 5 + m_RendererType: 1 + m_RendererData: {fileID: 0} + m_RendererDataList: + - {fileID: 11400000, guid: 4a8e21d5c33334b11b34a596161b9360, type: 2} + m_DefaultRendererIndex: 0 + m_RequireDepthTexture: 0 + m_RequireOpaqueTexture: 0 + m_OpaqueDownsampling: 1 + m_SupportsHDR: 0 + m_MSAA: 1 + m_RenderScale: 1 + m_MainLightRenderingMode: 1 + m_MainLightShadowsSupported: 1 + m_MainLightShadowmapResolution: 2048 + m_AdditionalLightsRenderingMode: 1 + m_AdditionalLightsPerObjectLimit: 4 + m_AdditionalLightShadowsSupported: 0 + m_AdditionalLightsShadowmapResolution: 512 + m_ShadowDistance: 50 + m_ShadowCascades: 0 + m_Cascade2Split: 0.25 + m_Cascade4Split: {x: 0.067, y: 0.2, z: 0.467} + m_ShadowDepthBias: 1 + m_ShadowNormalBias: 1 + m_SoftShadowsSupported: 0 + m_UseSRPBatcher: 1 + m_SupportsDynamicBatching: 0 + m_MixedLightingSupported: 1 + m_DebugLevel: 0 + m_ColorGradingMode: 0 + m_ColorGradingLutSize: 32 + m_ShadowType: 1 + m_LocalShadowsSupported: 0 + m_LocalShadowsAtlasResolution: 256 + m_MaxPixelLights: 0 + m_ShadowAtlasResolution: 256 + m_ShaderVariantLogLevel: 0 diff --git a/Assets/Settings/UniversalRP-MediumQuality.asset.meta b/Assets/Settings/UniversalRP-MediumQuality.asset.meta new file mode 100644 index 0000000..d8477b7 --- /dev/null +++ b/Assets/Settings/UniversalRP-MediumQuality.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d847b876476d3d6468f5dfcd34266f96 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo.meta b/Assets/TutorialInfo.meta new file mode 100644 index 0000000..a7bc5aa --- /dev/null +++ b/Assets/TutorialInfo.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 49110bb8dcada46328ad741970bce702 +folderAsset: yes +timeCreated: 1475590612 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Icons.meta b/Assets/TutorialInfo/Icons.meta new file mode 100644 index 0000000..1d19fb9 --- /dev/null +++ b/Assets/TutorialInfo/Icons.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 8a0c9218a650547d98138cd835033977 +folderAsset: yes +timeCreated: 1484670163 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Icons/Help_Icon.png b/Assets/TutorialInfo/Icons/Help_Icon.png new file mode 100644 index 0000000000000000000000000000000000000000..91fa21586231dbb04e158442e6f87dc6c60efbb5 GIT binary patch literal 18108 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 F{tL_Hfk*%V literal 0 HcmV?d00001 diff --git a/Assets/TutorialInfo/Icons/Help_Icon.png.meta b/Assets/TutorialInfo/Icons/Help_Icon.png.meta new file mode 100644 index 0000000..a21157b --- /dev/null +++ b/Assets/TutorialInfo/Icons/Help_Icon.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 34f556d724b1bbf4097ca6220db2c581 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 5 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Icons/UniversalIcon.png b/Assets/TutorialInfo/Icons/UniversalIcon.png new file mode 100644 index 0000000000000000000000000000000000000000..305966b526a2459b712be4ca0ef06c05ed39b16d GIT binary patch literal 132694 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

Z8IPa;~0VFh5)K*JjdQ=A_AQe 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থ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 ZH2@ZD((C8=7dij{002ovPDHLkV1h)?pYs3! literal 0 HcmV?d00001 diff --git a/Assets/TutorialInfo/Icons/UniversalIcon.png.meta b/Assets/TutorialInfo/Icons/UniversalIcon.png.meta new file mode 100644 index 0000000..129d16b --- /dev/null +++ b/Assets/TutorialInfo/Icons/UniversalIcon.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 7801804018a7dcf42abb827444e18660 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 5 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -1 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Layout.wlt b/Assets/TutorialInfo/Layout.wlt new file mode 100644 index 0000000..7b50a25 --- /dev/null +++ b/Assets/TutorialInfo/Layout.wlt @@ -0,0 +1,654 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_PixelRect: + serializedVersion: 2 + x: 0 + y: 45 + width: 1666 + height: 958 + m_ShowMode: 4 + m_Title: + m_RootView: {fileID: 6} + m_MinSize: {x: 950, y: 542} + m_MaxSize: {x: 10000, y: 10000} +--- !u!114 &2 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 466 + width: 290 + height: 442 + m_MinSize: {x: 234, y: 271} + m_MaxSize: {x: 10004, y: 10021} + m_ActualView: {fileID: 14} + m_Panes: + - {fileID: 14} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &3 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 4} + - {fileID: 2} + m_Position: + serializedVersion: 2 + x: 973 + y: 0 + width: 290 + height: 908 + m_MinSize: {x: 234, y: 492} + m_MaxSize: {x: 10004, y: 14042} + vertical: 1 + controlID: 226 +--- !u!114 &4 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 290 + height: 466 + m_MinSize: {x: 204, y: 221} + m_MaxSize: {x: 4004, y: 4021} + m_ActualView: {fileID: 17} + m_Panes: + - {fileID: 17} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &5 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 466 + width: 973 + height: 442 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 15} + m_Panes: + - {fileID: 15} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &6 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12008, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 7} + - {fileID: 8} + - {fileID: 9} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1666 + height: 958 + m_MinSize: {x: 950, y: 542} + m_MaxSize: {x: 10000, y: 10000} +--- !u!114 &7 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12011, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1666 + height: 30 + m_MinSize: {x: 0, y: 0} + m_MaxSize: {x: 0, y: 0} + m_LastLoadedLayoutName: Tutorial +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 10} + - {fileID: 3} + - {fileID: 11} + m_Position: + serializedVersion: 2 + x: 0 + y: 30 + width: 1666 + height: 908 + m_MinSize: {x: 713, y: 492} + m_MaxSize: {x: 18008, y: 14042} + vertical: 0 + controlID: 74 +--- !u!114 &9 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12042, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 938 + width: 1666 + height: 20 + m_MinSize: {x: 0, y: 0} + m_MaxSize: {x: 0, y: 0} +--- !u!114 &10 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 12} + - {fileID: 5} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 973 + height: 908 + m_MinSize: {x: 202, y: 442} + m_MaxSize: {x: 4002, y: 8042} + vertical: 1 + controlID: 75 +--- !u!114 &11 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 1263 + y: 0 + width: 403 + height: 908 + m_MinSize: {x: 277, y: 71} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 13} + m_Panes: + - {fileID: 13} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &12 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 973 + height: 466 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 16} + m_Panes: + - {fileID: 16} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &13 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 0 + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Inspector + m_Image: {fileID: -6905738622615590433, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 0 + m_Pos: + serializedVersion: 2 + x: 2 + y: 19 + width: 401 + height: 887 + m_ScrollPosition: {x: 0, y: 0} + m_InspectorMode: 0 + m_PreviewResizer: + m_CachedPref: -160 + m_ControlHash: -371814159 + m_PrefName: Preview_InspectorPreview + m_PreviewWindow: {fileID: 0} +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 0 + m_MinSize: {x: 230, y: 250} + m_MaxSize: {x: 10000, y: 10000} + m_TitleContent: + m_Text: Project + m_Image: {fileID: -7501376956915960154, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 0 + m_Pos: + serializedVersion: 2 + x: 2 + y: 19 + width: 286 + height: 421 + m_SearchFilter: + m_NameFilter: + m_ClassNames: [] + m_AssetLabels: [] + m_AssetBundleNames: [] + m_VersionControlStates: [] + m_ReferencingInstanceIDs: + m_ScenePaths: [] + m_ShowAllHits: 0 + m_SearchArea: 0 + m_Folders: + - Assets + m_ViewMode: 0 + m_StartGridSize: 64 + m_LastFolders: + - Assets + m_LastFoldersGridSize: -1 + m_LastProjectPath: /Users/danielbrauer/Unity Projects/New Unity Project 47 + m_IsLocked: 0 + m_FolderTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: ee240000 + m_LastClickedID: 9454 + m_ExpandedIDs: ee24000000ca9a3bffffff7f + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_AssetTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: 68fbffff + m_LastClickedID: 0 + m_ExpandedIDs: ee240000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_ListAreaState: + m_SelectedInstanceIDs: 68fbffff + m_LastClickedInstanceID: -1176 + m_HadKeyboardFocusLastEvent: 0 + m_ExpandedInstanceIDs: c6230000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 0} + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_NewAssetIndexInList: -1 + m_ScrollPosition: {x: 0, y: 0} + m_GridSize: 64 + m_DirectoriesAreaWidth: 110 +--- !u!114 &15 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 1 + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Game + m_Image: {fileID: -2087823869225018852, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 32 + m_Pos: + serializedVersion: 2 + x: 0 + y: 19 + width: 971 + height: 421 + m_MaximizeOnPlay: 0 + m_Gizmos: 0 + m_Stats: 0 + m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_TargetDisplay: 0 + m_ZoomArea: + m_HRangeLocked: 0 + m_VRangeLocked: 0 + m_HBaseRangeMin: -242.75 + m_HBaseRangeMax: 242.75 + m_VBaseRangeMin: -101 + m_VBaseRangeMax: 101 + m_HAllowExceedBaseRangeMin: 1 + m_HAllowExceedBaseRangeMax: 1 + m_VAllowExceedBaseRangeMin: 1 + m_VAllowExceedBaseRangeMax: 1 + m_ScaleWithWindow: 0 + m_HSlider: 0 + m_VSlider: 0 + m_IgnoreScrollWheelUntilClicked: 0 + m_EnableMouseInput: 1 + m_EnableSliderZoom: 0 + m_UniformScale: 1 + m_UpDirection: 1 + m_DrawArea: + serializedVersion: 2 + x: 0 + y: 17 + width: 971 + height: 404 + m_Scale: {x: 2, y: 2} + m_Translation: {x: 485.5, y: 202} + m_MarginLeft: 0 + m_MarginRight: 0 + m_MarginTop: 0 + m_MarginBottom: 0 + m_LastShownAreaInsideMargins: + serializedVersion: 2 + x: -242.75 + y: -101 + width: 485.5 + height: 202 + m_MinimalGUI: 1 + m_defaultScale: 2 + m_TargetTexture: {fileID: 0} + m_CurrentColorSpace: 0 + m_LastWindowPixelSize: {x: 1942, y: 842} + m_ClearInEditMode: 1 + m_NoCameraWarning: 1 + m_LowResolutionForAspectRatios: 01000000000100000100 +--- !u!114 &16 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12013, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 1 + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Scene + m_Image: {fileID: 2318424515335265636, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 32 + m_Pos: + serializedVersion: 2 + x: 0 + y: 19 + width: 971 + height: 445 + m_SceneLighting: 1 + lastFramingTime: 0 + m_2DMode: 0 + m_isRotationLocked: 0 + m_AudioPlay: 0 + m_Position: + m_Target: {x: 0, y: 0, z: 0} + speed: 2 + m_Value: {x: 0, y: 0, z: 0} + m_RenderMode: 0 + m_ValidateTrueMetals: 0 + m_SceneViewState: + showFog: 1 + showMaterialUpdate: 0 + showSkybox: 1 + showFlares: 1 + showImageEffects: 1 + grid: + xGrid: + m_Target: 0 + speed: 2 + m_Value: 0 + yGrid: + m_Target: 1 + speed: 2 + m_Value: 1 + zGrid: + m_Target: 0 + speed: 2 + m_Value: 0 + m_Rotation: + m_Target: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} + speed: 2 + m_Value: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} + m_Size: + m_Target: 10 + speed: 2 + m_Value: 10 + m_Ortho: + m_Target: 0 + speed: 2 + m_Value: 0 + m_LastSceneViewRotation: {x: 0, y: 0, z: 0, w: 0} + m_LastSceneViewOrtho: 0 + m_ReplacementShader: {fileID: 0} + m_ReplacementString: + m_LastLockedObject: {fileID: 0} + m_ViewIsLockedToObject: 0 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 0 + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Hierarchy + m_Image: {fileID: -590624980919486359, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 0 + m_Pos: + serializedVersion: 2 + x: 2 + y: 19 + width: 286 + height: 445 + m_TreeViewState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: 68fbffff + m_LastClickedID: -1176 + m_ExpandedIDs: 7efbffff00000000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 0 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_ExpandedScenes: + - + m_CurrenRootInstanceID: 0 + m_Locked: 0 + m_CurrentSortingName: TransformSorting diff --git a/Assets/TutorialInfo/Layout.wlt.meta b/Assets/TutorialInfo/Layout.wlt.meta new file mode 100644 index 0000000..c0c8c77 --- /dev/null +++ b/Assets/TutorialInfo/Layout.wlt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eabc9546105bf4accac1fd62a63e88e6 +timeCreated: 1487337779 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Scripts.meta b/Assets/TutorialInfo/Scripts.meta new file mode 100644 index 0000000..02da605 --- /dev/null +++ b/Assets/TutorialInfo/Scripts.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 5a9bcd70e6a4b4b05badaa72e827d8e0 +folderAsset: yes +timeCreated: 1475835190 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Scripts/Editor.meta b/Assets/TutorialInfo/Scripts/Editor.meta new file mode 100644 index 0000000..f59f099 --- /dev/null +++ b/Assets/TutorialInfo/Scripts/Editor.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 3ad9b87dffba344c89909c6d1b1c17e1 +folderAsset: yes +timeCreated: 1475593892 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs b/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs new file mode 100644 index 0000000..2e59477 --- /dev/null +++ b/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs @@ -0,0 +1,158 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; +using System; +using System.IO; +using System.Reflection; + +[CustomEditor(typeof(Readme))] +[InitializeOnLoad] +public class ReadmeEditor : Editor { + + static string kShowedReadmeSessionStateName = "ReadmeEditor.showedReadme"; + + static float kSpace = 16f; + + static ReadmeEditor() + { + EditorApplication.delayCall += SelectReadmeAutomatically; + } + + static void SelectReadmeAutomatically() + { + if (!SessionState.GetBool(kShowedReadmeSessionStateName, false )) + { + var readme = SelectReadme(); + SessionState.SetBool(kShowedReadmeSessionStateName, true); + + if (readme && !readme.loadedLayout) + { + LoadLayout(); + readme.loadedLayout = true; + } + } + } + + static void LoadLayout() + { + var assembly = typeof(EditorApplication).Assembly; + var windowLayoutType = assembly.GetType("UnityEditor.WindowLayout", true); + var method = windowLayoutType.GetMethod("LoadWindowLayout", BindingFlags.Public | BindingFlags.Static); + method.Invoke(null, new object[]{Path.Combine(Application.dataPath, "TutorialInfo/Layout.wlt"), false}); + } + + [MenuItem("Tutorial/Show Tutorial Instructions")] + 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 UnityEngine.Object[]{readmeObject}; + + return (Readme)readmeObject; + } + else + { + Debug.Log("Couldn't find a readme"); + return null; + } + } + + protected override void OnHeaderGUI() + { + var readme = (Readme)target; + Init(); + + var iconWidth = Mathf.Min(EditorGUIUtility.currentViewWidth/3f - 20f, 128f); + + GUILayout.BeginHorizontal("In BigTitle"); + { + GUILayout.Label(readme.icon, GUILayout.Width(iconWidth), GUILayout.Height(iconWidth)); + GUILayout.Label(readme.title, TitleStyle); + } + GUILayout.EndHorizontal(); + } + + public override void OnInspectorGUI() + { + var readme = (Readme)target; + Init(); + + foreach (var section in readme.sections) + { + if (!string.IsNullOrEmpty(section.heading)) + { + GUILayout.Label(section.heading, HeadingStyle); + } + if (!string.IsNullOrEmpty(section.text)) + { + GUILayout.Label(section.text, BodyStyle); + } + if (!string.IsNullOrEmpty(section.linkText)) + { + if (LinkLabel(new GUIContent(section.linkText))) + { + Application.OpenURL(section.url); + } + } + GUILayout.Space(kSpace); + } + } + + + bool m_Initialized; + + GUIStyle LinkStyle { get { return m_LinkStyle; } } + [SerializeField] GUIStyle m_LinkStyle; + + GUIStyle TitleStyle { get { return m_TitleStyle; } } + [SerializeField] GUIStyle m_TitleStyle; + + GUIStyle HeadingStyle { get { return m_HeadingStyle; } } + [SerializeField] GUIStyle m_HeadingStyle; + + GUIStyle BodyStyle { get { return m_BodyStyle; } } + [SerializeField] GUIStyle m_BodyStyle; + + void Init() + { + if (m_Initialized) + return; + m_BodyStyle = new GUIStyle(EditorStyles.label); + m_BodyStyle.wordWrap = true; + m_BodyStyle.fontSize = 14; + + m_TitleStyle = new GUIStyle(m_BodyStyle); + m_TitleStyle.fontSize = 26; + + m_HeadingStyle = new GUIStyle(m_BodyStyle); + m_HeadingStyle.fontSize = 18 ; + + m_LinkStyle = new GUIStyle(m_BodyStyle); + m_LinkStyle.wordWrap = false; + // Match selection color which works nicely for both light and dark skins + m_LinkStyle.normal.textColor = new Color (0x00/255f, 0x78/255f, 0xDA/255f, 1f); + m_LinkStyle.stretchWidth = false; + + m_Initialized = true; + } + + bool LinkLabel (GUIContent label, params GUILayoutOption[] options) + { + var position = GUILayoutUtility.GetRect(label, LinkStyle, options); + + Handles.BeginGUI (); + Handles.color = LinkStyle.normal.textColor; + Handles.DrawLine (new Vector3(position.xMin, position.yMax), new Vector3(position.xMax, position.yMax)); + Handles.color = Color.white; + Handles.EndGUI (); + + EditorGUIUtility.AddCursorRect (position, MouseCursor.Link); + + return GUI.Button (position, label, LinkStyle); + } +} + diff --git a/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta b/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta new file mode 100644 index 0000000..f038618 --- /dev/null +++ b/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 476cc7d7cd9874016adc216baab94a0a +timeCreated: 1484146680 +licenseType: Store +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Scripts/Readme.cs b/Assets/TutorialInfo/Scripts/Readme.cs new file mode 100644 index 0000000..48843db --- /dev/null +++ b/Assets/TutorialInfo/Scripts/Readme.cs @@ -0,0 +1,14 @@ +using System; +using UnityEngine; + +public class Readme : ScriptableObject { + public Texture2D icon; + public string title; + public Section[] sections; + public bool loadedLayout; + + [Serializable] + public class Section { + public string heading, text, linkText, url; + } +} diff --git a/Assets/TutorialInfo/Scripts/Readme.cs.meta b/Assets/TutorialInfo/Scripts/Readme.cs.meta new file mode 100644 index 0000000..0dd2604 --- /dev/null +++ b/Assets/TutorialInfo/Scripts/Readme.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fcf7219bab7fe46a1ad266029b2fee19 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: + - icon: {fileID: 2800000, guid: d4743ba2e2a59f946b2125c074582ce7, type: 3} + executionOrder: 0 + icon: {fileID: 2800000, guid: a186f8a87ca4f4d3aa864638ad5dfb65, type: 3} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Axibug.Editor.csproj b/Axibug.Editor.csproj index 8dce53f..2fa8a44 100644 --- a/Axibug.Editor.csproj +++ b/Axibug.Editor.csproj @@ -22,7 +22,7 @@ full false Temp\Bin\Debug\ - UNITY_2020_3_33;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_CLOUD_FEATURES;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + UNITY_2020_3_33;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_CLOUD_FEATURES;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169 @@ -53,21 +53,21 @@ 2020.3.33f1c2 - + - - - - - + + + + - + + @@ -75,248 +75,251 @@ - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CloudFoundationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CloudFoundationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEditor.Graphs.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll + + + C:\Program Files (x86)\Microsoft Visual Studio Tools for Unity\16.0\Editor\SyntaxTree.VisualStudio.Unity.Bridge.dll Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + Assets\Plugins\Google.Protobuf\System.Memory.dll + Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll @@ -326,12 +329,12 @@ Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\log4netPlastic.dll - - Assets\Plugins\Google.Protobuf\System.Memory.dll - Assets\Plugins\Google.Protobuf\Google.Protobuf.dll + + Library\PackageCache\com.unity.render-pipelines.core@10.9.0\Editor\ShaderGenerator\ICSharpCode.NRefactory.dll + Assets\Plugins\Google.Protobuf\System.Runtime.CompilerServices.Unsafe.dll @@ -344,359 +347,353 @@ Library\PackageCache\com.unity.ext.nunit@1.0.6\net35\unity-custom\nunit.framework.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Xcode.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Common.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\mscorlib.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\mscorlib.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Core.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Core.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Runtime.Serialization.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Runtime.Serialization.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.Linq.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.Linq.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.Vectors.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.Vectors.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Net.Http.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Net.Http.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.IO.Compression.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.IO.Compression.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Microsoft.CSharp.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Microsoft.CSharp.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Data.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Data.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\Microsoft.Win32.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\Microsoft.Win32.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\netstandard.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\netstandard.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.AppContext.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.AppContext.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Concurrent.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Concurrent.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.NonGeneric.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.NonGeneric.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Specialized.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Specialized.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Annotations.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Annotations.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.EventBasedAsync.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.EventBasedAsync.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.TypeConverter.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.TypeConverter.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Console.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Console.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Data.Common.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Data.Common.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Contracts.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Contracts.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Debug.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Debug.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.FileVersionInfo.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.FileVersionInfo.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Process.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Process.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.StackTrace.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.StackTrace.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TextWriterTraceListener.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TextWriterTraceListener.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Tools.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Tools.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TraceSource.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TraceSource.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Drawing.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Drawing.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Dynamic.Runtime.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Dynamic.Runtime.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Calendars.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Calendars.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Compression.ZipFile.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Compression.ZipFile.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.DriveInfo.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.DriveInfo.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Watcher.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Watcher.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.IsolatedStorage.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.IsolatedStorage.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.MemoryMappedFiles.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.MemoryMappedFiles.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Pipes.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Pipes.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.UnmanagedMemoryStream.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.UnmanagedMemoryStream.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Expressions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Expressions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Parallel.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Parallel.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Queryable.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Queryable.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Http.Rtc.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Http.Rtc.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NameResolution.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NameResolution.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NetworkInformation.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NetworkInformation.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Ping.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Ping.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Requests.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Requests.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Security.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Security.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Sockets.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Sockets.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebHeaderCollection.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebHeaderCollection.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.Client.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.Client.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ObjectModel.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ObjectModel.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.ILGeneration.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.ILGeneration.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.Lightweight.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.Lightweight.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Reader.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Reader.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.ResourceManager.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.ResourceManager.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Writer.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Writer.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.CompilerServices.VisualC.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.CompilerServices.VisualC.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Handles.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Handles.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Numerics.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Numerics.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Formatters.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Formatters.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Json.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Json.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Xml.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Xml.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Claims.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Claims.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Algorithms.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Algorithms.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Csp.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Csp.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Encoding.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Encoding.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.X509Certificates.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.X509Certificates.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Principal.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Principal.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.SecureString.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.SecureString.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Duplex.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Duplex.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Http.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Http.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.NetTcp.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.NetTcp.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Security.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Security.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.RegularExpressions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.RegularExpressions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Overlapped.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Overlapped.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.Parallel.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.Parallel.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Thread.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Thread.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.ThreadPool.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.ThreadPool.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Timer.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Timer.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ValueTuple.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ValueTuple.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.ReaderWriter.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.ReaderWriter.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XDocument.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XDocument.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlDocument.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlDocument.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlSerializer.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlSerializer.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.XDocument.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.XDocument.dll Library\ScriptAssemblies\UnityEditor.UI.dll diff --git a/Axibug.Runtime.csproj b/Axibug.Runtime.csproj index 6202797..a5bf756 100644 --- a/Axibug.Runtime.csproj +++ b/Axibug.Runtime.csproj @@ -22,7 +22,7 @@ full false Temp\Bin\Debug\ - UNITY_2020_3_33;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_CLOUD_FEATURES;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + UNITY_2020_3_33;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_CLOUD_FEATURES;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169 @@ -53,298 +53,301 @@ 2020.3.33f1c2 - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - + + + + + + + + + + + + - + + + + + + + + + + + + + + - - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CloudFoundationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CloudFoundationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEditor.Graphs.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll + + + C:\Program Files (x86)\Microsoft Visual Studio Tools for Unity\16.0\Editor\SyntaxTree.VisualStudio.Unity.Bridge.dll Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + Assets\Plugins\Google.Protobuf\System.Memory.dll + Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll @@ -354,12 +357,12 @@ Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\log4netPlastic.dll - - Assets\Plugins\Google.Protobuf\System.Memory.dll - Assets\Plugins\Google.Protobuf\Google.Protobuf.dll + + Library\PackageCache\com.unity.render-pipelines.core@10.9.0\Editor\ShaderGenerator\ICSharpCode.NRefactory.dll + Assets\Plugins\Google.Protobuf\System.Runtime.CompilerServices.Unsafe.dll @@ -369,356 +372,353 @@ Assets\Plugins\likedll.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Xcode.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Common.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\ref\2.0.0\netstandard.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\Microsoft.Win32.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.AppContext.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.Concurrent.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.NonGeneric.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.Specialized.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.TypeConverter.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Console.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Data.Common.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Contracts.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Debug.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Process.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.StackTrace.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Tools.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.TraceSource.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Tracing.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Drawing.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Dynamic.Runtime.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Globalization.Calendars.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Globalization.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Globalization.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.Compression.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.Compression.ZipFile.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.Watcher.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.IsolatedStorage.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.MemoryMappedFiles.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.Pipes.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.Expressions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.Parallel.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.Queryable.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Http.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.NameResolution.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.NetworkInformation.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Ping.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Requests.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Security.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Sockets.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.WebHeaderCollection.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.WebSockets.Client.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.WebSockets.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ObjectModel.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Reflection.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Reflection.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Reflection.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Resources.Reader.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Resources.ResourceManager.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Resources.Writer.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Handles.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.InteropServices.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Numerics.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Json.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Xml.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Claims.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Csp.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Encoding.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Principal.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.SecureString.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Text.Encoding.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Text.Encoding.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Text.RegularExpressions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Overlapped.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Tasks.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Tasks.Parallel.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Thread.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.ThreadPool.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Timer.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ValueTuple.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.ReaderWriter.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XDocument.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XmlDocument.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XmlSerializer.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XPath.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XPath.XDocument.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\Extensions\2.0.0\System.Numerics.Vectors.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\mscorlib.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.ComponentModel.Composition.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Core.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Data.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\mscorlib.dll - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Drawing.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.IO.Compression.FileSystem.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Net.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Numerics.dll + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Core.dll - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Runtime.Serialization.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.ServiceModel.Web.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Transactions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Web.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Windows.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Runtime.Serialization.dll - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Xml.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.dll - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Xml.Linq.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.Linq.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Xml.Serialization.dll + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.Vectors.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Net.Http.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.IO.Compression.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Microsoft.CSharp.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Data.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\Microsoft.Win32.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\netstandard.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.AppContext.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Concurrent.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.NonGeneric.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Specialized.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Annotations.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.EventBasedAsync.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.TypeConverter.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Console.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Data.Common.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Contracts.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Debug.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.FileVersionInfo.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Process.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.StackTrace.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TextWriterTraceListener.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Tools.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TraceSource.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Drawing.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Dynamic.Runtime.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Calendars.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Compression.ZipFile.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.DriveInfo.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Watcher.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.IsolatedStorage.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.MemoryMappedFiles.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Pipes.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.UnmanagedMemoryStream.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Expressions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Parallel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Queryable.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Http.Rtc.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NameResolution.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NetworkInformation.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Ping.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Requests.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Security.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Sockets.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebHeaderCollection.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.Client.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ObjectModel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.ILGeneration.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.Lightweight.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Reader.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.ResourceManager.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Writer.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.CompilerServices.VisualC.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Handles.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Numerics.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Formatters.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Json.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Xml.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Claims.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Algorithms.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Csp.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Encoding.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.X509Certificates.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Principal.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.SecureString.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Duplex.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Http.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.NetTcp.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Security.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.RegularExpressions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Overlapped.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.Parallel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Thread.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.ThreadPool.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Timer.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ValueTuple.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.ReaderWriter.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XDocument.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlDocument.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlSerializer.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.XDocument.dll Library\ScriptAssemblies\UnityEditor.UI.dll diff --git a/Axibug.csproj b/Axibug.csproj index 6d4630e..21b4b40 100644 --- a/Axibug.csproj +++ b/Axibug.csproj @@ -22,7 +22,7 @@ full false Temp\Bin\Debug\ - UNITY_2020_3_33;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_CLOUD_FEATURES;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + UNITY_2020_3_33;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_CLOUD_FEATURES;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169 @@ -53,359 +53,362 @@ 2020.3.33f1c2 - + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - + + + - - - - - - - - + - + + + - + + + + + + - - + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CloudFoundationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CloudFoundationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEditor.Graphs.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll + + + C:\Program Files (x86)\Microsoft Visual Studio Tools for Unity\16.0\Editor\SyntaxTree.VisualStudio.Unity.Bridge.dll Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + Assets\Plugins\Google.Protobuf\System.Memory.dll + Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll @@ -415,12 +418,12 @@ Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\log4netPlastic.dll - - Assets\Plugins\Google.Protobuf\System.Memory.dll - Assets\Plugins\Google.Protobuf\Google.Protobuf.dll + + Library\PackageCache\com.unity.render-pipelines.core@10.9.0\Editor\ShaderGenerator\ICSharpCode.NRefactory.dll + Assets\Plugins\Google.Protobuf\System.Runtime.CompilerServices.Unsafe.dll @@ -430,356 +433,353 @@ Assets\Plugins\likedll.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Xcode.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Common.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\ref\2.0.0\netstandard.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\Microsoft.Win32.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.AppContext.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.Concurrent.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.NonGeneric.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.Specialized.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.TypeConverter.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Console.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Data.Common.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Contracts.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Debug.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Process.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.StackTrace.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Tools.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.TraceSource.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Tracing.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Drawing.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Dynamic.Runtime.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Globalization.Calendars.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Globalization.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Globalization.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.Compression.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.Compression.ZipFile.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.Watcher.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.IsolatedStorage.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.MemoryMappedFiles.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.Pipes.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.Expressions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.Parallel.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.Queryable.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Http.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.NameResolution.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.NetworkInformation.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Ping.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Requests.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Security.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Sockets.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.WebHeaderCollection.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.WebSockets.Client.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.WebSockets.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ObjectModel.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Reflection.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Reflection.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Reflection.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Resources.Reader.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Resources.ResourceManager.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Resources.Writer.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Handles.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.InteropServices.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Numerics.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Json.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Xml.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Claims.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Csp.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Encoding.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Principal.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.SecureString.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Text.Encoding.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Text.Encoding.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Text.RegularExpressions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Overlapped.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Tasks.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Tasks.Parallel.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Thread.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.ThreadPool.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Timer.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ValueTuple.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.ReaderWriter.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XDocument.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XmlDocument.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XmlSerializer.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XPath.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XPath.XDocument.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\Extensions\2.0.0\System.Numerics.Vectors.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\mscorlib.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.ComponentModel.Composition.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Core.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Data.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\mscorlib.dll - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Drawing.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.IO.Compression.FileSystem.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Net.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Numerics.dll + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Core.dll - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Runtime.Serialization.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.ServiceModel.Web.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Transactions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Web.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Windows.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Runtime.Serialization.dll - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Xml.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.dll - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Xml.Linq.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.Linq.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Xml.Serialization.dll + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.Vectors.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Net.Http.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.IO.Compression.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Microsoft.CSharp.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Data.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\Microsoft.Win32.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\netstandard.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.AppContext.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Concurrent.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.NonGeneric.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Specialized.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Annotations.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.EventBasedAsync.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.TypeConverter.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Console.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Data.Common.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Contracts.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Debug.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.FileVersionInfo.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Process.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.StackTrace.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TextWriterTraceListener.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Tools.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TraceSource.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Drawing.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Dynamic.Runtime.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Calendars.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Compression.ZipFile.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.DriveInfo.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Watcher.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.IsolatedStorage.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.MemoryMappedFiles.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Pipes.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.UnmanagedMemoryStream.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Expressions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Parallel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Queryable.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Http.Rtc.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NameResolution.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NetworkInformation.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Ping.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Requests.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Security.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Sockets.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebHeaderCollection.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.Client.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ObjectModel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.ILGeneration.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.Lightweight.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Reader.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.ResourceManager.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Writer.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.CompilerServices.VisualC.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Handles.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Numerics.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Formatters.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Json.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Xml.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Claims.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Algorithms.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Csp.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Encoding.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.X509Certificates.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Principal.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.SecureString.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Duplex.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Http.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.NetTcp.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Security.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.RegularExpressions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Overlapped.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.Parallel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Thread.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.ThreadPool.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Timer.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ValueTuple.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.ReaderWriter.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XDocument.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlDocument.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlSerializer.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.XDocument.dll Library\ScriptAssemblies\UnityEditor.UI.dll diff --git a/Game.Editor.csproj b/Game.Editor.csproj index e360073..49dd88a 100644 --- a/Game.Editor.csproj +++ b/Game.Editor.csproj @@ -22,7 +22,7 @@ full false Temp\Bin\Debug\ - UNITY_2020_3_33;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_CLOUD_FEATURES;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + UNITY_2020_3_33;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_CLOUD_FEATURES;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169 @@ -53,270 +53,273 @@ 2020.3.33f1c2 - + + + + + + + + - - - - - - - - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CloudFoundationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CloudFoundationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEditor.Graphs.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll + + + C:\Program Files (x86)\Microsoft Visual Studio Tools for Unity\16.0\Editor\SyntaxTree.VisualStudio.Unity.Bridge.dll Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + Assets\Plugins\Google.Protobuf\System.Memory.dll + Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll @@ -326,12 +329,12 @@ Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\log4netPlastic.dll - - Assets\Plugins\Google.Protobuf\System.Memory.dll - Assets\Plugins\Google.Protobuf\Google.Protobuf.dll + + Library\PackageCache\com.unity.render-pipelines.core@10.9.0\Editor\ShaderGenerator\ICSharpCode.NRefactory.dll + Assets\Plugins\Google.Protobuf\System.Runtime.CompilerServices.Unsafe.dll @@ -344,359 +347,353 @@ Library\PackageCache\com.unity.ext.nunit@1.0.6\net35\unity-custom\nunit.framework.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Xcode.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Common.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\mscorlib.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\mscorlib.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Core.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Core.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Runtime.Serialization.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Runtime.Serialization.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.Linq.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.Linq.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.Vectors.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.Vectors.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Net.Http.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Net.Http.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.IO.Compression.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.IO.Compression.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Microsoft.CSharp.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Microsoft.CSharp.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Data.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Data.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\Microsoft.Win32.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\Microsoft.Win32.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\netstandard.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\netstandard.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.AppContext.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.AppContext.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Concurrent.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Concurrent.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.NonGeneric.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.NonGeneric.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Specialized.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Specialized.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Annotations.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Annotations.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.EventBasedAsync.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.EventBasedAsync.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.TypeConverter.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.TypeConverter.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Console.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Console.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Data.Common.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Data.Common.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Contracts.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Contracts.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Debug.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Debug.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.FileVersionInfo.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.FileVersionInfo.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Process.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Process.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.StackTrace.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.StackTrace.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TextWriterTraceListener.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TextWriterTraceListener.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Tools.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Tools.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TraceSource.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TraceSource.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Drawing.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Drawing.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Dynamic.Runtime.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Dynamic.Runtime.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Calendars.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Calendars.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Compression.ZipFile.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Compression.ZipFile.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.DriveInfo.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.DriveInfo.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Watcher.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Watcher.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.IsolatedStorage.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.IsolatedStorage.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.MemoryMappedFiles.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.MemoryMappedFiles.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Pipes.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Pipes.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.UnmanagedMemoryStream.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.UnmanagedMemoryStream.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Expressions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Expressions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Parallel.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Parallel.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Queryable.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Queryable.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Http.Rtc.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Http.Rtc.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NameResolution.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NameResolution.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NetworkInformation.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NetworkInformation.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Ping.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Ping.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Requests.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Requests.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Security.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Security.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Sockets.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Sockets.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebHeaderCollection.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebHeaderCollection.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.Client.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.Client.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ObjectModel.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ObjectModel.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.ILGeneration.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.ILGeneration.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.Lightweight.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.Lightweight.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Reader.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Reader.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.ResourceManager.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.ResourceManager.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Writer.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Writer.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.CompilerServices.VisualC.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.CompilerServices.VisualC.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Handles.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Handles.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Numerics.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Numerics.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Formatters.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Formatters.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Json.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Json.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Xml.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Xml.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Claims.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Claims.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Algorithms.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Algorithms.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Csp.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Csp.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Encoding.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Encoding.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.X509Certificates.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.X509Certificates.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Principal.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Principal.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.SecureString.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.SecureString.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Duplex.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Duplex.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Http.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Http.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.NetTcp.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.NetTcp.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Security.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Security.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.RegularExpressions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.RegularExpressions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Overlapped.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Overlapped.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.Parallel.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.Parallel.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Thread.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Thread.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.ThreadPool.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.ThreadPool.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Timer.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Timer.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ValueTuple.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ValueTuple.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.ReaderWriter.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.ReaderWriter.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XDocument.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XDocument.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlDocument.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlDocument.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlSerializer.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlSerializer.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.XDocument.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.XDocument.dll Library\ScriptAssemblies\Unity.TextMeshPro.dll diff --git a/Game.csproj b/Game.csproj index cda175b..22c4795 100644 --- a/Game.csproj +++ b/Game.csproj @@ -22,7 +22,7 @@ full false Temp\Bin\Debug\ - UNITY_2020_3_33;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_CLOUD_FEATURES;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + UNITY_2020_3_33;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_CLOUD_FEATURES;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169 @@ -53,314 +53,314 @@ 2020.3.33f1c2 - + - + - + - + + + + + + + + + + + + + + + + + + + + + - - - + - + - - - - - - - - - - - - - - - - - - - - + + - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CloudFoundationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CloudFoundationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEditor.Graphs.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll + + + C:\Program Files (x86)\Microsoft Visual Studio Tools for Unity\16.0\Editor\SyntaxTree.VisualStudio.Unity.Bridge.dll Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll @@ -380,6 +380,9 @@ Assets\Plugins\Google.Protobuf\Google.Protobuf.dll + + Library\PackageCache\com.unity.render-pipelines.core@10.9.0\Editor\ShaderGenerator\ICSharpCode.NRefactory.dll + Assets\Plugins\Google.Protobuf\System.Runtime.CompilerServices.Unsafe.dll @@ -389,356 +392,353 @@ Assets\Plugins\likedll.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Xcode.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Common.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\ref\2.0.0\netstandard.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\Microsoft.Win32.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.AppContext.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.Concurrent.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.NonGeneric.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Collections.Specialized.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.EventBasedAsync.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ComponentModel.TypeConverter.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Console.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Data.Common.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Contracts.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Debug.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.FileVersionInfo.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Process.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.StackTrace.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.TextWriterTraceListener.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Tools.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.TraceSource.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Diagnostics.Tracing.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Drawing.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Dynamic.Runtime.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Globalization.Calendars.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Globalization.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Globalization.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.Compression.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.Compression.ZipFile.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.DriveInfo.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.FileSystem.Watcher.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.IsolatedStorage.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.MemoryMappedFiles.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.Pipes.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.IO.UnmanagedMemoryStream.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.Expressions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.Parallel.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Linq.Queryable.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Http.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.NameResolution.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.NetworkInformation.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Ping.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Requests.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Security.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.Sockets.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.WebHeaderCollection.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.WebSockets.Client.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Net.WebSockets.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ObjectModel.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Reflection.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Reflection.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Reflection.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Resources.Reader.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Resources.ResourceManager.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Resources.Writer.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.CompilerServices.VisualC.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Handles.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.InteropServices.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.InteropServices.RuntimeInformation.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Numerics.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Formatters.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Json.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Runtime.Serialization.Xml.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Claims.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Algorithms.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Csp.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Encoding.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.Primitives.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Cryptography.X509Certificates.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.Principal.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Security.SecureString.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Text.Encoding.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Text.Encoding.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Text.RegularExpressions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Overlapped.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Tasks.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Tasks.Parallel.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Thread.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.ThreadPool.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Threading.Timer.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.ValueTuple.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.ReaderWriter.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XDocument.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XmlDocument.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XmlSerializer.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XPath.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netstandard\System.Xml.XPath.XDocument.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\Extensions\2.0.0\System.Numerics.Vectors.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\Extensions\2.0.0\System.Runtime.InteropServices.WindowsRuntime.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\mscorlib.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.ComponentModel.Composition.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Core.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Data.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\mscorlib.dll - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Drawing.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.IO.Compression.FileSystem.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Net.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Numerics.dll + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Core.dll - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Runtime.Serialization.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.ServiceModel.Web.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Transactions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Web.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Windows.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Runtime.Serialization.dll - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Xml.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.dll - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Xml.Linq.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.Linq.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\NetStandard\compat\2.0.0\shims\netfx\System.Xml.Serialization.dll + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.Vectors.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Net.Http.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.IO.Compression.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Microsoft.CSharp.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Data.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\Microsoft.Win32.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\netstandard.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.AppContext.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Concurrent.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.NonGeneric.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Specialized.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Annotations.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.EventBasedAsync.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.TypeConverter.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Console.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Data.Common.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Contracts.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Debug.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.FileVersionInfo.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Process.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.StackTrace.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TextWriterTraceListener.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Tools.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TraceSource.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Drawing.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Dynamic.Runtime.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Calendars.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Compression.ZipFile.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.DriveInfo.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Watcher.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.IsolatedStorage.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.MemoryMappedFiles.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Pipes.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.UnmanagedMemoryStream.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Expressions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Parallel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Queryable.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Http.Rtc.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NameResolution.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NetworkInformation.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Ping.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Requests.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Security.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Sockets.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebHeaderCollection.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.Client.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ObjectModel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.ILGeneration.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.Lightweight.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Reader.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.ResourceManager.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Writer.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.CompilerServices.VisualC.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Handles.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Numerics.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Formatters.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Json.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Xml.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Claims.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Algorithms.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Csp.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Encoding.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.X509Certificates.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Principal.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.SecureString.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Duplex.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Http.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.NetTcp.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Primitives.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Security.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.Extensions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.RegularExpressions.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Overlapped.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.Parallel.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Thread.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.ThreadPool.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Timer.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ValueTuple.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.ReaderWriter.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XDocument.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlDocument.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlSerializer.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.dll + + + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.XDocument.dll Library\ScriptAssemblies\Unity.TextMeshPro.dll diff --git a/Packages/manifest.json b/Packages/manifest.json index 731c78b..bb594b2 100644 --- a/Packages/manifest.json +++ b/Packages/manifest.json @@ -4,6 +4,7 @@ "com.unity.ide.rider": "2.0.7", "com.unity.ide.visualstudio": "2.0.14", "com.unity.ide.vscode": "1.2.5", + "com.unity.render-pipelines.universal": "10.9.0", "com.unity.test-framework": "1.1.31", "com.unity.textmeshpro": "3.0.6", "com.unity.timeline": "1.4.8", diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json index 62b223a..b0c8422 100644 --- a/Packages/packages-lock.json +++ b/Packages/packages-lock.json @@ -41,6 +41,42 @@ "dependencies": {}, "url": "https://packages.unity.cn" }, + "com.unity.mathematics": { + "version": "1.1.0", + "depth": 1, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.cn" + }, + "com.unity.render-pipelines.core": { + "version": "10.9.0", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.ugui": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.cn" + }, + "com.unity.render-pipelines.universal": { + "version": "10.9.0", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.mathematics": "1.1.0", + "com.unity.render-pipelines.core": "10.9.0", + "com.unity.shadergraph": "10.9.0" + }, + "url": "https://packages.unity.cn" + }, + "com.unity.searcher": { + "version": "4.3.2", + "depth": 2, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.cn" + }, "com.unity.services.core": { "version": "1.0.1", "depth": 1, @@ -50,6 +86,16 @@ }, "url": "https://packages.unity.cn" }, + "com.unity.shadergraph": { + "version": "10.9.0", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.render-pipelines.core": "10.9.0", + "com.unity.searcher": "4.3.2" + }, + "url": "https://packages.unity.cn" + }, "com.unity.test-framework": { "version": "1.1.31", "depth": 0, diff --git a/ProjectSettings/AudioManager.asset b/ProjectSettings/AudioManager.asset index 07ebfb0..27287fe 100644 --- a/ProjectSettings/AudioManager.asset +++ b/ProjectSettings/AudioManager.asset @@ -16,4 +16,4 @@ AudioManager: m_AmbisonicDecoderPlugin: m_DisableAudio: 0 m_VirtualizeEffects: 1 - m_RequestedDSPBufferSize: 1024 + m_RequestedDSPBufferSize: 0 diff --git a/ProjectSettings/DynamicsManager.asset b/ProjectSettings/DynamicsManager.asset index cdc1f3e..5d5bacb 100644 --- a/ProjectSettings/DynamicsManager.asset +++ b/ProjectSettings/DynamicsManager.asset @@ -3,7 +3,7 @@ --- !u!55 &1 PhysicsManager: m_ObjectHideFlags: 0 - serializedVersion: 11 + serializedVersion: 13 m_Gravity: {x: 0, y: -9.81, z: 0} m_DefaultMaterial: {fileID: 0} m_BounceThreshold: 2 @@ -14,14 +14,15 @@ PhysicsManager: m_QueriesHitBackfaces: 0 m_QueriesHitTriggers: 1 m_EnableAdaptiveForce: 0 - m_ClothInterCollisionDistance: 0 - m_ClothInterCollisionStiffness: 0 + m_ClothInterCollisionDistance: 0.1 + m_ClothInterCollisionStiffness: 0.2 m_ContactsGeneration: 1 m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff m_AutoSimulation: 1 m_AutoSyncTransforms: 0 m_ReuseCollisionCallbacks: 1 m_ClothInterCollisionSettingsToggle: 0 + m_ClothGravity: {x: 0, y: -9.81, z: 0} m_ContactPairsMode: 0 m_BroadphaseType: 0 m_WorldBounds: @@ -31,4 +32,5 @@ PhysicsManager: m_FrictionType: 0 m_EnableEnhancedDeterminism: 0 m_EnableUnifiedHeightmaps: 1 - m_DefaultMaxAngluarSpeed: 7 + m_SolverType: 0 + m_DefaultMaxAngularSpeed: 7 diff --git a/ProjectSettings/EditorBuildSettings.asset b/ProjectSettings/EditorBuildSettings.asset index 0147887..a1403b8 100644 --- a/ProjectSettings/EditorBuildSettings.asset +++ b/ProjectSettings/EditorBuildSettings.asset @@ -4,5 +4,8 @@ EditorBuildSettings: m_ObjectHideFlags: 0 serializedVersion: 2 - m_Scenes: [] + m_Scenes: + - enabled: 1 + path: Assets/Scenes/MainScene.unity + guid: d1c3109bdb54ad54c8a2b2838528e640 m_configObjects: {} diff --git a/ProjectSettings/EditorSettings.asset b/ProjectSettings/EditorSettings.asset index de5d0b2..05db6c8 100644 --- a/ProjectSettings/EditorSettings.asset +++ b/ProjectSettings/EditorSettings.asset @@ -2,8 +2,9 @@ %TAG !u! tag:unity3d.com,2011: --- !u!159 &1 EditorSettings: + m_AssetPipelineMode: 1 m_ObjectHideFlags: 0 - serializedVersion: 11 + serializedVersion: 10 m_ExternalVersionControlSupport: Visible Meta Files m_SerializationMode: 2 m_LineEndingsForNewScripts: 0 @@ -16,7 +17,7 @@ EditorSettings: m_EtcTextureFastCompressor: 1 m_EtcTextureNormalCompressor: 2 m_EtcTextureBestCompressor: 4 - m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp;asmref + m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;asmref;rsp m_ProjectGenerationRootNamespace: m_CollabEditorSettings: inProgressEnabled: 1 @@ -27,4 +28,4 @@ EditorSettings: m_EnterPlayModeOptions: 3 m_ShowLightmapResolutionOverlay: 1 m_UseLegacyProbeSampleCount: 0 - m_SerializeInlineMappingsOnOneLine: 1 \ No newline at end of file + m_SerializeInlineMappingsOnOneLine: 1 diff --git a/ProjectSettings/GraphicsSettings.asset b/ProjectSettings/GraphicsSettings.asset index 43369e3..db10dd6 100644 --- a/ProjectSettings/GraphicsSettings.asset +++ b/ProjectSettings/GraphicsSettings.asset @@ -35,10 +35,15 @@ GraphicsSettings: - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10783, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 16001, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0} m_PreloadedShaders: [] m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} - m_CustomRenderPipeline: {fileID: 0} + m_CustomRenderPipeline: {fileID: 11400000, guid: 19ba41d7c0026c3459d37c2fe90c55a0, + type: 2} m_TransparencySortMode: 0 m_TransparencySortAxis: {x: 0, y: 0, z: 1} m_DefaultRenderingPath: 1 @@ -57,7 +62,7 @@ GraphicsSettings: m_FogKeepExp: 1 m_FogKeepExp2: 1 m_AlbedoSwatchInfos: [] - m_LightsUseLinearIntensity: 0 + m_LightsUseLinearIntensity: 1 m_LightsUseColorTemperature: 0 m_LogWhenShaderIsCompiled: 0 - m_AllowEnlightenSupportForUpgradedProject: 0 + m_AllowEnlightenSupportForUpgradedProject: 1 diff --git a/ProjectSettings/InputManager.asset b/ProjectSettings/InputManager.asset index 17c8f53..b16147e 100644 --- a/ProjectSettings/InputManager.asset +++ b/ProjectSettings/InputManager.asset @@ -293,3 +293,195 @@ InputManager: type: 0 axis: 0 joyNum: 0 + - serializedVersion: 3 + m_Name: Enable Debug Button 1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left ctrl + altNegativeButton: + altPositiveButton: joystick button 8 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Enable Debug Button 2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: backspace + altNegativeButton: + altPositiveButton: joystick button 9 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Reset + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left alt + altNegativeButton: + altPositiveButton: joystick button 1 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Next + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: page down + altNegativeButton: + altPositiveButton: joystick button 5 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Previous + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: page up + altNegativeButton: + altPositiveButton: joystick button 4 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Validate + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: return + altNegativeButton: + altPositiveButton: joystick button 0 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Persistent + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: right shift + altNegativeButton: + altPositiveButton: joystick button 2 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Multiplier + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left shift + altNegativeButton: + altPositiveButton: joystick button 3 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 2 + axis: 6 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 2 + axis: 5 + joyNum: 0 diff --git a/ProjectSettings/PresetManager.asset b/ProjectSettings/PresetManager.asset index 67a94da..10a1b07 100644 --- a/ProjectSettings/PresetManager.asset +++ b/ProjectSettings/PresetManager.asset @@ -3,5 +3,25 @@ --- !u!1386491679 &1 PresetManager: m_ObjectHideFlags: 0 - serializedVersion: 2 - m_DefaultPresets: {} + m_DefaultList: + - type: + m_NativeTypeID: 108 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + defaultPresets: + - m_Preset: {fileID: 2655988077585873504, guid: 463065d4f17d1d94d848aa127b94dd43, + type: 2} + - type: + m_NativeTypeID: 1020 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + defaultPresets: + - m_Preset: {fileID: 2655988077585873504, guid: e7689051185d12f4298e1ebb2693a29f, + type: 2} + - type: + m_NativeTypeID: 1006 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + defaultPresets: + - m_Preset: {fileID: 2655988077585873504, guid: e8537455c6c08bd4e8bf0be3707da685, + type: 2} diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index 209a354..19ddc0e 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -4,7 +4,7 @@ PlayerSettings: m_ObjectHideFlags: 0 serializedVersion: 22 - productGUID: e2eca09447ccadd4fa2c37bfa9228197 + productGUID: b81a0ca3a6954734398dda8de8a1eeb7 AndroidProfiler: 0 AndroidFilterTouchesWhenObscured: 0 AndroidEnableSustainedPerformanceMode: 0 @@ -13,7 +13,7 @@ PlayerSettings: useOnDemandResources: 0 accelerometerFrequency: 60 companyName: DefaultCompany - productName: AkiraPixelWind + productName: URPTEST defaultCursor: {fileID: 0} cursorHotspot: {x: 0, y: 0} m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} @@ -48,12 +48,12 @@ PlayerSettings: m_SloganImage: {fileID: 0} m_SloganHeight: 150 m_HolographicTrackingLossScreen: {fileID: 0} - defaultScreenWidth: 1024 - defaultScreenHeight: 768 + defaultScreenWidth: 1920 + defaultScreenHeight: 1080 defaultScreenWidthWeb: 960 defaultScreenHeightWeb: 600 m_StereoRenderingPath: 0 - m_ActiveColorSpace: 0 + m_ActiveColorSpace: 1 m_MTRendering: 1 mipStripping: 0 numberOfMipsStripped: 0 @@ -71,9 +71,9 @@ PlayerSettings: preserveFramebufferAlpha: 0 disableDepthAndStencilBuffers: 0 androidStartInFullscreen: 1 - androidRenderOutsideSafeArea: 1 + androidRenderOutsideSafeArea: 0 androidUseSwappy: 1 - androidBlitType: 0 + androidBlitType: 1 androidResizableWindow: 0 androidDefaultWindowWidth: 1920 androidDefaultWindowHeight: 1080 @@ -125,7 +125,7 @@ PlayerSettings: xboxOneEnableTypeOptimization: 0 xboxOnePresentImmediateThreshold: 0 switchQueueCommandMemory: 0 - switchQueueControlMemory: 16384 + switchQueueControlMemory: 0 switchQueueComputeMemory: 262144 switchNVNShaderPoolsGranularity: 33554432 switchNVNDefaultPoolsGranularity: 16777216 @@ -158,7 +158,7 @@ PlayerSettings: enableFrameTimingStats: 0 useHDRDisplay: 0 D3DHDRBitDepth: 0 - m_ColorGamuts: 00000000 + m_ColorGamuts: 0000000003000000 targetPixelDensity: 30 resolutionScalingMode: 0 androidSupportedAspectRatio: 1 @@ -182,7 +182,7 @@ PlayerSettings: CreateWallpaper: 0 APKExpansionFiles: 0 keepLoadedShadersAlive: 0 - StripUnusedMeshComponents: 1 + StripUnusedMeshComponents: 0 VertexChannelCompressionMask: 4054 iPhoneSdkVersion: 988 iOSTargetOSVersionString: 11.0 @@ -242,8 +242,8 @@ PlayerSettings: iOSAutomaticallyDetectAndAddCapabilities: 1 appleEnableProMotion: 0 shaderPrecisionModel: 0 - clonedFromGUID: c0afd0d1d80e3634a9dac47e8a0426ea - templatePackageId: com.unity.template.3d@5.0.4 + clonedFromGUID: 9870af204204ab84596f8a656f2f2ce6 + templatePackageId: com.unity.template.universal@10.9.1 templateDefaultScene: Assets/Scenes/SampleScene.unity useCustomMainManifest: 0 useCustomLauncherManifest: 0 @@ -275,7 +275,7 @@ PlayerSettings: AndroidMinifyRelease: 0 AndroidMinifyDebug: 0 AndroidValidateAppBundleSize: 1 - AndroidAppBundleSizeToValidate: 150 + AndroidAppBundleSizeToValidate: 100 m_BuildTargetIcons: [] m_BuildTargetPlatformIcons: [] m_BuildTargetBatching: @@ -285,10 +285,10 @@ PlayerSettings: - m_BuildTarget: tvOS m_StaticBatching: 1 m_DynamicBatching: 0 - - m_BuildTarget: Android + - m_BuildTarget: iPhone m_StaticBatching: 1 m_DynamicBatching: 0 - - m_BuildTarget: iPhone + - m_BuildTarget: Android m_StaticBatching: 1 m_DynamicBatching: 0 - m_BuildTarget: WebGL @@ -328,24 +328,19 @@ PlayerSettings: - m_BuildTarget: XboxOnePlayer m_GraphicsJobMode: 0 m_BuildTargetGraphicsAPIs: - - m_BuildTarget: AndroidPlayer - m_APIs: 150000000b000000 - m_Automatic: 0 - m_BuildTarget: iOSSupport m_APIs: 10000000 m_Automatic: 1 - m_BuildTarget: AppleTVSupport m_APIs: 10000000 m_Automatic: 1 + - m_BuildTarget: AndroidPlayer + m_APIs: 150000000b000000 + m_Automatic: 0 - m_BuildTarget: WebGLSupport m_APIs: 0b000000 - m_Automatic: 1 - m_BuildTargetVRSettings: - - m_BuildTarget: Standalone - m_Enabled: 0 - m_Devices: - - Oculus - - OpenVR + m_Automatic: 0 + m_BuildTargetVRSettings: [] openGLRequireES31: 0 openGLRequireES31AEP: 0 openGLRequireES32: 0 @@ -354,7 +349,9 @@ PlayerSettings: Android: 1 iPhone: 1 tvOS: 1 - m_BuildTargetGroupLightmapEncodingQuality: [] + m_BuildTargetGroupLightmapEncodingQuality: + - m_BuildTarget: Standalone + m_EncodingQuality: 1 m_BuildTargetGroupLightmapSettings: [] m_BuildTargetNormalMapEncoding: [] playModeTestRunnerEnabled: 0 @@ -581,7 +578,18 @@ PlayerSettings: ps4AllowPS5Detection: 0 ps4GPU800MHz: 1 ps4attribEyeToEyeDistanceSettingVR: 0 - ps4IncludedModules: [] + ps4IncludedModules: + - libc.prx + - libSceAudioLatencyEstimation.prx + - libSceFace.prx + - libSceFaceTracker.prx + - libSceFios2.prx + - libSceHand.prx + - libSceHandTracker.prx + - libSceHeadTracker.prx + - libSceJobManager.prx + - libSceNpToolkit2.prx + - libSceS3DConversion.prx ps4attribVROutputEnabled: 0 monoEnv: splashScreenBackgroundSourceLandscape: {fileID: 0} @@ -606,7 +614,8 @@ PlayerSettings: scriptingDefineSymbols: {} additionalCompilerArguments: {} platformArchitecture: {} - scriptingBackend: {} + scriptingBackend: + Standalone: 0 il2cppCompilerConfiguration: {} managedStrippingLevel: {} incrementalIl2cppBuild: {} @@ -620,17 +629,18 @@ PlayerSettings: gcIncremental: 1 assemblyVersionValidation: 1 gcWBarrierValidation: 0 - apiCompatibilityLevelPerPlatform: {} + apiCompatibilityLevelPerPlatform: + Standalone: 3 m_RenderingPath: 1 m_MobileRenderingPath: 1 - metroPackageName: Template_3D + metroPackageName: Template_Lightweight metroPackageVersion: metroCertificatePath: metroCertificatePassword: metroCertificateSubject: metroCertificateIssuer: metroCertificateNotAfter: 0000000000000000 - metroApplicationDescription: Template_3D + metroApplicationDescription: Template_Lightweight wsaImages: {} metroTileShortName: metroTileShowName: 0 diff --git a/ProjectSettings/QualitySettings.asset b/ProjectSettings/QualitySettings.asset index 7b7658d..fff7191 100644 --- a/ProjectSettings/QualitySettings.asset +++ b/ProjectSettings/QualitySettings.asset @@ -4,43 +4,8 @@ QualitySettings: m_ObjectHideFlags: 0 serializedVersion: 5 - m_CurrentQuality: 5 + m_CurrentQuality: 2 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 - streamingMipmapsActive: 0 - streamingMipmapsAddAllCameras: 1 - streamingMipmapsMemoryBudget: 512 - streamingMipmapsRenderersPerFrame: 512 - streamingMipmapsMaxLevelReduction: 2 - streamingMipmapsMaxFileIORequests: 1024 - particleRaycastBudget: 4 - asyncUploadTimeSlice: 2 - asyncUploadBufferSize: 16 - asyncUploadPersistentBuffer: 1 - resolutionScalingFixedDPIFactor: 1 - excludedTargetPlatforms: [] - serializedVersion: 2 name: Low pixelLightCount: 0 @@ -53,7 +18,7 @@ QualitySettings: shadowCascade2Split: 0.33333334 shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} shadowmaskMode: 0 - blendWeights: 2 + skinWeights: 2 textureQuality: 0 anisotropicTextures: 0 antiAliasing: 0 @@ -75,6 +40,7 @@ QualitySettings: asyncUploadBufferSize: 16 asyncUploadPersistentBuffer: 1 resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 11400000, guid: a31e9f9f9c9d4b9429ed0d1234e22103, type: 2} excludedTargetPlatforms: [] - serializedVersion: 2 name: Medium @@ -88,7 +54,7 @@ QualitySettings: shadowCascade2Split: 0.33333334 shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} shadowmaskMode: 0 - blendWeights: 2 + skinWeights: 2 textureQuality: 0 anisotropicTextures: 1 antiAliasing: 0 @@ -110,6 +76,7 @@ QualitySettings: asyncUploadBufferSize: 16 asyncUploadPersistentBuffer: 1 resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 11400000, guid: d847b876476d3d6468f5dfcd34266f96, type: 2} excludedTargetPlatforms: [] - serializedVersion: 2 name: High @@ -123,10 +90,10 @@ QualitySettings: shadowCascade2Split: 0.33333334 shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} shadowmaskMode: 1 - blendWeights: 2 + skinWeights: 2 textureQuality: 0 anisotropicTextures: 1 - antiAliasing: 0 + antiAliasing: 2 softParticles: 0 softVegetation: 1 realtimeReflectionProbes: 1 @@ -145,88 +112,20 @@ QualitySettings: asyncUploadBufferSize: 16 asyncUploadPersistentBuffer: 1 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 - streamingMipmapsActive: 0 - streamingMipmapsAddAllCameras: 1 - streamingMipmapsMemoryBudget: 512 - streamingMipmapsRenderersPerFrame: 512 - streamingMipmapsMaxLevelReduction: 2 - streamingMipmapsMaxFileIORequests: 1024 - particleRaycastBudget: 1024 - asyncUploadTimeSlice: 2 - asyncUploadBufferSize: 16 - asyncUploadPersistentBuffer: 1 - 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 - streamingMipmapsActive: 0 - streamingMipmapsAddAllCameras: 1 - streamingMipmapsMemoryBudget: 512 - streamingMipmapsRenderersPerFrame: 512 - streamingMipmapsMaxLevelReduction: 2 - streamingMipmapsMaxFileIORequests: 1024 - particleRaycastBudget: 4096 - asyncUploadTimeSlice: 2 - asyncUploadBufferSize: 16 - asyncUploadPersistentBuffer: 1 - resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 11400000, guid: 19ba41d7c0026c3459d37c2fe90c55a0, type: 2} excludedTargetPlatforms: [] m_PerPlatformDefaultQuality: - Android: 2 - Lumin: 5 - Nintendo 3DS: 5 - Nintendo Switch: 5 - PS4: 5 - PSP2: 2 - Stadia: 5 - Standalone: 5 - WebGL: 3 - Windows Store Apps: 5 - XboxOne: 5 - iPhone: 2 - tvOS: 2 + Android: 1 + GameCoreScarlett: 2 + GameCoreXboxOne: 2 + Lumin: 2 + Nintendo Switch: 2 + PS4: 2 + PS5: 2 + Stadia: 2 + Standalone: 2 + WebGL: 1 + Windows Store Apps: 2 + XboxOne: 2 + iPhone: 1 + tvOS: 1 diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset index 1c92a78..7b40237 100644 --- a/ProjectSettings/TagManager.asset +++ b/ProjectSettings/TagManager.asset @@ -15,12 +15,12 @@ TagManager: - - - - - - - - - - - - - - - + - MainPlayer + - Players + - Monster + - NPC + - Drop + - Terrain - - - diff --git a/ProjectSettings/TimeManager.asset b/ProjectSettings/TimeManager.asset index 558a017..06bcc6d 100644 --- a/ProjectSettings/TimeManager.asset +++ b/ProjectSettings/TimeManager.asset @@ -4,6 +4,6 @@ TimeManager: m_ObjectHideFlags: 0 Fixed Timestep: 0.02 - Maximum Allowed Timestep: 0.33333334 + Maximum Allowed Timestep: 0.1 m_TimeScale: 1 Maximum Particle Timestep: 0.03 diff --git a/ProjectSettings/URPProjectSettings.asset b/ProjectSettings/URPProjectSettings.asset new file mode 100644 index 0000000..3077404 --- /dev/null +++ b/ProjectSettings/URPProjectSettings.asset @@ -0,0 +1,15 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 61 + 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: 247994e1f5a72c2419c26a37e9334c01, type: 3} + m_Name: + m_EditorClassIdentifier: + m_LastMaterialVersion: 4 diff --git a/ProjectSettings/UnityConnectSettings.asset b/ProjectSettings/UnityConnectSettings.asset index b2f8bbe..45c0490 100644 --- a/ProjectSettings/UnityConnectSettings.asset +++ b/ProjectSettings/UnityConnectSettings.asset @@ -14,7 +14,7 @@ UnityConnectSettings: m_CNConfigUrl: https://cdp.cloud.unity.cn/config m_TestInitMode: 0 CrashReportingSettings: - m_EventUrl: https://perf-events.cloud.unity.cn + m_EventUrl: https://perf-events.cloud.unity3d.com m_Enabled: 0 m_LogBufferSize: 10 m_CaptureEditorExceptions: 1 diff --git a/ProjectSettings/VFXManager.asset b/ProjectSettings/VFXManager.asset index 3a95c98..6e0eaca 100644 --- a/ProjectSettings/VFXManager.asset +++ b/ProjectSettings/VFXManager.asset @@ -6,7 +6,6 @@ VFXManager: m_IndirectShader: {fileID: 0} m_CopyBufferShader: {fileID: 0} m_SortShader: {fileID: 0} - m_StripUpdateShader: {fileID: 0} m_RenderPipeSettingsPath: m_FixedTimeStep: 0.016666668 m_MaxDeltaTime: 0.05 diff --git a/Unity.AssetBundleBrowser.Editor.csproj b/Unity.AssetBundleBrowser.Editor.csproj index 432e979..0cc297a 100644 --- a/Unity.AssetBundleBrowser.Editor.csproj +++ b/Unity.AssetBundleBrowser.Editor.csproj @@ -22,7 +22,7 @@ full false Temp\Bin\Debug\ - UNITY_2020_3_33;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_CLOUD_FEATURES;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + UNITY_2020_3_33;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_IG;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_CLOUD_FEATURES;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169 @@ -53,275 +53,278 @@ 2020.3.33f1c2 - + - - - - - - - + + + + + + + - - - + + + - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.AutoStreamingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CloudFoundationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CloudFoundationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsNativeModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UNETModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.PackageManagerUIModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UIServiceModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll - D:\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEditor.Graphs.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\Managed\UnityEditor.Graphs.dll - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll + + + C:\Program Files (x86)\Microsoft Visual Studio Tools for Unity\16.0\Editor\SyntaxTree.VisualStudio.Unity.Bridge.dll Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll + + Assets\Plugins\Google.Protobuf\System.Memory.dll + Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll @@ -331,12 +334,12 @@ Library\PackageCache\com.unity.collab-proxy@1.15.15\Lib\Editor\PlasticSCM\log4netPlastic.dll - - Assets\Plugins\Google.Protobuf\System.Memory.dll - Assets\Plugins\Google.Protobuf\Google.Protobuf.dll + + Library\PackageCache\com.unity.render-pipelines.core@10.9.0\Editor\ShaderGenerator\ICSharpCode.NRefactory.dll + Assets\Plugins\Google.Protobuf\System.Runtime.CompilerServices.Unsafe.dll @@ -349,359 +352,353 @@ Library\PackageCache\com.unity.ext.nunit@1.0.6\net35\unity-custom\nunit.framework.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Xcode.dll - - - D:\Unity\2020.3.33f1c2\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Common.dll - - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\mscorlib.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\mscorlib.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Core.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Core.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Runtime.Serialization.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Runtime.Serialization.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.Linq.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.Linq.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.Vectors.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.Vectors.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Net.Http.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Net.Http.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.IO.Compression.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.IO.Compression.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Microsoft.CSharp.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Microsoft.CSharp.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Data.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Data.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\Microsoft.Win32.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\Microsoft.Win32.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\netstandard.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\netstandard.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.AppContext.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.AppContext.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Concurrent.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Concurrent.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.NonGeneric.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.NonGeneric.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Specialized.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Specialized.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Annotations.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Annotations.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.EventBasedAsync.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.EventBasedAsync.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.TypeConverter.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.TypeConverter.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Console.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Console.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Data.Common.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Data.Common.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Contracts.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Contracts.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Debug.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Debug.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.FileVersionInfo.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.FileVersionInfo.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Process.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Process.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.StackTrace.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.StackTrace.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TextWriterTraceListener.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TextWriterTraceListener.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Tools.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Tools.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TraceSource.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TraceSource.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Drawing.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Drawing.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Dynamic.Runtime.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Dynamic.Runtime.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Calendars.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Calendars.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Compression.ZipFile.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Compression.ZipFile.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.DriveInfo.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.DriveInfo.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Watcher.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Watcher.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.IsolatedStorage.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.IsolatedStorage.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.MemoryMappedFiles.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.MemoryMappedFiles.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Pipes.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Pipes.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.UnmanagedMemoryStream.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.UnmanagedMemoryStream.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Expressions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Expressions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Parallel.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Parallel.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Queryable.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Queryable.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Http.Rtc.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Http.Rtc.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NameResolution.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NameResolution.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NetworkInformation.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NetworkInformation.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Ping.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Ping.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Requests.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Requests.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Security.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Security.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Sockets.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Sockets.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebHeaderCollection.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebHeaderCollection.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.Client.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.Client.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ObjectModel.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ObjectModel.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.ILGeneration.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.ILGeneration.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.Lightweight.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.Lightweight.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Reader.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Reader.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.ResourceManager.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.ResourceManager.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Writer.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Writer.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.CompilerServices.VisualC.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.CompilerServices.VisualC.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Handles.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Handles.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Numerics.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Numerics.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Formatters.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Formatters.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Json.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Json.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Xml.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Xml.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Claims.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Claims.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Algorithms.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Algorithms.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Csp.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Csp.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Encoding.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Encoding.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.X509Certificates.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.X509Certificates.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Principal.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Principal.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.SecureString.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.SecureString.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Duplex.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Duplex.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Http.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Http.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.NetTcp.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.NetTcp.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Primitives.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Primitives.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Security.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Security.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.Extensions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.Extensions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.RegularExpressions.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.RegularExpressions.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Overlapped.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Overlapped.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.Parallel.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.Parallel.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Thread.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Thread.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.ThreadPool.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.ThreadPool.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Timer.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Timer.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ValueTuple.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ValueTuple.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.ReaderWriter.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.ReaderWriter.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XDocument.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XDocument.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlDocument.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlDocument.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlSerializer.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlSerializer.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.dll - D:\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.XDocument.dll + F:\Program Files\Unity\2020.3.33f1c2\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.XDocument.dll Library\ScriptAssemblies\UnityEditor.UI.dll diff --git a/UserSettings/EditorUserSettings.asset b/UserSettings/EditorUserSettings.asset index 9287014..77a25d2 100644 --- a/UserSettings/EditorUserSettings.asset +++ b/UserSettings/EditorUserSettings.asset @@ -6,10 +6,10 @@ EditorUserSettings: serializedVersion: 4 m_ConfigSettings: RecentlyUsedScenePath-0: - value: 22424703114646680e0b0227036c6c111b07142f1f2b233e2867083debf42d + value: 22424703114646680e0b0227036c72111f19563f22213229 flags: 0 RecentlyUsedScenePath-1: - value: 22424703114646680e0b0227036c72111f19563f22213229 + value: 22424703114646680e0b0227036c6c111b07142f1f2b233e2867083debf42d flags: 0 vcSharedLogLevel: value: 0d5e400f0650 -- 2.36.0.windows.1 From e31be74dbb6bfc4b327f93d5b92466bc7455fa88 Mon Sep 17 00:00:00 2001 From: sin365 <353374337@qq.com> Date: Mon, 2 Jan 2023 14:50:46 +0800 Subject: [PATCH 2/2] tag --- ProjectSettings/TagManager.asset | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset index 7b40237..1c92a78 100644 --- a/ProjectSettings/TagManager.asset +++ b/ProjectSettings/TagManager.asset @@ -15,12 +15,12 @@ TagManager: - - - - - MainPlayer - - Players - - Monster - - NPC - - Drop - - Terrain + - + - + - + - + - + - - - - -- 2.36.0.windows.1