├── .editorconfig ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── Assembly-CSharp-Editor.csproj ├── Assembly-CSharp-firstpass.csproj ├── Assembly-CSharp.csproj ├── CubeUnity.sln ├── ImportAndUseNuGetPackages.csproj ├── Logs ├── AssetImportWorker0-prev.log ├── AssetImportWorker1-prev.log ├── Packages-Update.log └── shadercompiler-UnityShaderCompiler.exe0.log ├── NuGetForUnity.Editor.Tests.csproj ├── NuGetForUnity.csproj ├── PPv2URPConverters.csproj ├── Packages ├── manifest.json └── packages-lock.json ├── PlayFab.csproj ├── PlayFabEditorExtensions.csproj ├── PlayFabSDKEditor.csproj ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_StandaloneWindows.json ├── BurstAotSettings_WebGL.json ├── ClusterInputManager.asset ├── CommonBurstAotSettings.json ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Packages │ └── com.unity.testtools.codecoverage │ │ └── Settings.json ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── TimelineSettings.asset ├── URPProjectSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset ├── README.md ├── Temp └── obj │ └── Debug │ ├── Assembly-CSharp-Editor │ ├── .NETStandard,Version=v2.1.AssemblyAttributes.cs │ ├── Assembly-CSharp-Editor.GeneratedMSBuildEditorConfig.editorconfig │ ├── Assembly-CSharp-Editor.assets.cache │ ├── Assembly-CSharp-Editor.csproj.AssemblyReference.cache │ ├── Assembly-CSharp-Editor.csproj.nuget.dgspec.json │ ├── Assembly-CSharp-Editor.csproj.nuget.g.props │ ├── Assembly-CSharp-Editor.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache │ ├── Assembly-CSharp-firstpass │ ├── .NETStandard,Version=v2.1.AssemblyAttributes.cs │ ├── Assembly-CSharp-firstpass.GeneratedMSBuildEditorConfig.editorconfig │ ├── Assembly-CSharp-firstpass.assets.cache │ ├── Assembly-CSharp-firstpass.csproj.AssemblyReference.cache │ ├── Assembly-CSharp-firstpass.csproj.nuget.dgspec.json │ ├── Assembly-CSharp-firstpass.csproj.nuget.g.props │ ├── Assembly-CSharp-firstpass.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache │ ├── Assembly-CSharp │ ├── .NETStandard,Version=v2.1.AssemblyAttributes.cs │ ├── Assembly-CSharp.GeneratedMSBuildEditorConfig.editorconfig │ ├── Assembly-CSharp.assets.cache │ ├── Assembly-CSharp.csproj.AssemblyReference.cache │ ├── Assembly-CSharp.csproj.nuget.dgspec.json │ ├── Assembly-CSharp.csproj.nuget.g.props │ ├── Assembly-CSharp.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache │ ├── PlayFab │ ├── .NETStandard,Version=v2.1.AssemblyAttributes.cs │ ├── PlayFab.GeneratedMSBuildEditorConfig.editorconfig │ ├── PlayFab.assets.cache │ ├── PlayFab.csproj.AssemblyReference.cache │ ├── PlayFab.csproj.nuget.dgspec.json │ ├── PlayFab.csproj.nuget.g.props │ ├── PlayFab.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache │ ├── PlayFabEditorExtensions │ ├── .NETStandard,Version=v2.1.AssemblyAttributes.cs │ ├── PlayFabEditorExtensions.GeneratedMSBuildEditorConfig.editorconfig │ ├── PlayFabEditorExtensions.assets.cache │ ├── PlayFabEditorExtensions.csproj.AssemblyReference.cache │ ├── PlayFabEditorExtensions.csproj.nuget.dgspec.json │ ├── PlayFabEditorExtensions.csproj.nuget.g.props │ ├── PlayFabEditorExtensions.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache │ └── PlayFabSDKEditor │ ├── .NETStandard,Version=v2.1.AssemblyAttributes.cs │ ├── PlayFabSDKEditor.GeneratedMSBuildEditorConfig.editorconfig │ ├── PlayFabSDKEditor.assets.cache │ ├── PlayFabSDKEditor.csproj.AssemblyReference.cache │ ├── PlayFabSDKEditor.csproj.nuget.dgspec.json │ ├── PlayFabSDKEditor.csproj.nuget.g.props │ ├── PlayFabSDKEditor.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── UIElementsSchema ├── GlobalNamespace.xsd ├── UIElements.xsd ├── Unity.Profiling.Editor.xsd ├── Unity.UI.Builder.xsd ├── UnityEditor.Experimental.GraphView.xsd ├── UnityEditor.Overlays.xsd ├── UnityEditor.PackageManager.UI.Internal.xsd ├── UnityEditor.Rendering.LookDev.xsd ├── UnityEditor.Search.xsd ├── UnityEditor.ShaderGraph.Drawing.xsd ├── UnityEditor.ShortcutManagement.xsd ├── UnityEditor.UIElements.Debugger.xsd ├── UnityEditor.UIElements.xsd └── UnityEngine.UIElements.xsd ├── Unity.RenderPipeline.Universal.ShaderLibrary.csproj ├── Unity.RenderPipelines.Core.Editor.csproj ├── Unity.RenderPipelines.Core.Runtime.csproj ├── Unity.RenderPipelines.Core.ShaderLibrary.csproj ├── Unity.RenderPipelines.Universal.Editor.csproj ├── Unity.RenderPipelines.Universal.Runtime.csproj ├── Unity.RenderPipelines.Universal.Shaders.csproj ├── UnityEngine.UI.csproj └── UserSettings ├── EditorUserSettings.asset ├── Layouts ├── CurrentMaximizeLayout.dwlt └── default-2022.dwlt └── Search.settings /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peti6inge/Cube-Alpha/4d3824438b32e6aaa6de67214aebf89ef16b0c5d/.editorconfig -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "visualstudiotoolsforunity.vstuc" 4 | ] 5 | } 6 | { 7 | "recommendations": [ 8 | "visualstudiotoolsforunity.vstuc" 9 | ] 10 | } 11 | { 12 | "recommendations": [ 13 | "visualstudiotoolsforunity.vstuc" 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.2.0", 3 | "configurations": [ 4 | { 5 | "name": "Attach to Unity", 6 | "type": "vstuc", 7 | "request": "attach" 8 | } 9 | ] 10 | } "type": "vstuc", 11 | "request": "attach" 12 | } 13 | ] 14 | } "type": "vstuc", 15 | "request": "attach" 16 | } 17 | ] 18 | }v -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.exclude": { 3 | "**/.DS_Store": true, 4 | "**/.git": true, 5 | "**/.gitmodules": true, 6 | "**/*.booproj": true, 7 | "**/*.pidb": true, 8 | "**/*.suo": true, 9 | "**/*.user": true, 10 | "**/*.userprefs": true, 11 | "**/*.unityproj": true, 12 | "**/*.dll": true, 13 | "**/*.exe": true, 14 | "**/*.pdf": true, 15 | "**/*.mid": true, 16 | "**/*.midi": true, 17 | "**/*.wav": true, 18 | "**/*.gif": true, 19 | "**/*.ico": true, 20 | "**/*.jpg": true, 21 | "**/*.jpeg": true, 22 | "**/*.png": true, 23 | "**/*.psd": true, 24 | "**/*.tga": true, 25 | "**/*.tif": true, 26 | "**/*.tiff": true, 27 | "**/*.3ds": true, 28 | "**/*.3DS": true, 29 | "**/*.fbx": true, 30 | "**/*.FBX": true, 31 | "**/*.lxo": true, 32 | "**/*.LXO": true, 33 | "**/*.ma": true, 34 | "**/*.MA": true, 35 | "**/*.obj": true, 36 | "**/*.OBJ": true, 37 | "**/*.asset": true, 38 | "**/*.cubemap": true, 39 | "**/*.flare": true, 40 | "**/*.mat": true, 41 | "**/*.meta": true, 42 | "**/*.prefab": true, 43 | "**/*.unity": true, 44 | "build/": true, 45 | "Build/": true, 46 | "Library/": true, 47 | "library/": true, 48 | "obj/": true, 49 | "Obj/": true, 50 | "ProjectSettings/": true, 51 | "temp/": true, 52 | "Temp/": true 53 | }, 54 | "dotnet.defaultSolution": "CubeUnity.sln", 55 | "git.ignoreLimitWarning": true 56 | } -------------------------------------------------------------------------------- /CubeUnity.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp", "Assembly-CSharp.csproj", "{2E4CD1AF-19E4-773D-65C1-D887F6866EFA}" 5 | EndProject 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PlayFabEditorExtensions", "PlayFabEditorExtensions.csproj", "{8F65AAC6-5602-D414-E1A6-6E107DF58A82}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PlayFab", "PlayFab.csproj", "{E4B4DD52-85D9-BD38-F66D-3BF82084E023}" 9 | EndProject 10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp-Editor", "Assembly-CSharp-Editor.csproj", "{92E0F2CB-9789-4EC5-3CC4-78E152CC3EAA}" 11 | EndProject 12 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp-firstpass", "Assembly-CSharp-firstpass.csproj", "{765ED22F-0F82-1E80-D3EF-5EAFD27E8509}" 13 | EndProject 14 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PlayFabSDKEditor", "PlayFabSDKEditor.csproj", "{B0A21AFE-E9F8-D9AC-A29C-5A161B3839DD}" 15 | EndProject 16 | Global 17 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 18 | Debug|Any CPU = Debug|Any CPU 19 | Release|Any CPU = Release|Any CPU 20 | EndGlobalSection 21 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 22 | {2E4CD1AF-19E4-773D-65C1-D887F6866EFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 23 | {2E4CD1AF-19E4-773D-65C1-D887F6866EFA}.Debug|Any CPU.Build.0 = Debug|Any CPU 24 | {2E4CD1AF-19E4-773D-65C1-D887F6866EFA}.Release|Any CPU.ActiveCfg = Release|Any CPU 25 | {2E4CD1AF-19E4-773D-65C1-D887F6866EFA}.Release|Any CPU.Build.0 = Release|Any CPU 26 | {8F65AAC6-5602-D414-E1A6-6E107DF58A82}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 27 | {8F65AAC6-5602-D414-E1A6-6E107DF58A82}.Debug|Any CPU.Build.0 = Debug|Any CPU 28 | {8F65AAC6-5602-D414-E1A6-6E107DF58A82}.Release|Any CPU.ActiveCfg = Release|Any CPU 29 | {8F65AAC6-5602-D414-E1A6-6E107DF58A82}.Release|Any CPU.Build.0 = Release|Any CPU 30 | {E4B4DD52-85D9-BD38-F66D-3BF82084E023}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 31 | {E4B4DD52-85D9-BD38-F66D-3BF82084E023}.Debug|Any CPU.Build.0 = Debug|Any CPU 32 | {E4B4DD52-85D9-BD38-F66D-3BF82084E023}.Release|Any CPU.ActiveCfg = Release|Any CPU 33 | {E4B4DD52-85D9-BD38-F66D-3BF82084E023}.Release|Any CPU.Build.0 = Release|Any CPU 34 | {92E0F2CB-9789-4EC5-3CC4-78E152CC3EAA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 35 | {92E0F2CB-9789-4EC5-3CC4-78E152CC3EAA}.Debug|Any CPU.Build.0 = Debug|Any CPU 36 | {92E0F2CB-9789-4EC5-3CC4-78E152CC3EAA}.Release|Any CPU.ActiveCfg = Release|Any CPU 37 | {92E0F2CB-9789-4EC5-3CC4-78E152CC3EAA}.Release|Any CPU.Build.0 = Release|Any CPU 38 | {765ED22F-0F82-1E80-D3EF-5EAFD27E8509}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 39 | {765ED22F-0F82-1E80-D3EF-5EAFD27E8509}.Debug|Any CPU.Build.0 = Debug|Any CPU 40 | {765ED22F-0F82-1E80-D3EF-5EAFD27E8509}.Release|Any CPU.ActiveCfg = Release|Any CPU 41 | {765ED22F-0F82-1E80-D3EF-5EAFD27E8509}.Release|Any CPU.Build.0 = Release|Any CPU 42 | {B0A21AFE-E9F8-D9AC-A29C-5A161B3839DD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 43 | {B0A21AFE-E9F8-D9AC-A29C-5A161B3839DD}.Debug|Any CPU.Build.0 = Debug|Any CPU 44 | {B0A21AFE-E9F8-D9AC-A29C-5A161B3839DD}.Release|Any CPU.ActiveCfg = Release|Any CPU 45 | {B0A21AFE-E9F8-D9AC-A29C-5A161B3839DD}.Release|Any CPU.Build.0 = Release|Any CPU 46 | EndGlobalSection 47 | GlobalSection(SolutionProperties) = preSolution 48 | HideSolutionNode = FALSE 49 | EndGlobalSection 50 | EndGlobal 51 | -------------------------------------------------------------------------------- /Logs/AssetImportWorker0-prev.log: -------------------------------------------------------------------------------- 1 | Using pre-set license 2 | Built from '2022.3/staging' branch; Version is '2022.3.17f1 (4fc78088f837) revision 5228416'; Using compiler version '192829333'; Build Type 'Release' 3 | OS: 'Windows 11 (10.0.22631) 64bit Core' Language: 'fr' Physical Memory: 32649 MB 4 | BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 5 | 6 | COMMAND LINE ARGUMENTS: 7 | C:\Program Files\Unity\Hub\Editor\2022.3.17f1\Editor\Unity.exe 8 | -adb2 9 | -batchMode 10 | -noUpm 11 | -name 12 | AssetImportWorker0 13 | -projectPath 14 | D:/CUBE/CubeUnity 15 | -logFile 16 | Logs/AssetImportWorker0.log 17 | -srvPort 18 | 54756 19 | Successfully changed project path to: D:/CUBE/CubeUnity 20 | D:/CUBE/CubeUnity 21 | [UnityMemory] Configuration Parameters - Can be set up in boot.config 22 | "memorysetup-bucket-allocator-granularity=16" 23 | "memorysetup-bucket-allocator-bucket-count=8" 24 | "memorysetup-bucket-allocator-block-size=33554432" 25 | "memorysetup-bucket-allocator-block-count=8" 26 | "memorysetup-main-allocator-block-size=16777216" 27 | "memorysetup-thread-allocator-block-size=16777216" 28 | "memorysetup-gfx-main-allocator-block-size=16777216" 29 | "memorysetup-gfx-thread-allocator-block-size=16777216" 30 | "memorysetup-cache-allocator-block-size=4194304" 31 | "memorysetup-typetree-allocator-block-size=2097152" 32 | "memorysetup-profiler-bucket-allocator-granularity=16" 33 | "memorysetup-profiler-bucket-allocator-bucket-count=8" 34 | "memorysetup-profiler-bucket-allocator-block-size=33554432" 35 | "memorysetup-profiler-bucket-allocator-block-count=8" 36 | "memorysetup-profiler-allocator-block-size=16777216" 37 | "memorysetup-profiler-editor-allocator-block-size=1048576" 38 | "memorysetup-temp-allocator-size-main=16777216" 39 | "memorysetup-job-temp-allocator-block-size=2097152" 40 | "memorysetup-job-temp-allocator-block-size-background=1048576" 41 | "memorysetup-job-temp-allocator-reduction-small-platforms=262144" 42 | "memorysetup-allocator-temp-initial-block-size-main=262144" 43 | "memorysetup-allocator-temp-initial-block-size-worker=262144" 44 | "memorysetup-temp-allocator-size-background-worker=32768" 45 | "memorysetup-temp-allocator-size-job-worker=262144" 46 | "memorysetup-temp-allocator-size-preload-manager=33554432" 47 | "memorysetup-temp-allocator-size-nav-mesh-worker=65536" 48 | "memorysetup-temp-allocator-size-audio-worker=65536" 49 | "memorysetup-temp-allocator-size-cloud-worker=32768" 50 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" 51 | "memorysetup-temp-allocator-size-gfx=262144" 52 | Player connection [20212] Host "[IP] 192.168.1.68 [Port] 0 [Flags] 2 [Guid] 887150663 [EditorId] 887150663 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-50N1T0H) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... 53 | 54 | Player connection [20212] Host "[IP] 192.168.1.68 [Port] 0 [Flags] 2 [Guid] 887150663 [EditorId] 887150663 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-50N1T0H) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... 55 | 56 | [Physics::Module] Initialized MultithreadedJobDispatcher with 15 workers. 57 | Refreshing native plugins compatible for Editor in 13.42 ms, found 3 plugins. 58 | Preloading 0 native plugins for Editor in 0.00 ms. 59 | Initialize engine version: 2022.3.17f1 (4fc78088f837) 60 | [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.17f1/Editor/Data/Resources/UnitySubsystems 61 | [Subsystems] Discovering subsystems at path D:/CUBE/CubeUnity/Assets 62 | GfxDevice: creating device client; threaded=0; jobified=0 63 | Direct3D: 64 | Version: Direct3D 11.0 [level 11.1] 65 | Renderer: NVIDIA GeForce RTX 3050 (ID=0x2507) 66 | Vendor: NVIDIA 67 | VRAM: 8042 MB 68 | Driver: 32.0.15.6094 69 | Initialize mono 70 | Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.17f1/Editor/Data/Managed' 71 | Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.17f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' 72 | Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.17f1/Editor/Data/MonoBleedingEdge/etc' 73 | Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56252 74 | Begin MonoManager ReloadAssembly 75 | Registering precompiled unity dll's ... 76 | Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.17f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll 77 | Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.17f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll 78 | Registered in 0.007810 seconds. 79 | - Loaded All Assemblies, in 0.386 seconds 80 | Native extension for WindowsStandalone target not found 81 | Native extension for WebGL target not found 82 | Mono: successfully reloaded assembly 83 | - Finished resetting the current domain, in 0.213 seconds 84 | Domain Reload Profiling: 597ms 85 | BeginReloadAssembly (135ms) 86 | ExecutionOrderSort (0ms) 87 | DisableScriptedObjects (0ms) 88 | BackupInstance (0ms) 89 | ReleaseScriptingObjects (0ms) 90 | CreateAndSetChildDomain (1ms) 91 | RebuildCommonClasses (34ms) 92 | RebuildNativeTypeToScriptingClass (8ms) 93 | initialDomainReloadingComplete (54ms) 94 | LoadAllAssembliesAndSetupDomain (153ms) 95 | LoadAssemblies (135ms) 96 | RebuildTransferFunctionScriptingTraits (0ms) 97 | AnalyzeDomain (150ms) 98 | TypeCache.Refresh (149ms) 99 | TypeCache.ScanAssembly (134ms) 100 | ScanForSourceGeneratedMonoScriptInfo (0ms) 101 | ResolveRequiredComponents (0ms) 102 | FinalizeReload (213ms) 103 | ReleaseScriptCaches (0ms) 104 | RebuildScriptCaches (0ms) 105 | SetupLoadedEditorAssemblies (170ms) 106 | LogAssemblyErrors (0ms) 107 | InitializePlatformSupportModulesInManaged (8ms) 108 | SetLoadedEditorAssemblies (4ms) 109 | RefreshPlugins (0ms) 110 | BeforeProcessingInitializeOnLoad (2ms) 111 | ProcessInitializeOnLoadAttributes (114ms) 112 | ProcessInitializeOnLoadMethodAttributes (43ms) 113 | AfterProcessingInitializeOnLoad (0ms) 114 | EditorAssembliesLoaded (0ms) 115 | ExecutionOrderSort2 (0ms) 116 | AwakeInstancesAfterBackupRestoration (0ms) 117 | ======================================================================== 118 | Worker process is ready to serve import requests 119 | Begin MonoManager ReloadAssembly 120 | - Loaded All Assemblies, in 0.916 seconds 121 | Refreshing native plugins compatible for Editor in 4.34 ms, found 3 plugins. 122 | Native extension for WindowsStandalone target not found 123 | Native extension for WebGL target not found 124 | Package Manager log level set to [2] 125 | [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument 126 | [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). 127 | [Package Manager] Cannot connect to Unity Package Manager local server 128 | Mono: successfully reloaded assembly 129 | - Finished resetting the current domain, in 0.940 seconds 130 | Domain Reload Profiling: 1855ms 131 | BeginReloadAssembly (132ms) 132 | ExecutionOrderSort (0ms) 133 | DisableScriptedObjects (4ms) 134 | BackupInstance (0ms) 135 | ReleaseScriptingObjects (0ms) 136 | CreateAndSetChildDomain (16ms) 137 | RebuildCommonClasses (26ms) 138 | RebuildNativeTypeToScriptingClass (8ms) 139 | initialDomainReloadingComplete (42ms) 140 | LoadAllAssembliesAndSetupDomain (706ms) 141 | LoadAssemblies (422ms) 142 | RebuildTransferFunctionScriptingTraits (0ms) 143 | AnalyzeDomain (365ms) 144 | TypeCache.Refresh (318ms) 145 | TypeCache.ScanAssembly (295ms) 146 | ScanForSourceGeneratedMonoScriptInfo (36ms) 147 | ResolveRequiredComponents (9ms) 148 | FinalizeReload (941ms) 149 | ReleaseScriptCaches (0ms) 150 | RebuildScriptCaches (0ms) 151 | SetupLoadedEditorAssemblies (801ms) 152 | LogAssemblyErrors (0ms) 153 | InitializePlatformSupportModulesInManaged (6ms) 154 | SetLoadedEditorAssemblies (3ms) 155 | RefreshPlugins (0ms) 156 | BeforeProcessingInitializeOnLoad (60ms) 157 | ProcessInitializeOnLoadAttributes (663ms) 158 | ProcessInitializeOnLoadMethodAttributes (62ms) 159 | AfterProcessingInitializeOnLoad (6ms) 160 | EditorAssembliesLoaded (0ms) 161 | ExecutionOrderSort2 (0ms) 162 | AwakeInstancesAfterBackupRestoration (6ms) 163 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds 164 | Refreshing native plugins compatible for Editor in 4.29 ms, found 3 plugins. 165 | Preloading 0 native plugins for Editor in 0.00 ms. 166 | Unloading 6004 Unused Serialized files (Serialized files now loaded: 0) 167 | Unloading 100 unused Assets / (2.0 MB). Loaded Objects now: 6495. 168 | Memory consumption went from 345.0 MB to 342.9 MB. 169 | Total: 3.276600 ms (FindLiveObjects: 0.365900 ms CreateObjectMapping: 0.270300 ms MarkObjects: 2.394500 ms DeleteObjects: 0.244300 ms) 170 | 171 | AssetImportParameters requested are different than current active one (requested -> active): 172 | custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 173 | custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 174 | custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 175 | custom:CustomObjectIndexerAttribute: 0f5f72dab822025b0759b197a3119d15 -> 176 | custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 177 | custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 178 | custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 179 | custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> 180 | custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> 181 | custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 182 | custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 183 | custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 184 | ======================================================================== 185 | Received Prepare 186 | Refreshing native plugins compatible for Editor in 5.21 ms, found 3 plugins. 187 | Preloading 0 native plugins for Editor in 0.00 ms. 188 | Unloading 14 Unused Serialized files (Serialized files now loaded: 0) 189 | Unloading 14 unused Assets / (2.0 MB). Loaded Objects now: 6495. 190 | Memory consumption went from 218.0 MB to 216.0 MB. 191 | Total: 3.464000 ms (FindLiveObjects: 0.372600 ms CreateObjectMapping: 0.204700 ms MarkObjects: 2.598300 ms DeleteObjects: 0.287600 ms) 192 | 193 | Prepare: number of updated asset objects reloaded= 0 194 | AssetImportParameters requested are different than current active one (requested -> active): 195 | custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 196 | custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 197 | custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 198 | custom:CustomObjectIndexerAttribute: 0f5f72dab822025b0759b197a3119d15 -> 199 | custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 200 | custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 201 | custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 202 | custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> 203 | custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> 204 | custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 205 | custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 206 | custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 207 | ======================================================================== 208 | Received Import Request. 209 | Time since last request: 15182.639988 seconds. 210 | path: Assets/IMAGES_VIDEOS/BG/WEBM 211 | artifactKey: Guid(748e4144f69efca4e9d6796539fe05a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 212 | Start importing Assets/IMAGES_VIDEOS/BG/WEBM using Guid(748e4144f69efca4e9d6796539fe05a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '13044f0ff9d9a43b7683bb0b95295576') in 0.011064 seconds 213 | Number of updated asset objects reloaded before import = 0 214 | Number of asset objects unloaded after import = 0 215 | -------------------------------------------------------------------------------- /Logs/AssetImportWorker1-prev.log: -------------------------------------------------------------------------------- 1 | Using pre-set license 2 | Built from '2022.3/staging' branch; Version is '2022.3.17f1 (4fc78088f837) revision 5228416'; Using compiler version '192829333'; Build Type 'Release' 3 | OS: 'Windows 11 (10.0.22631) 64bit Core' Language: 'fr' Physical Memory: 32649 MB 4 | BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 5 | 6 | COMMAND LINE ARGUMENTS: 7 | C:\Program Files\Unity\Hub\Editor\2022.3.17f1\Editor\Unity.exe 8 | -adb2 9 | -batchMode 10 | -noUpm 11 | -name 12 | AssetImportWorker1 13 | -projectPath 14 | D:/CUBE/CubeUnity 15 | -logFile 16 | Logs/AssetImportWorker1.log 17 | -srvPort 18 | 54756 19 | Successfully changed project path to: D:/CUBE/CubeUnity 20 | D:/CUBE/CubeUnity 21 | [UnityMemory] Configuration Parameters - Can be set up in boot.config 22 | "memorysetup-bucket-allocator-granularity=16" 23 | "memorysetup-bucket-allocator-bucket-count=8" 24 | "memorysetup-bucket-allocator-block-size=33554432" 25 | "memorysetup-bucket-allocator-block-count=8" 26 | "memorysetup-main-allocator-block-size=16777216" 27 | "memorysetup-thread-allocator-block-size=16777216" 28 | "memorysetup-gfx-main-allocator-block-size=16777216" 29 | "memorysetup-gfx-thread-allocator-block-size=16777216" 30 | "memorysetup-cache-allocator-block-size=4194304" 31 | "memorysetup-typetree-allocator-block-size=2097152" 32 | "memorysetup-profiler-bucket-allocator-granularity=16" 33 | "memorysetup-profiler-bucket-allocator-bucket-count=8" 34 | "memorysetup-profiler-bucket-allocator-block-size=33554432" 35 | "memorysetup-profiler-bucket-allocator-block-count=8" 36 | "memorysetup-profiler-allocator-block-size=16777216" 37 | "memorysetup-profiler-editor-allocator-block-size=1048576" 38 | "memorysetup-temp-allocator-size-main=16777216" 39 | "memorysetup-job-temp-allocator-block-size=2097152" 40 | "memorysetup-job-temp-allocator-block-size-background=1048576" 41 | "memorysetup-job-temp-allocator-reduction-small-platforms=262144" 42 | "memorysetup-allocator-temp-initial-block-size-main=262144" 43 | "memorysetup-allocator-temp-initial-block-size-worker=262144" 44 | "memorysetup-temp-allocator-size-background-worker=32768" 45 | "memorysetup-temp-allocator-size-job-worker=262144" 46 | "memorysetup-temp-allocator-size-preload-manager=33554432" 47 | "memorysetup-temp-allocator-size-nav-mesh-worker=65536" 48 | "memorysetup-temp-allocator-size-audio-worker=65536" 49 | "memorysetup-temp-allocator-size-cloud-worker=32768" 50 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" 51 | "memorysetup-temp-allocator-size-gfx=262144" 52 | Player connection [5780] Host "[IP] 192.168.1.68 [Port] 0 [Flags] 2 [Guid] 325617667 [EditorId] 325617667 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-50N1T0H) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... 53 | 54 | Player connection [5780] Host "[IP] 192.168.1.68 [Port] 0 [Flags] 2 [Guid] 325617667 [EditorId] 325617667 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-50N1T0H) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... 55 | 56 | [Physics::Module] Initialized MultithreadedJobDispatcher with 15 workers. 57 | Refreshing native plugins compatible for Editor in 11.79 ms, found 3 plugins. 58 | Preloading 0 native plugins for Editor in 0.00 ms. 59 | Initialize engine version: 2022.3.17f1 (4fc78088f837) 60 | [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.17f1/Editor/Data/Resources/UnitySubsystems 61 | [Subsystems] Discovering subsystems at path D:/CUBE/CubeUnity/Assets 62 | GfxDevice: creating device client; threaded=0; jobified=0 63 | Direct3D: 64 | Version: Direct3D 11.0 [level 11.1] 65 | Renderer: NVIDIA GeForce RTX 3050 (ID=0x2507) 66 | Vendor: NVIDIA 67 | VRAM: 8042 MB 68 | Driver: 32.0.15.6094 69 | Initialize mono 70 | Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.17f1/Editor/Data/Managed' 71 | Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.17f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' 72 | Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.17f1/Editor/Data/MonoBleedingEdge/etc' 73 | Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56724 74 | Begin MonoManager ReloadAssembly 75 | Registering precompiled unity dll's ... 76 | Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.17f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll 77 | Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.17f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll 78 | Registered in 0.007931 seconds. 79 | - Loaded All Assemblies, in 0.384 seconds 80 | Native extension for WindowsStandalone target not found 81 | Native extension for WebGL target not found 82 | Mono: successfully reloaded assembly 83 | - Finished resetting the current domain, in 0.213 seconds 84 | Domain Reload Profiling: 595ms 85 | BeginReloadAssembly (135ms) 86 | ExecutionOrderSort (0ms) 87 | DisableScriptedObjects (0ms) 88 | BackupInstance (0ms) 89 | ReleaseScriptingObjects (0ms) 90 | CreateAndSetChildDomain (1ms) 91 | RebuildCommonClasses (34ms) 92 | RebuildNativeTypeToScriptingClass (8ms) 93 | initialDomainReloadingComplete (54ms) 94 | LoadAllAssembliesAndSetupDomain (152ms) 95 | LoadAssemblies (135ms) 96 | RebuildTransferFunctionScriptingTraits (0ms) 97 | AnalyzeDomain (148ms) 98 | TypeCache.Refresh (147ms) 99 | TypeCache.ScanAssembly (132ms) 100 | ScanForSourceGeneratedMonoScriptInfo (0ms) 101 | ResolveRequiredComponents (1ms) 102 | FinalizeReload (213ms) 103 | ReleaseScriptCaches (0ms) 104 | RebuildScriptCaches (0ms) 105 | SetupLoadedEditorAssemblies (170ms) 106 | LogAssemblyErrors (0ms) 107 | InitializePlatformSupportModulesInManaged (8ms) 108 | SetLoadedEditorAssemblies (4ms) 109 | RefreshPlugins (0ms) 110 | BeforeProcessingInitializeOnLoad (2ms) 111 | ProcessInitializeOnLoadAttributes (115ms) 112 | ProcessInitializeOnLoadMethodAttributes (41ms) 113 | AfterProcessingInitializeOnLoad (0ms) 114 | EditorAssembliesLoaded (0ms) 115 | ExecutionOrderSort2 (0ms) 116 | AwakeInstancesAfterBackupRestoration (0ms) 117 | ======================================================================== 118 | Worker process is ready to serve import requests 119 | Begin MonoManager ReloadAssembly 120 | - Loaded All Assemblies, in 0.913 seconds 121 | Refreshing native plugins compatible for Editor in 4.04 ms, found 3 plugins. 122 | Native extension for WindowsStandalone target not found 123 | Native extension for WebGL target not found 124 | Package Manager log level set to [2] 125 | [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument 126 | [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). 127 | [Package Manager] Cannot connect to Unity Package Manager local server 128 | Mono: successfully reloaded assembly 129 | - Finished resetting the current domain, in 0.943 seconds 130 | Domain Reload Profiling: 1854ms 131 | BeginReloadAssembly (131ms) 132 | ExecutionOrderSort (0ms) 133 | DisableScriptedObjects (6ms) 134 | BackupInstance (0ms) 135 | ReleaseScriptingObjects (0ms) 136 | CreateAndSetChildDomain (15ms) 137 | RebuildCommonClasses (27ms) 138 | RebuildNativeTypeToScriptingClass (8ms) 139 | initialDomainReloadingComplete (42ms) 140 | LoadAllAssembliesAndSetupDomain (704ms) 141 | LoadAssemblies (423ms) 142 | RebuildTransferFunctionScriptingTraits (0ms) 143 | AnalyzeDomain (361ms) 144 | TypeCache.Refresh (316ms) 145 | TypeCache.ScanAssembly (290ms) 146 | ScanForSourceGeneratedMonoScriptInfo (34ms) 147 | ResolveRequiredComponents (9ms) 148 | FinalizeReload (943ms) 149 | ReleaseScriptCaches (0ms) 150 | RebuildScriptCaches (0ms) 151 | SetupLoadedEditorAssemblies (804ms) 152 | LogAssemblyErrors (0ms) 153 | InitializePlatformSupportModulesInManaged (6ms) 154 | SetLoadedEditorAssemblies (3ms) 155 | RefreshPlugins (0ms) 156 | BeforeProcessingInitializeOnLoad (59ms) 157 | ProcessInitializeOnLoadAttributes (664ms) 158 | ProcessInitializeOnLoadMethodAttributes (65ms) 159 | AfterProcessingInitializeOnLoad (6ms) 160 | EditorAssembliesLoaded (0ms) 161 | ExecutionOrderSort2 (0ms) 162 | AwakeInstancesAfterBackupRestoration (6ms) 163 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds 164 | Refreshing native plugins compatible for Editor in 4.77 ms, found 3 plugins. 165 | Preloading 0 native plugins for Editor in 0.00 ms. 166 | Unloading 6004 Unused Serialized files (Serialized files now loaded: 0) 167 | Unloading 100 unused Assets / (2.0 MB). Loaded Objects now: 6495. 168 | Memory consumption went from 344.8 MB to 342.7 MB. 169 | Total: 3.563200 ms (FindLiveObjects: 0.332400 ms CreateObjectMapping: 0.199100 ms MarkObjects: 2.712500 ms DeleteObjects: 0.318200 ms) 170 | 171 | AssetImportParameters requested are different than current active one (requested -> active): 172 | custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 173 | custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 174 | custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 175 | custom:CustomObjectIndexerAttribute: 0f5f72dab822025b0759b197a3119d15 -> 176 | custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 177 | custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 178 | custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 179 | custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> 180 | custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> 181 | custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 182 | custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 183 | custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 184 | ======================================================================== 185 | Received Import Request. 186 | Time since last request: 14978.937763 seconds. 187 | path: Assets/IMAGES_VIDEOS/BG/WEBM/SkyBox down.png 188 | artifactKey: Guid(6c45174cddfff9345bdd509cf833aa82) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 189 | Start importing Assets/IMAGES_VIDEOS/BG/WEBM/SkyBox down.png using Guid(6c45174cddfff9345bdd509cf833aa82) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a8479d7b44fe55febd91a02a135ad086') in 0.048617 seconds 190 | Number of updated asset objects reloaded before import = 0 191 | Number of asset objects unloaded after import = 2 192 | ======================================================================== 193 | Received Prepare 194 | Refreshing native plugins compatible for Editor in 4.57 ms, found 3 plugins. 195 | Preloading 0 native plugins for Editor in 0.00 ms. 196 | Unloading 14 Unused Serialized files (Serialized files now loaded: 0) 197 | Unloading 14 unused Assets / (2.0 MB). Loaded Objects now: 6498. 198 | Memory consumption went from 216.5 MB to 214.4 MB. 199 | Total: 3.938900 ms (FindLiveObjects: 0.436900 ms CreateObjectMapping: 0.238200 ms MarkObjects: 3.051500 ms DeleteObjects: 0.211300 ms) 200 | 201 | Prepare: number of updated asset objects reloaded= 0 202 | AssetImportParameters requested are different than current active one (requested -> active): 203 | custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 204 | custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 205 | custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 206 | custom:CustomObjectIndexerAttribute: 0f5f72dab822025b0759b197a3119d15 -> 207 | custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 208 | custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 209 | custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 210 | custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> 211 | custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> 212 | custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 213 | custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 214 | custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 215 | -------------------------------------------------------------------------------- /Logs/Packages-Update.log: -------------------------------------------------------------------------------- 1 | 2 | === Tue Jun 25 22:29:15 2024 3 | 4 | Packages were changed. 5 | Update Mode: mergeDefaultDependencies 6 | 7 | The following packages were added: 8 | com.unity.modules.ai@1.0.0 9 | com.unity.modules.androidjni@1.0.0 10 | com.unity.modules.animation@1.0.0 11 | com.unity.modules.assetbundle@1.0.0 12 | com.unity.modules.audio@1.0.0 13 | com.unity.modules.cloth@1.0.0 14 | com.unity.modules.director@1.0.0 15 | com.unity.modules.imageconversion@1.0.0 16 | com.unity.modules.imgui@1.0.0 17 | com.unity.modules.jsonserialize@1.0.0 18 | com.unity.modules.particlesystem@1.0.0 19 | com.unity.modules.physics@1.0.0 20 | com.unity.modules.physics2d@1.0.0 21 | com.unity.modules.screencapture@1.0.0 22 | com.unity.modules.terrain@1.0.0 23 | com.unity.modules.terrainphysics@1.0.0 24 | com.unity.modules.tilemap@1.0.0 25 | com.unity.modules.ui@1.0.0 26 | com.unity.modules.uielements@1.0.0 27 | com.unity.modules.umbra@1.0.0 28 | com.unity.modules.unityanalytics@1.0.0 29 | com.unity.modules.unitywebrequest@1.0.0 30 | com.unity.modules.unitywebrequestassetbundle@1.0.0 31 | com.unity.modules.unitywebrequestaudio@1.0.0 32 | com.unity.modules.unitywebrequesttexture@1.0.0 33 | com.unity.modules.unitywebrequestwww@1.0.0 34 | com.unity.modules.vehicles@1.0.0 35 | com.unity.modules.video@1.0.0 36 | com.unity.modules.vr@1.0.0 37 | com.unity.modules.wind@1.0.0 38 | com.unity.modules.xr@1.0.0 39 | The following packages were updated: 40 | com.unity.collab-proxy from version 1.13.5 to 2.2.0 41 | com.unity.timeline from version 1.6.2 to 1.7.6 42 | com.unity.visualscripting from version 1.7.6 to 1.9.1 43 | -------------------------------------------------------------------------------- /Logs/shadercompiler-UnityShaderCompiler.exe0.log: -------------------------------------------------------------------------------- 1 | Base path: 'C:/Program Files/Unity/Hub/Editor/2022.3.17f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2022.3.17f1/Editor/Data/PlaybackEngines' 2 | Cmd: initializeCompiler 3 | 4 | Cmd: shutdown 5 | -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.2d.sprite": "1.0.0", 4 | "com.unity.collab-proxy": "2.4.3", 5 | "com.unity.feature.development": "1.0.1", 6 | "com.unity.inputsystem": "1.7.0", 7 | "com.unity.postprocessing": "3.4.0", 8 | "com.unity.render-pipelines.universal": "14.0.9", 9 | "com.unity.textmeshpro": "3.0.6", 10 | "com.unity.timeline": "1.7.6", 11 | "com.unity.ugui": "1.0.0", 12 | "com.unity.visualscripting": "1.9.1", 13 | "com.unity.modules.ai": "1.0.0", 14 | "com.unity.modules.androidjni": "1.0.0", 15 | "com.unity.modules.animation": "1.0.0", 16 | "com.unity.modules.assetbundle": "1.0.0", 17 | "com.unity.modules.audio": "1.0.0", 18 | "com.unity.modules.cloth": "1.0.0", 19 | "com.unity.modules.director": "1.0.0", 20 | "com.unity.modules.imageconversion": "1.0.0", 21 | "com.unity.modules.imgui": "1.0.0", 22 | "com.unity.modules.jsonserialize": "1.0.0", 23 | "com.unity.modules.particlesystem": "1.0.0", 24 | "com.unity.modules.physics": "1.0.0", 25 | "com.unity.modules.physics2d": "1.0.0", 26 | "com.unity.modules.screencapture": "1.0.0", 27 | "com.unity.modules.terrain": "1.0.0", 28 | "com.unity.modules.terrainphysics": "1.0.0", 29 | "com.unity.modules.tilemap": "1.0.0", 30 | "com.unity.modules.ui": "1.0.0", 31 | "com.unity.modules.uielements": "1.0.0", 32 | "com.unity.modules.umbra": "1.0.0", 33 | "com.unity.modules.unityanalytics": "1.0.0", 34 | "com.unity.modules.unitywebrequest": "1.0.0", 35 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 36 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 37 | "com.unity.modules.unitywebrequesttexture": "1.0.0", 38 | "com.unity.modules.unitywebrequestwww": "1.0.0", 39 | "com.unity.modules.vehicles": "1.0.0", 40 | "com.unity.modules.video": "1.0.0", 41 | "com.unity.modules.vr": "1.0.0", 42 | "com.unity.modules.wind": "1.0.0", 43 | "com.unity.modules.xr": "1.0.0" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.2d.sprite": { 4 | "version": "1.0.0", 5 | "depth": 0, 6 | "source": "builtin", 7 | "dependencies": {} 8 | }, 9 | "com.unity.burst": { 10 | "version": "1.8.11", 11 | "depth": 1, 12 | "source": "registry", 13 | "dependencies": { 14 | "com.unity.mathematics": "1.2.1" 15 | }, 16 | "url": "https://packages.unity.com" 17 | }, 18 | "com.unity.collab-proxy": { 19 | "version": "2.4.3", 20 | "depth": 0, 21 | "source": "registry", 22 | "dependencies": {}, 23 | "url": "https://packages.unity.com" 24 | }, 25 | "com.unity.editorcoroutines": { 26 | "version": "1.0.0", 27 | "depth": 1, 28 | "source": "registry", 29 | "dependencies": {}, 30 | "url": "https://packages.unity.com" 31 | }, 32 | "com.unity.ext.nunit": { 33 | "version": "1.0.6", 34 | "depth": 2, 35 | "source": "registry", 36 | "dependencies": {}, 37 | "url": "https://packages.unity.com" 38 | }, 39 | "com.unity.feature.development": { 40 | "version": "1.0.1", 41 | "depth": 0, 42 | "source": "builtin", 43 | "dependencies": { 44 | "com.unity.ide.visualstudio": "2.0.22", 45 | "com.unity.ide.rider": "3.0.27", 46 | "com.unity.ide.vscode": "1.2.5", 47 | "com.unity.editorcoroutines": "1.0.0", 48 | "com.unity.performance.profile-analyzer": "1.2.2", 49 | "com.unity.test-framework": "1.1.33", 50 | "com.unity.testtools.codecoverage": "1.2.4" 51 | } 52 | }, 53 | "com.unity.ide.rider": { 54 | "version": "3.0.27", 55 | "depth": 1, 56 | "source": "registry", 57 | "dependencies": { 58 | "com.unity.ext.nunit": "1.0.6" 59 | }, 60 | "url": "https://packages.unity.com" 61 | }, 62 | "com.unity.ide.visualstudio": { 63 | "version": "2.0.22", 64 | "depth": 1, 65 | "source": "registry", 66 | "dependencies": { 67 | "com.unity.test-framework": "1.1.9" 68 | }, 69 | "url": "https://packages.unity.com" 70 | }, 71 | "com.unity.ide.vscode": { 72 | "version": "1.2.5", 73 | "depth": 1, 74 | "source": "registry", 75 | "dependencies": {}, 76 | "url": "https://packages.unity.com" 77 | }, 78 | "com.unity.inputsystem": { 79 | "version": "1.7.0", 80 | "depth": 0, 81 | "source": "registry", 82 | "dependencies": { 83 | "com.unity.modules.uielements": "1.0.0" 84 | }, 85 | "url": "https://packages.unity.com" 86 | }, 87 | "com.unity.mathematics": { 88 | "version": "1.2.6", 89 | "depth": 1, 90 | "source": "registry", 91 | "dependencies": {}, 92 | "url": "https://packages.unity.com" 93 | }, 94 | "com.unity.performance.profile-analyzer": { 95 | "version": "1.2.2", 96 | "depth": 1, 97 | "source": "registry", 98 | "dependencies": {}, 99 | "url": "https://packages.unity.com" 100 | }, 101 | "com.unity.postprocessing": { 102 | "version": "3.4.0", 103 | "depth": 0, 104 | "source": "registry", 105 | "dependencies": { 106 | "com.unity.modules.physics": "1.0.0" 107 | }, 108 | "url": "https://packages.unity.com" 109 | }, 110 | "com.unity.render-pipelines.core": { 111 | "version": "14.0.9", 112 | "depth": 1, 113 | "source": "builtin", 114 | "dependencies": { 115 | "com.unity.ugui": "1.0.0", 116 | "com.unity.modules.physics": "1.0.0", 117 | "com.unity.modules.terrain": "1.0.0", 118 | "com.unity.modules.jsonserialize": "1.0.0" 119 | } 120 | }, 121 | "com.unity.render-pipelines.universal": { 122 | "version": "14.0.9", 123 | "depth": 0, 124 | "source": "builtin", 125 | "dependencies": { 126 | "com.unity.mathematics": "1.2.1", 127 | "com.unity.burst": "1.8.9", 128 | "com.unity.render-pipelines.core": "14.0.9", 129 | "com.unity.shadergraph": "14.0.9", 130 | "com.unity.render-pipelines.universal-config": "14.0.9" 131 | } 132 | }, 133 | "com.unity.render-pipelines.universal-config": { 134 | "version": "14.0.9", 135 | "depth": 1, 136 | "source": "builtin", 137 | "dependencies": { 138 | "com.unity.render-pipelines.core": "14.0.9" 139 | } 140 | }, 141 | "com.unity.searcher": { 142 | "version": "4.9.2", 143 | "depth": 2, 144 | "source": "registry", 145 | "dependencies": {}, 146 | "url": "https://packages.unity.com" 147 | }, 148 | "com.unity.settings-manager": { 149 | "version": "2.0.1", 150 | "depth": 2, 151 | "source": "registry", 152 | "dependencies": {}, 153 | "url": "https://packages.unity.com" 154 | }, 155 | "com.unity.shadergraph": { 156 | "version": "14.0.9", 157 | "depth": 1, 158 | "source": "builtin", 159 | "dependencies": { 160 | "com.unity.render-pipelines.core": "14.0.9", 161 | "com.unity.searcher": "4.9.2" 162 | } 163 | }, 164 | "com.unity.test-framework": { 165 | "version": "1.1.33", 166 | "depth": 1, 167 | "source": "registry", 168 | "dependencies": { 169 | "com.unity.ext.nunit": "1.0.6", 170 | "com.unity.modules.imgui": "1.0.0", 171 | "com.unity.modules.jsonserialize": "1.0.0" 172 | }, 173 | "url": "https://packages.unity.com" 174 | }, 175 | "com.unity.testtools.codecoverage": { 176 | "version": "1.2.4", 177 | "depth": 1, 178 | "source": "registry", 179 | "dependencies": { 180 | "com.unity.test-framework": "1.0.16", 181 | "com.unity.settings-manager": "1.0.1" 182 | }, 183 | "url": "https://packages.unity.com" 184 | }, 185 | "com.unity.textmeshpro": { 186 | "version": "3.0.6", 187 | "depth": 0, 188 | "source": "registry", 189 | "dependencies": { 190 | "com.unity.ugui": "1.0.0" 191 | }, 192 | "url": "https://packages.unity.com" 193 | }, 194 | "com.unity.timeline": { 195 | "version": "1.7.6", 196 | "depth": 0, 197 | "source": "registry", 198 | "dependencies": { 199 | "com.unity.modules.audio": "1.0.0", 200 | "com.unity.modules.director": "1.0.0", 201 | "com.unity.modules.animation": "1.0.0", 202 | "com.unity.modules.particlesystem": "1.0.0" 203 | }, 204 | "url": "https://packages.unity.com" 205 | }, 206 | "com.unity.ugui": { 207 | "version": "1.0.0", 208 | "depth": 0, 209 | "source": "builtin", 210 | "dependencies": { 211 | "com.unity.modules.ui": "1.0.0", 212 | "com.unity.modules.imgui": "1.0.0" 213 | } 214 | }, 215 | "com.unity.visualscripting": { 216 | "version": "1.9.1", 217 | "depth": 0, 218 | "source": "registry", 219 | "dependencies": { 220 | "com.unity.ugui": "1.0.0", 221 | "com.unity.modules.jsonserialize": "1.0.0" 222 | }, 223 | "url": "https://packages.unity.com" 224 | }, 225 | "com.unity.modules.ai": { 226 | "version": "1.0.0", 227 | "depth": 0, 228 | "source": "builtin", 229 | "dependencies": {} 230 | }, 231 | "com.unity.modules.androidjni": { 232 | "version": "1.0.0", 233 | "depth": 0, 234 | "source": "builtin", 235 | "dependencies": {} 236 | }, 237 | "com.unity.modules.animation": { 238 | "version": "1.0.0", 239 | "depth": 0, 240 | "source": "builtin", 241 | "dependencies": {} 242 | }, 243 | "com.unity.modules.assetbundle": { 244 | "version": "1.0.0", 245 | "depth": 0, 246 | "source": "builtin", 247 | "dependencies": {} 248 | }, 249 | "com.unity.modules.audio": { 250 | "version": "1.0.0", 251 | "depth": 0, 252 | "source": "builtin", 253 | "dependencies": {} 254 | }, 255 | "com.unity.modules.cloth": { 256 | "version": "1.0.0", 257 | "depth": 0, 258 | "source": "builtin", 259 | "dependencies": { 260 | "com.unity.modules.physics": "1.0.0" 261 | } 262 | }, 263 | "com.unity.modules.director": { 264 | "version": "1.0.0", 265 | "depth": 0, 266 | "source": "builtin", 267 | "dependencies": { 268 | "com.unity.modules.audio": "1.0.0", 269 | "com.unity.modules.animation": "1.0.0" 270 | } 271 | }, 272 | "com.unity.modules.imageconversion": { 273 | "version": "1.0.0", 274 | "depth": 0, 275 | "source": "builtin", 276 | "dependencies": {} 277 | }, 278 | "com.unity.modules.imgui": { 279 | "version": "1.0.0", 280 | "depth": 0, 281 | "source": "builtin", 282 | "dependencies": {} 283 | }, 284 | "com.unity.modules.jsonserialize": { 285 | "version": "1.0.0", 286 | "depth": 0, 287 | "source": "builtin", 288 | "dependencies": {} 289 | }, 290 | "com.unity.modules.particlesystem": { 291 | "version": "1.0.0", 292 | "depth": 0, 293 | "source": "builtin", 294 | "dependencies": {} 295 | }, 296 | "com.unity.modules.physics": { 297 | "version": "1.0.0", 298 | "depth": 0, 299 | "source": "builtin", 300 | "dependencies": {} 301 | }, 302 | "com.unity.modules.physics2d": { 303 | "version": "1.0.0", 304 | "depth": 0, 305 | "source": "builtin", 306 | "dependencies": {} 307 | }, 308 | "com.unity.modules.screencapture": { 309 | "version": "1.0.0", 310 | "depth": 0, 311 | "source": "builtin", 312 | "dependencies": { 313 | "com.unity.modules.imageconversion": "1.0.0" 314 | } 315 | }, 316 | "com.unity.modules.subsystems": { 317 | "version": "1.0.0", 318 | "depth": 1, 319 | "source": "builtin", 320 | "dependencies": { 321 | "com.unity.modules.jsonserialize": "1.0.0" 322 | } 323 | }, 324 | "com.unity.modules.terrain": { 325 | "version": "1.0.0", 326 | "depth": 0, 327 | "source": "builtin", 328 | "dependencies": {} 329 | }, 330 | "com.unity.modules.terrainphysics": { 331 | "version": "1.0.0", 332 | "depth": 0, 333 | "source": "builtin", 334 | "dependencies": { 335 | "com.unity.modules.physics": "1.0.0", 336 | "com.unity.modules.terrain": "1.0.0" 337 | } 338 | }, 339 | "com.unity.modules.tilemap": { 340 | "version": "1.0.0", 341 | "depth": 0, 342 | "source": "builtin", 343 | "dependencies": { 344 | "com.unity.modules.physics2d": "1.0.0" 345 | } 346 | }, 347 | "com.unity.modules.ui": { 348 | "version": "1.0.0", 349 | "depth": 0, 350 | "source": "builtin", 351 | "dependencies": {} 352 | }, 353 | "com.unity.modules.uielements": { 354 | "version": "1.0.0", 355 | "depth": 0, 356 | "source": "builtin", 357 | "dependencies": { 358 | "com.unity.modules.ui": "1.0.0", 359 | "com.unity.modules.imgui": "1.0.0", 360 | "com.unity.modules.jsonserialize": "1.0.0" 361 | } 362 | }, 363 | "com.unity.modules.umbra": { 364 | "version": "1.0.0", 365 | "depth": 0, 366 | "source": "builtin", 367 | "dependencies": {} 368 | }, 369 | "com.unity.modules.unityanalytics": { 370 | "version": "1.0.0", 371 | "depth": 0, 372 | "source": "builtin", 373 | "dependencies": { 374 | "com.unity.modules.unitywebrequest": "1.0.0", 375 | "com.unity.modules.jsonserialize": "1.0.0" 376 | } 377 | }, 378 | "com.unity.modules.unitywebrequest": { 379 | "version": "1.0.0", 380 | "depth": 0, 381 | "source": "builtin", 382 | "dependencies": {} 383 | }, 384 | "com.unity.modules.unitywebrequestassetbundle": { 385 | "version": "1.0.0", 386 | "depth": 0, 387 | "source": "builtin", 388 | "dependencies": { 389 | "com.unity.modules.assetbundle": "1.0.0", 390 | "com.unity.modules.unitywebrequest": "1.0.0" 391 | } 392 | }, 393 | "com.unity.modules.unitywebrequestaudio": { 394 | "version": "1.0.0", 395 | "depth": 0, 396 | "source": "builtin", 397 | "dependencies": { 398 | "com.unity.modules.unitywebrequest": "1.0.0", 399 | "com.unity.modules.audio": "1.0.0" 400 | } 401 | }, 402 | "com.unity.modules.unitywebrequesttexture": { 403 | "version": "1.0.0", 404 | "depth": 0, 405 | "source": "builtin", 406 | "dependencies": { 407 | "com.unity.modules.unitywebrequest": "1.0.0", 408 | "com.unity.modules.imageconversion": "1.0.0" 409 | } 410 | }, 411 | "com.unity.modules.unitywebrequestwww": { 412 | "version": "1.0.0", 413 | "depth": 0, 414 | "source": "builtin", 415 | "dependencies": { 416 | "com.unity.modules.unitywebrequest": "1.0.0", 417 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 418 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 419 | "com.unity.modules.audio": "1.0.0", 420 | "com.unity.modules.assetbundle": "1.0.0", 421 | "com.unity.modules.imageconversion": "1.0.0" 422 | } 423 | }, 424 | "com.unity.modules.vehicles": { 425 | "version": "1.0.0", 426 | "depth": 0, 427 | "source": "builtin", 428 | "dependencies": { 429 | "com.unity.modules.physics": "1.0.0" 430 | } 431 | }, 432 | "com.unity.modules.video": { 433 | "version": "1.0.0", 434 | "depth": 0, 435 | "source": "builtin", 436 | "dependencies": { 437 | "com.unity.modules.audio": "1.0.0", 438 | "com.unity.modules.ui": "1.0.0", 439 | "com.unity.modules.unitywebrequest": "1.0.0" 440 | } 441 | }, 442 | "com.unity.modules.vr": { 443 | "version": "1.0.0", 444 | "depth": 0, 445 | "source": "builtin", 446 | "dependencies": { 447 | "com.unity.modules.jsonserialize": "1.0.0", 448 | "com.unity.modules.physics": "1.0.0", 449 | "com.unity.modules.xr": "1.0.0" 450 | } 451 | }, 452 | "com.unity.modules.wind": { 453 | "version": "1.0.0", 454 | "depth": 0, 455 | "source": "builtin", 456 | "dependencies": {} 457 | }, 458 | "com.unity.modules.xr": { 459 | "version": "1.0.0", 460 | "depth": 0, 461 | "source": "builtin", 462 | "dependencies": { 463 | "com.unity.modules.physics": "1.0.0", 464 | "com.unity.modules.jsonserialize": "1.0.0", 465 | "com.unity.modules.subsystems": "1.0.0" 466 | } 467 | } 468 | } 469 | } 470 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Volume: 1 8 | Rolloff Scale: 1 9 | Doppler Factor: 1 10 | Default Speaker Mode: 2 11 | m_SampleRate: 0 12 | m_DSPBufferSize: 1024 13 | m_VirtualVoiceCount: 512 14 | m_RealVoiceCount: 32 15 | m_SpatializerPlugin: 16 | m_AmbisonicDecoderPlugin: 17 | m_DisableAudio: 0 18 | m_VirtualizeEffects: 1 19 | m_RequestedDSPBufferSize: 1024 20 | -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_StandaloneWindows.json: -------------------------------------------------------------------------------- 1 | { 2 | "MonoBehaviour": { 3 | "Version": 4, 4 | "EnableBurstCompilation": true, 5 | "EnableOptimisations": true, 6 | "EnableSafetyChecks": false, 7 | "EnableDebugInAllBuilds": false, 8 | "DebugDataKind": 1, 9 | "EnableArmv9SecurityFeatures": false, 10 | "CpuMinTargetX32": 0, 11 | "CpuMaxTargetX32": 0, 12 | "CpuMinTargetX64": 0, 13 | "CpuMaxTargetX64": 0, 14 | "CpuTargetsX32": 6, 15 | "CpuTargetsX64": 72, 16 | "OptimizeFor": 0 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_WebGL.json: -------------------------------------------------------------------------------- 1 | { 2 | "MonoBehaviour": { 3 | "Version": 4, 4 | "EnableBurstCompilation": true, 5 | "EnableOptimisations": true, 6 | "EnableSafetyChecks": false, 7 | "EnableDebugInAllBuilds": false, 8 | "DebugDataKind": 1, 9 | "EnableArmv9SecurityFeatures": false, 10 | "CpuMinTargetX32": 0, 11 | "CpuMaxTargetX32": 0, 12 | "CpuMinTargetX64": 0, 13 | "CpuMaxTargetX64": 0, 14 | "OptimizeFor": 0 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "MonoBehaviour": { 3 | "Version": 4, 4 | "DisabledWarnings": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 11 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_ClothInterCollisionDistance: 0 18 | m_ClothInterCollisionStiffness: 0 19 | m_ContactsGeneration: 1 20 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 21 | m_AutoSimulation: 1 22 | m_AutoSyncTransforms: 0 23 | m_ReuseCollisionCallbacks: 1 24 | m_ClothInterCollisionSettingsToggle: 0 25 | m_ContactPairsMode: 0 26 | m_BroadphaseType: 0 27 | m_WorldBounds: 28 | m_Center: {x: 0, y: 0, z: 0} 29 | m_Extent: {x: 250, y: 250, z: 250} 30 | m_WorldSubdivisions: 8 31 | m_FrictionType: 0 32 | m_EnableEnhancedDeterminism: 0 33 | m_EnableUnifiedHeightmaps: 1 34 | m_DefaultMaxAngluarSpeed: 7 35 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/Scenes/Accueil.unity 10 | guid: 9fc0d4010bbf28b4594072e72b8655ab 11 | - enabled: 1 12 | path: Assets/Scenes/Didactitiel.unity 13 | guid: 4cfc0e15dbc18354491e6d8daad3faa7 14 | - enabled: 0 15 | path: Assets/Scenes/InGame.unity 16 | guid: 8be18e9d9873e9c419858122e714eb2a 17 | m_configObjects: {} 18 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 11 7 | m_ExternalVersionControlSupport: Visible Meta Files 8 | m_SerializationMode: 2 9 | m_LineEndingsForNewScripts: 0 10 | m_DefaultBehaviorMode: 0 11 | m_PrefabRegularEnvironment: {fileID: 0} 12 | m_PrefabUIEnvironment: {fileID: 0} 13 | m_SpritePackerMode: 0 14 | m_SpritePackerPaddingPower: 1 15 | m_EtcTextureCompressorBehavior: 1 16 | m_EtcTextureFastCompressor: 1 17 | m_EtcTextureNormalCompressor: 2 18 | m_EtcTextureBestCompressor: 4 19 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp;asmref 20 | m_ProjectGenerationRootNamespace: 21 | m_CollabEditorSettings: 22 | inProgressEnabled: 1 23 | m_EnableTextureStreamingInEditMode: 1 24 | m_EnableTextureStreamingInPlayMode: 1 25 | m_AsyncShaderCompilation: 1 26 | m_EnterPlayModeOptionsEnabled: 0 27 | m_EnterPlayModeOptions: 3 28 | m_ShowLightmapResolutionOverlay: 1 29 | m_UseLegacyProbeSampleCount: 0 30 | m_SerializeInlineMappingsOnOneLine: 1 31 | -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!30 &1 4 | GraphicsSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 15 7 | m_Deferred: 8 | m_Mode: 1 9 | m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} 10 | m_DeferredReflections: 11 | m_Mode: 1 12 | m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} 13 | m_ScreenSpaceShadows: 14 | m_Mode: 1 15 | m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} 16 | m_DepthNormals: 17 | m_Mode: 1 18 | m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} 19 | m_MotionVectors: 20 | m_Mode: 1 21 | m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} 22 | m_LightHalo: 23 | m_Mode: 1 24 | m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} 25 | m_LensFlare: 26 | m_Mode: 1 27 | m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} 28 | m_VideoShadersIncludeMode: 2 29 | m_AlwaysIncludedShaders: 30 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} 31 | - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} 32 | - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} 33 | - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} 34 | - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} 35 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} 36 | m_PreloadedShaders: [] 37 | m_PreloadShadersBatchTimeLimit: -1 38 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} 39 | m_CustomRenderPipeline: {fileID: 11400000, guid: 02445990d4cdf394ea52f2d14498eef4, type: 2} 40 | m_TransparencySortMode: 0 41 | m_TransparencySortAxis: {x: 0, y: 0, z: 1} 42 | m_DefaultRenderingPath: 1 43 | m_DefaultMobileRenderingPath: 1 44 | m_TierSettings: [] 45 | m_LightmapStripping: 0 46 | m_FogStripping: 0 47 | m_InstancingStripping: 0 48 | m_BrgStripping: 0 49 | m_LightmapKeepPlain: 1 50 | m_LightmapKeepDirCombined: 1 51 | m_LightmapKeepDynamicPlain: 1 52 | m_LightmapKeepDynamicDirCombined: 1 53 | m_LightmapKeepShadowMask: 1 54 | m_LightmapKeepSubtractive: 1 55 | m_FogKeepLinear: 1 56 | m_FogKeepExp: 1 57 | m_FogKeepExp2: 1 58 | m_AlbedoSwatchInfos: [] 59 | m_LightsUseLinearIntensity: 0 60 | m_LightsUseColorTemperature: 1 61 | m_DefaultRenderingLayerMask: 1 62 | m_LogWhenShaderIsCompiled: 0 63 | m_SRPDefaultSettings: 64 | UnityEngine.Rendering.Universal.UniversalRenderPipeline: {fileID: 11400000, guid: 7401103a261b0ce48a5e45c04e46caf5, type: 2} 65 | m_LightProbeOutsideHullStrategy: 0 66 | m_CameraRelativeLightCulling: 0 67 | m_CameraRelativeShadowCulling: 0 68 | -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!13 &1 4 | InputManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Axes: 8 | - serializedVersion: 3 9 | m_Name: Horizontal 10 | descriptiveName: 11 | descriptiveNegativeName: 12 | negativeButton: left 13 | positiveButton: right 14 | altNegativeButton: a 15 | altPositiveButton: d 16 | gravity: 3 17 | dead: 0.001 18 | sensitivity: 3 19 | snap: 1 20 | invert: 0 21 | type: 0 22 | axis: 0 23 | joyNum: 0 24 | - serializedVersion: 3 25 | m_Name: Vertical 26 | descriptiveName: 27 | descriptiveNegativeName: 28 | negativeButton: down 29 | positiveButton: up 30 | altNegativeButton: s 31 | altPositiveButton: w 32 | gravity: 3 33 | dead: 0.001 34 | sensitivity: 3 35 | snap: 1 36 | invert: 0 37 | type: 0 38 | axis: 0 39 | joyNum: 0 40 | - serializedVersion: 3 41 | m_Name: Fire1 42 | descriptiveName: 43 | descriptiveNegativeName: 44 | negativeButton: 45 | positiveButton: left ctrl 46 | altNegativeButton: 47 | altPositiveButton: mouse 0 48 | gravity: 1000 49 | dead: 0.001 50 | sensitivity: 1000 51 | snap: 0 52 | invert: 0 53 | type: 0 54 | axis: 0 55 | joyNum: 0 56 | - serializedVersion: 3 57 | m_Name: Fire2 58 | descriptiveName: 59 | descriptiveNegativeName: 60 | negativeButton: 61 | positiveButton: left alt 62 | altNegativeButton: 63 | altPositiveButton: mouse 1 64 | gravity: 1000 65 | dead: 0.001 66 | sensitivity: 1000 67 | snap: 0 68 | invert: 0 69 | type: 0 70 | axis: 0 71 | joyNum: 0 72 | - serializedVersion: 3 73 | m_Name: Fire3 74 | descriptiveName: 75 | descriptiveNegativeName: 76 | negativeButton: 77 | positiveButton: left shift 78 | altNegativeButton: 79 | altPositiveButton: mouse 2 80 | gravity: 1000 81 | dead: 0.001 82 | sensitivity: 1000 83 | snap: 0 84 | invert: 0 85 | type: 0 86 | axis: 0 87 | joyNum: 0 88 | - serializedVersion: 3 89 | m_Name: Jump 90 | descriptiveName: 91 | descriptiveNegativeName: 92 | negativeButton: 93 | positiveButton: space 94 | altNegativeButton: 95 | altPositiveButton: 96 | gravity: 1000 97 | dead: 0.001 98 | sensitivity: 1000 99 | snap: 0 100 | invert: 0 101 | type: 0 102 | axis: 0 103 | joyNum: 0 104 | - serializedVersion: 3 105 | m_Name: Mouse X 106 | descriptiveName: 107 | descriptiveNegativeName: 108 | negativeButton: 109 | positiveButton: 110 | altNegativeButton: 111 | altPositiveButton: 112 | gravity: 0 113 | dead: 0 114 | sensitivity: 0.1 115 | snap: 0 116 | invert: 0 117 | type: 1 118 | axis: 0 119 | joyNum: 0 120 | - serializedVersion: 3 121 | m_Name: Mouse Y 122 | descriptiveName: 123 | descriptiveNegativeName: 124 | negativeButton: 125 | positiveButton: 126 | altNegativeButton: 127 | altPositiveButton: 128 | gravity: 0 129 | dead: 0 130 | sensitivity: 0.1 131 | snap: 0 132 | invert: 0 133 | type: 1 134 | axis: 1 135 | joyNum: 0 136 | - serializedVersion: 3 137 | m_Name: Mouse ScrollWheel 138 | descriptiveName: 139 | descriptiveNegativeName: 140 | negativeButton: 141 | positiveButton: 142 | altNegativeButton: 143 | altPositiveButton: 144 | gravity: 0 145 | dead: 0 146 | sensitivity: 0.1 147 | snap: 0 148 | invert: 0 149 | type: 1 150 | axis: 2 151 | joyNum: 0 152 | - serializedVersion: 3 153 | m_Name: Horizontal 154 | descriptiveName: 155 | descriptiveNegativeName: 156 | negativeButton: 157 | positiveButton: 158 | altNegativeButton: 159 | altPositiveButton: 160 | gravity: 0 161 | dead: 0.19 162 | sensitivity: 1 163 | snap: 0 164 | invert: 0 165 | type: 2 166 | axis: 0 167 | joyNum: 0 168 | - serializedVersion: 3 169 | m_Name: Vertical 170 | descriptiveName: 171 | descriptiveNegativeName: 172 | negativeButton: 173 | positiveButton: 174 | altNegativeButton: 175 | altPositiveButton: 176 | gravity: 0 177 | dead: 0.19 178 | sensitivity: 1 179 | snap: 0 180 | invert: 1 181 | type: 2 182 | axis: 1 183 | joyNum: 0 184 | - serializedVersion: 3 185 | m_Name: Fire1 186 | descriptiveName: 187 | descriptiveNegativeName: 188 | negativeButton: 189 | positiveButton: joystick button 0 190 | altNegativeButton: 191 | altPositiveButton: 192 | gravity: 1000 193 | dead: 0.001 194 | sensitivity: 1000 195 | snap: 0 196 | invert: 0 197 | type: 0 198 | axis: 0 199 | joyNum: 0 200 | - serializedVersion: 3 201 | m_Name: Fire2 202 | descriptiveName: 203 | descriptiveNegativeName: 204 | negativeButton: 205 | positiveButton: joystick button 1 206 | altNegativeButton: 207 | altPositiveButton: 208 | gravity: 1000 209 | dead: 0.001 210 | sensitivity: 1000 211 | snap: 0 212 | invert: 0 213 | type: 0 214 | axis: 0 215 | joyNum: 0 216 | - serializedVersion: 3 217 | m_Name: Fire3 218 | descriptiveName: 219 | descriptiveNegativeName: 220 | negativeButton: 221 | positiveButton: joystick button 2 222 | altNegativeButton: 223 | altPositiveButton: 224 | gravity: 1000 225 | dead: 0.001 226 | sensitivity: 1000 227 | snap: 0 228 | invert: 0 229 | type: 0 230 | axis: 0 231 | joyNum: 0 232 | - serializedVersion: 3 233 | m_Name: Jump 234 | descriptiveName: 235 | descriptiveNegativeName: 236 | negativeButton: 237 | positiveButton: joystick button 3 238 | altNegativeButton: 239 | altPositiveButton: 240 | gravity: 1000 241 | dead: 0.001 242 | sensitivity: 1000 243 | snap: 0 244 | invert: 0 245 | type: 0 246 | axis: 0 247 | joyNum: 0 248 | - serializedVersion: 3 249 | m_Name: Submit 250 | descriptiveName: 251 | descriptiveNegativeName: 252 | negativeButton: 253 | positiveButton: return 254 | altNegativeButton: 255 | altPositiveButton: joystick button 0 256 | gravity: 1000 257 | dead: 0.001 258 | sensitivity: 1000 259 | snap: 0 260 | invert: 0 261 | type: 0 262 | axis: 0 263 | joyNum: 0 264 | - serializedVersion: 3 265 | m_Name: Submit 266 | descriptiveName: 267 | descriptiveNegativeName: 268 | negativeButton: 269 | positiveButton: enter 270 | altNegativeButton: 271 | altPositiveButton: space 272 | gravity: 1000 273 | dead: 0.001 274 | sensitivity: 1000 275 | snap: 0 276 | invert: 0 277 | type: 0 278 | axis: 0 279 | joyNum: 0 280 | - serializedVersion: 3 281 | m_Name: Cancel 282 | descriptiveName: 283 | descriptiveNegativeName: 284 | negativeButton: 285 | positiveButton: escape 286 | altNegativeButton: 287 | altPositiveButton: joystick button 1 288 | gravity: 1000 289 | dead: 0.001 290 | sensitivity: 1000 291 | snap: 0 292 | invert: 0 293 | type: 0 294 | axis: 0 295 | joyNum: 0 296 | - serializedVersion: 3 297 | m_Name: Enable Debug Button 1 298 | descriptiveName: 299 | descriptiveNegativeName: 300 | negativeButton: 301 | positiveButton: left ctrl 302 | altNegativeButton: 303 | altPositiveButton: joystick button 8 304 | gravity: 0 305 | dead: 0 306 | sensitivity: 0 307 | snap: 0 308 | invert: 0 309 | type: 0 310 | axis: 0 311 | joyNum: 0 312 | - serializedVersion: 3 313 | m_Name: Enable Debug Button 2 314 | descriptiveName: 315 | descriptiveNegativeName: 316 | negativeButton: 317 | positiveButton: backspace 318 | altNegativeButton: 319 | altPositiveButton: joystick button 9 320 | gravity: 0 321 | dead: 0 322 | sensitivity: 0 323 | snap: 0 324 | invert: 0 325 | type: 0 326 | axis: 0 327 | joyNum: 0 328 | - serializedVersion: 3 329 | m_Name: Debug Reset 330 | descriptiveName: 331 | descriptiveNegativeName: 332 | negativeButton: 333 | positiveButton: left alt 334 | altNegativeButton: 335 | altPositiveButton: joystick button 1 336 | gravity: 0 337 | dead: 0 338 | sensitivity: 0 339 | snap: 0 340 | invert: 0 341 | type: 0 342 | axis: 0 343 | joyNum: 0 344 | - serializedVersion: 3 345 | m_Name: Debug Next 346 | descriptiveName: 347 | descriptiveNegativeName: 348 | negativeButton: 349 | positiveButton: page down 350 | altNegativeButton: 351 | altPositiveButton: joystick button 5 352 | gravity: 0 353 | dead: 0 354 | sensitivity: 0 355 | snap: 0 356 | invert: 0 357 | type: 0 358 | axis: 0 359 | joyNum: 0 360 | - serializedVersion: 3 361 | m_Name: Debug Previous 362 | descriptiveName: 363 | descriptiveNegativeName: 364 | negativeButton: 365 | positiveButton: page up 366 | altNegativeButton: 367 | altPositiveButton: joystick button 4 368 | gravity: 0 369 | dead: 0 370 | sensitivity: 0 371 | snap: 0 372 | invert: 0 373 | type: 0 374 | axis: 0 375 | joyNum: 0 376 | - serializedVersion: 3 377 | m_Name: Debug Validate 378 | descriptiveName: 379 | descriptiveNegativeName: 380 | negativeButton: 381 | positiveButton: return 382 | altNegativeButton: 383 | altPositiveButton: joystick button 0 384 | gravity: 0 385 | dead: 0 386 | sensitivity: 0 387 | snap: 0 388 | invert: 0 389 | type: 0 390 | axis: 0 391 | joyNum: 0 392 | - serializedVersion: 3 393 | m_Name: Debug Persistent 394 | descriptiveName: 395 | descriptiveNegativeName: 396 | negativeButton: 397 | positiveButton: right shift 398 | altNegativeButton: 399 | altPositiveButton: joystick button 2 400 | gravity: 0 401 | dead: 0 402 | sensitivity: 0 403 | snap: 0 404 | invert: 0 405 | type: 0 406 | axis: 0 407 | joyNum: 0 408 | - serializedVersion: 3 409 | m_Name: Debug Multiplier 410 | descriptiveName: 411 | descriptiveNegativeName: 412 | negativeButton: 413 | positiveButton: left shift 414 | altNegativeButton: 415 | altPositiveButton: joystick button 3 416 | gravity: 0 417 | dead: 0 418 | sensitivity: 0 419 | snap: 0 420 | invert: 0 421 | type: 0 422 | axis: 0 423 | joyNum: 0 424 | - serializedVersion: 3 425 | m_Name: Debug Horizontal 426 | descriptiveName: 427 | descriptiveNegativeName: 428 | negativeButton: left 429 | positiveButton: right 430 | altNegativeButton: 431 | altPositiveButton: 432 | gravity: 1000 433 | dead: 0.001 434 | sensitivity: 1000 435 | snap: 0 436 | invert: 0 437 | type: 0 438 | axis: 0 439 | joyNum: 0 440 | - serializedVersion: 3 441 | m_Name: Debug Vertical 442 | descriptiveName: 443 | descriptiveNegativeName: 444 | negativeButton: down 445 | positiveButton: up 446 | altNegativeButton: 447 | altPositiveButton: 448 | gravity: 1000 449 | dead: 0.001 450 | sensitivity: 1000 451 | snap: 0 452 | invert: 0 453 | type: 0 454 | axis: 0 455 | joyNum: 0 456 | - serializedVersion: 3 457 | m_Name: Debug Vertical 458 | descriptiveName: 459 | descriptiveNegativeName: 460 | negativeButton: down 461 | positiveButton: up 462 | altNegativeButton: 463 | altPositiveButton: 464 | gravity: 1000 465 | dead: 0.001 466 | sensitivity: 1000 467 | snap: 0 468 | invert: 0 469 | type: 2 470 | axis: 6 471 | joyNum: 0 472 | - serializedVersion: 3 473 | m_Name: Debug Horizontal 474 | descriptiveName: 475 | descriptiveNegativeName: 476 | negativeButton: left 477 | positiveButton: right 478 | altNegativeButton: 479 | altPositiveButton: 480 | gravity: 1000 481 | dead: 0.001 482 | sensitivity: 1000 483 | snap: 0 484 | invert: 0 485 | type: 2 486 | axis: 5 487 | joyNum: 0 488 | m_UsePhysicalKeys: 1 489 | -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!387306366 &1 4 | MemorySettings: 5 | m_ObjectHideFlags: 0 6 | m_EditorMemorySettings: 7 | m_MainAllocatorBlockSize: -1 8 | m_ThreadAllocatorBlockSize: -1 9 | m_MainGfxBlockSize: -1 10 | m_ThreadGfxBlockSize: -1 11 | m_CacheBlockSize: -1 12 | m_TypetreeBlockSize: -1 13 | m_ProfilerBlockSize: -1 14 | m_ProfilerEditorBlockSize: -1 15 | m_BucketAllocatorGranularity: -1 16 | m_BucketAllocatorBucketsCount: -1 17 | m_BucketAllocatorBlockSize: -1 18 | m_BucketAllocatorBlockCount: -1 19 | m_ProfilerBucketAllocatorGranularity: -1 20 | m_ProfilerBucketAllocatorBucketsCount: -1 21 | m_ProfilerBucketAllocatorBlockSize: -1 22 | m_ProfilerBucketAllocatorBlockCount: -1 23 | m_TempAllocatorSizeMain: -1 24 | m_JobTempAllocatorBlockSize: -1 25 | m_BackgroundJobTempAllocatorBlockSize: -1 26 | m_JobTempAllocatorReducedBlockSize: -1 27 | m_TempAllocatorSizeGIBakingWorker: -1 28 | m_TempAllocatorSizeNavMeshWorker: -1 29 | m_TempAllocatorSizeAudioWorker: -1 30 | m_TempAllocatorSizeCloudWorker: -1 31 | m_TempAllocatorSizeGfx: -1 32 | m_TempAllocatorSizeJobWorker: -1 33 | m_TempAllocatorSizeBackgroundWorker: -1 34 | m_TempAllocatorSizePreloadManager: -1 35 | m_PlatformMemorySettings: {} 36 | -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshProjectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | areas: 8 | - name: Walkable 9 | cost: 1 10 | - name: Not Walkable 11 | cost: 1 12 | - name: Jump 13 | cost: 2 14 | - name: 15 | cost: 1 16 | - name: 17 | cost: 1 18 | - name: 19 | cost: 1 20 | - name: 21 | cost: 1 22 | - name: 23 | cost: 1 24 | - name: 25 | cost: 1 26 | - name: 27 | cost: 1 28 | - name: 29 | cost: 1 30 | - name: 31 | cost: 1 32 | - name: 33 | cost: 1 34 | - name: 35 | cost: 1 36 | - name: 37 | cost: 1 38 | - name: 39 | cost: 1 40 | - name: 41 | cost: 1 42 | - name: 43 | cost: 1 44 | - name: 45 | cost: 1 46 | - name: 47 | cost: 1 48 | - name: 49 | cost: 1 50 | - name: 51 | cost: 1 52 | - name: 53 | cost: 1 54 | - name: 55 | cost: 1 56 | - name: 57 | cost: 1 58 | - name: 59 | cost: 1 60 | - name: 61 | cost: 1 62 | - name: 63 | cost: 1 64 | - name: 65 | cost: 1 66 | - name: 67 | cost: 1 68 | - name: 69 | cost: 1 70 | - name: 71 | cost: 1 72 | m_LastAgentTypeID: -887442657 73 | m_Settings: 74 | - serializedVersion: 2 75 | agentTypeID: 0 76 | agentRadius: 0.5 77 | agentHeight: 2 78 | agentSlope: 45 79 | agentClimb: 0.75 80 | ledgeDropHeight: 0 81 | maxJumpAcrossDistance: 0 82 | minRegionArea: 2 83 | manualCellSize: 0 84 | cellSize: 0.16666667 85 | manualTileSize: 0 86 | tileSize: 256 87 | accuratePlacement: 0 88 | debug: 89 | m_Flags: 0 90 | m_SettingNames: 91 | - Humanoid 92 | -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 53 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | m_EnablePreReleasePackages: 0 16 | m_AdvancedSettingsExpanded: 1 17 | m_ScopedRegistriesSettingsExpanded: 1 18 | m_SeeAllPackageVersions: 0 19 | m_DismissPreviewPackagesInUse: 0 20 | oneTimeWarningShown: 0 21 | m_Registries: 22 | - m_Id: main 23 | m_Name: 24 | m_Url: https://packages.unity.com 25 | m_Scopes: [] 26 | m_IsDefault: 1 27 | m_Capabilities: 7 28 | m_ConfigSource: 0 29 | m_UserSelectedRegistryName: 30 | m_UserAddingNewScopedRegistry: 0 31 | m_RegistryInfoDraft: 32 | m_Modified: 0 33 | m_ErrorMessage: 34 | m_UserModificationsInstanceId: -832 35 | m_OriginalInstanceId: -834 36 | m_LoadAssets: 0 37 | -------------------------------------------------------------------------------- /ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "m_Dictionary": { 3 | "m_DictionaryValues": [] 4 | } 5 | } -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!19 &1 4 | Physics2DSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 4 7 | m_Gravity: {x: 0, y: -9.81} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_VelocityIterations: 8 10 | m_PositionIterations: 3 11 | m_VelocityThreshold: 1 12 | m_MaxLinearCorrection: 0.2 13 | m_MaxAngularCorrection: 8 14 | m_MaxTranslationSpeed: 100 15 | m_MaxRotationSpeed: 360 16 | m_BaumgarteScale: 0.2 17 | m_BaumgarteTimeOfImpactScale: 0.75 18 | m_TimeToSleep: 0.5 19 | m_LinearSleepTolerance: 0.01 20 | m_AngularSleepTolerance: 2 21 | m_DefaultContactOffset: 0.01 22 | m_JobOptions: 23 | serializedVersion: 2 24 | useMultithreading: 0 25 | useConsistencySorting: 0 26 | m_InterpolationPosesPerJob: 100 27 | m_NewContactsPerJob: 30 28 | m_CollideContactsPerJob: 100 29 | m_ClearFlagsPerJob: 200 30 | m_ClearBodyForcesPerJob: 200 31 | m_SyncDiscreteFixturesPerJob: 50 32 | m_SyncContinuousFixturesPerJob: 50 33 | m_FindNearestContactsPerJob: 100 34 | m_UpdateTriggerContactsPerJob: 100 35 | m_IslandSolverCostThreshold: 100 36 | m_IslandSolverBodyCostScale: 1 37 | m_IslandSolverContactCostScale: 10 38 | m_IslandSolverJointCostScale: 10 39 | m_IslandSolverBodiesPerJob: 50 40 | m_IslandSolverContactsPerJob: 50 41 | m_AutoSimulation: 1 42 | m_QueriesHitTriggers: 1 43 | m_QueriesStartInColliders: 1 44 | m_CallbacksOnDisable: 1 45 | m_ReuseCollisionCallbacks: 1 46 | m_AutoSyncTransforms: 0 47 | m_AlwaysShowColliders: 0 48 | m_ShowColliderSleep: 1 49 | m_ShowColliderContacts: 0 50 | m_ShowColliderAABB: 0 51 | m_ContactArrowScale: 0.2 52 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} 53 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} 54 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} 55 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} 56 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 57 | -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2022.3.17f1 2 | m_EditorVersionWithRevision: 2022.3.17f1 (4fc78088f837) 3 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!47 &1 4 | QualitySettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 5 7 | m_CurrentQuality: 5 8 | m_QualitySettings: 9 | - serializedVersion: 3 10 | name: Very Low 11 | pixelLightCount: 0 12 | shadows: 0 13 | shadowResolution: 0 14 | shadowProjection: 1 15 | shadowCascades: 1 16 | shadowDistance: 15 17 | shadowNearPlaneOffset: 3 18 | shadowCascade2Split: 0.33333334 19 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 20 | shadowmaskMode: 0 21 | skinWeights: 1 22 | globalTextureMipmapLimit: 1 23 | textureMipmapLimitSettings: [] 24 | anisotropicTextures: 0 25 | antiAliasing: 0 26 | softParticles: 0 27 | softVegetation: 0 28 | realtimeReflectionProbes: 0 29 | billboardsFaceCameraPosition: 0 30 | useLegacyDetailDistribution: 1 31 | vSyncCount: 0 32 | realtimeGICPUUsage: 25 33 | lodBias: 0.3 34 | maximumLODLevel: 0 35 | enableLODCrossFade: 1 36 | streamingMipmapsActive: 0 37 | streamingMipmapsAddAllCameras: 1 38 | streamingMipmapsMemoryBudget: 512 39 | streamingMipmapsRenderersPerFrame: 512 40 | streamingMipmapsMaxLevelReduction: 2 41 | streamingMipmapsMaxFileIORequests: 1024 42 | particleRaycastBudget: 4 43 | asyncUploadTimeSlice: 2 44 | asyncUploadBufferSize: 16 45 | asyncUploadPersistentBuffer: 1 46 | resolutionScalingFixedDPIFactor: 1 47 | customRenderPipeline: {fileID: 0} 48 | terrainQualityOverrides: 0 49 | terrainPixelError: 1 50 | terrainDetailDensityScale: 1 51 | terrainBasemapDistance: 1000 52 | terrainDetailDistance: 80 53 | terrainTreeDistance: 5000 54 | terrainBillboardStart: 50 55 | terrainFadeLength: 5 56 | terrainMaxTrees: 50 57 | excludedTargetPlatforms: [] 58 | - serializedVersion: 3 59 | name: Low 60 | pixelLightCount: 0 61 | shadows: 0 62 | shadowResolution: 0 63 | shadowProjection: 1 64 | shadowCascades: 1 65 | shadowDistance: 20 66 | shadowNearPlaneOffset: 3 67 | shadowCascade2Split: 0.33333334 68 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 69 | shadowmaskMode: 0 70 | skinWeights: 2 71 | globalTextureMipmapLimit: 0 72 | textureMipmapLimitSettings: [] 73 | anisotropicTextures: 0 74 | antiAliasing: 0 75 | softParticles: 0 76 | softVegetation: 0 77 | realtimeReflectionProbes: 0 78 | billboardsFaceCameraPosition: 0 79 | useLegacyDetailDistribution: 1 80 | vSyncCount: 0 81 | realtimeGICPUUsage: 25 82 | lodBias: 0.4 83 | maximumLODLevel: 0 84 | enableLODCrossFade: 1 85 | streamingMipmapsActive: 0 86 | streamingMipmapsAddAllCameras: 1 87 | streamingMipmapsMemoryBudget: 512 88 | streamingMipmapsRenderersPerFrame: 512 89 | streamingMipmapsMaxLevelReduction: 2 90 | streamingMipmapsMaxFileIORequests: 1024 91 | particleRaycastBudget: 16 92 | asyncUploadTimeSlice: 2 93 | asyncUploadBufferSize: 16 94 | asyncUploadPersistentBuffer: 1 95 | resolutionScalingFixedDPIFactor: 1 96 | customRenderPipeline: {fileID: 0} 97 | terrainQualityOverrides: 0 98 | terrainPixelError: 1 99 | terrainDetailDensityScale: 1 100 | terrainBasemapDistance: 1000 101 | terrainDetailDistance: 80 102 | terrainTreeDistance: 5000 103 | terrainBillboardStart: 50 104 | terrainFadeLength: 5 105 | terrainMaxTrees: 50 106 | excludedTargetPlatforms: [] 107 | - serializedVersion: 3 108 | name: Medium 109 | pixelLightCount: 1 110 | shadows: 1 111 | shadowResolution: 0 112 | shadowProjection: 1 113 | shadowCascades: 1 114 | shadowDistance: 20 115 | shadowNearPlaneOffset: 3 116 | shadowCascade2Split: 0.33333334 117 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 118 | shadowmaskMode: 0 119 | skinWeights: 2 120 | globalTextureMipmapLimit: 0 121 | textureMipmapLimitSettings: [] 122 | anisotropicTextures: 1 123 | antiAliasing: 0 124 | softParticles: 0 125 | softVegetation: 0 126 | realtimeReflectionProbes: 0 127 | billboardsFaceCameraPosition: 0 128 | useLegacyDetailDistribution: 1 129 | vSyncCount: 1 130 | realtimeGICPUUsage: 25 131 | lodBias: 0.7 132 | maximumLODLevel: 0 133 | enableLODCrossFade: 1 134 | streamingMipmapsActive: 0 135 | streamingMipmapsAddAllCameras: 1 136 | streamingMipmapsMemoryBudget: 512 137 | streamingMipmapsRenderersPerFrame: 512 138 | streamingMipmapsMaxLevelReduction: 2 139 | streamingMipmapsMaxFileIORequests: 1024 140 | particleRaycastBudget: 64 141 | asyncUploadTimeSlice: 2 142 | asyncUploadBufferSize: 16 143 | asyncUploadPersistentBuffer: 1 144 | resolutionScalingFixedDPIFactor: 1 145 | customRenderPipeline: {fileID: 0} 146 | terrainQualityOverrides: 0 147 | terrainPixelError: 1 148 | terrainDetailDensityScale: 1 149 | terrainBasemapDistance: 1000 150 | terrainDetailDistance: 80 151 | terrainTreeDistance: 5000 152 | terrainBillboardStart: 50 153 | terrainFadeLength: 5 154 | terrainMaxTrees: 50 155 | excludedTargetPlatforms: [] 156 | - serializedVersion: 3 157 | name: High 158 | pixelLightCount: 2 159 | shadows: 2 160 | shadowResolution: 1 161 | shadowProjection: 1 162 | shadowCascades: 2 163 | shadowDistance: 40 164 | shadowNearPlaneOffset: 3 165 | shadowCascade2Split: 0.33333334 166 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 167 | shadowmaskMode: 1 168 | skinWeights: 2 169 | globalTextureMipmapLimit: 0 170 | textureMipmapLimitSettings: [] 171 | anisotropicTextures: 1 172 | antiAliasing: 0 173 | softParticles: 0 174 | softVegetation: 1 175 | realtimeReflectionProbes: 1 176 | billboardsFaceCameraPosition: 1 177 | useLegacyDetailDistribution: 1 178 | vSyncCount: 1 179 | realtimeGICPUUsage: 50 180 | lodBias: 1 181 | maximumLODLevel: 0 182 | enableLODCrossFade: 1 183 | streamingMipmapsActive: 0 184 | streamingMipmapsAddAllCameras: 1 185 | streamingMipmapsMemoryBudget: 512 186 | streamingMipmapsRenderersPerFrame: 512 187 | streamingMipmapsMaxLevelReduction: 2 188 | streamingMipmapsMaxFileIORequests: 1024 189 | particleRaycastBudget: 256 190 | asyncUploadTimeSlice: 2 191 | asyncUploadBufferSize: 16 192 | asyncUploadPersistentBuffer: 1 193 | resolutionScalingFixedDPIFactor: 1 194 | customRenderPipeline: {fileID: 0} 195 | terrainQualityOverrides: 0 196 | terrainPixelError: 1 197 | terrainDetailDensityScale: 1 198 | terrainBasemapDistance: 1000 199 | terrainDetailDistance: 80 200 | terrainTreeDistance: 5000 201 | terrainBillboardStart: 50 202 | terrainFadeLength: 5 203 | terrainMaxTrees: 50 204 | excludedTargetPlatforms: [] 205 | - serializedVersion: 3 206 | name: Very High 207 | pixelLightCount: 3 208 | shadows: 2 209 | shadowResolution: 2 210 | shadowProjection: 1 211 | shadowCascades: 2 212 | shadowDistance: 70 213 | shadowNearPlaneOffset: 3 214 | shadowCascade2Split: 0.33333334 215 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 216 | shadowmaskMode: 1 217 | skinWeights: 4 218 | globalTextureMipmapLimit: 0 219 | textureMipmapLimitSettings: [] 220 | anisotropicTextures: 2 221 | antiAliasing: 2 222 | softParticles: 1 223 | softVegetation: 1 224 | realtimeReflectionProbes: 1 225 | billboardsFaceCameraPosition: 1 226 | useLegacyDetailDistribution: 1 227 | vSyncCount: 1 228 | realtimeGICPUUsage: 50 229 | lodBias: 1.5 230 | maximumLODLevel: 0 231 | enableLODCrossFade: 1 232 | streamingMipmapsActive: 0 233 | streamingMipmapsAddAllCameras: 1 234 | streamingMipmapsMemoryBudget: 512 235 | streamingMipmapsRenderersPerFrame: 512 236 | streamingMipmapsMaxLevelReduction: 2 237 | streamingMipmapsMaxFileIORequests: 1024 238 | particleRaycastBudget: 1024 239 | asyncUploadTimeSlice: 2 240 | asyncUploadBufferSize: 16 241 | asyncUploadPersistentBuffer: 1 242 | resolutionScalingFixedDPIFactor: 1 243 | customRenderPipeline: {fileID: 0} 244 | terrainQualityOverrides: 0 245 | terrainPixelError: 1 246 | terrainDetailDensityScale: 1 247 | terrainBasemapDistance: 1000 248 | terrainDetailDistance: 80 249 | terrainTreeDistance: 5000 250 | terrainBillboardStart: 50 251 | terrainFadeLength: 5 252 | terrainMaxTrees: 50 253 | excludedTargetPlatforms: [] 254 | - serializedVersion: 3 255 | name: Ultra 256 | pixelLightCount: 4 257 | shadows: 2 258 | shadowResolution: 2 259 | shadowProjection: 1 260 | shadowCascades: 4 261 | shadowDistance: 150 262 | shadowNearPlaneOffset: 3 263 | shadowCascade2Split: 0.33333334 264 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 265 | shadowmaskMode: 1 266 | skinWeights: 4 267 | globalTextureMipmapLimit: 0 268 | textureMipmapLimitSettings: [] 269 | anisotropicTextures: 2 270 | antiAliasing: 0 271 | softParticles: 1 272 | softVegetation: 1 273 | realtimeReflectionProbes: 1 274 | billboardsFaceCameraPosition: 1 275 | useLegacyDetailDistribution: 1 276 | vSyncCount: 1 277 | realtimeGICPUUsage: 100 278 | lodBias: 2 279 | maximumLODLevel: 0 280 | enableLODCrossFade: 1 281 | streamingMipmapsActive: 0 282 | streamingMipmapsAddAllCameras: 1 283 | streamingMipmapsMemoryBudget: 512 284 | streamingMipmapsRenderersPerFrame: 512 285 | streamingMipmapsMaxLevelReduction: 2 286 | streamingMipmapsMaxFileIORequests: 1024 287 | particleRaycastBudget: 4096 288 | asyncUploadTimeSlice: 2 289 | asyncUploadBufferSize: 16 290 | asyncUploadPersistentBuffer: 1 291 | resolutionScalingFixedDPIFactor: 1 292 | customRenderPipeline: {fileID: 0} 293 | terrainQualityOverrides: 0 294 | terrainPixelError: 1 295 | terrainDetailDensityScale: 1 296 | terrainBasemapDistance: 1000 297 | terrainDetailDistance: 80 298 | terrainTreeDistance: 5000 299 | terrainBillboardStart: 50 300 | terrainFadeLength: 5 301 | terrainMaxTrees: 50 302 | excludedTargetPlatforms: [] 303 | m_TextureMipmapLimitGroupNames: [] 304 | m_PerPlatformDefaultQuality: 305 | Android: 2 306 | Lumin: 5 307 | Nintendo 3DS: 5 308 | Nintendo Switch: 5 309 | PS4: 5 310 | PSP2: 2 311 | Server: 0 312 | Stadia: 5 313 | Standalone: 5 314 | WebGL: 3 315 | Windows Store Apps: 5 316 | XboxOne: 5 317 | iPhone: 2 318 | tvOS: 2 319 | -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "templatePinStates": [], 3 | "dependencyTypeInfos": [ 4 | { 5 | "userAdded": false, 6 | "type": "UnityEngine.AnimationClip", 7 | "defaultInstantiationMode": 0 8 | }, 9 | { 10 | "userAdded": false, 11 | "type": "UnityEditor.Animations.AnimatorController", 12 | "defaultInstantiationMode": 0 13 | }, 14 | { 15 | "userAdded": false, 16 | "type": "UnityEngine.AnimatorOverrideController", 17 | "defaultInstantiationMode": 0 18 | }, 19 | { 20 | "userAdded": false, 21 | "type": "UnityEditor.Audio.AudioMixerController", 22 | "defaultInstantiationMode": 0 23 | }, 24 | { 25 | "userAdded": false, 26 | "type": "UnityEngine.ComputeShader", 27 | "defaultInstantiationMode": 1 28 | }, 29 | { 30 | "userAdded": false, 31 | "type": "UnityEngine.Cubemap", 32 | "defaultInstantiationMode": 0 33 | }, 34 | { 35 | "userAdded": false, 36 | "type": "UnityEngine.GameObject", 37 | "defaultInstantiationMode": 0 38 | }, 39 | { 40 | "userAdded": false, 41 | "type": "UnityEditor.LightingDataAsset", 42 | "defaultInstantiationMode": 0 43 | }, 44 | { 45 | "userAdded": false, 46 | "type": "UnityEngine.LightingSettings", 47 | "defaultInstantiationMode": 0 48 | }, 49 | { 50 | "userAdded": false, 51 | "type": "UnityEngine.Material", 52 | "defaultInstantiationMode": 0 53 | }, 54 | { 55 | "userAdded": false, 56 | "type": "UnityEditor.MonoScript", 57 | "defaultInstantiationMode": 1 58 | }, 59 | { 60 | "userAdded": false, 61 | "type": "UnityEngine.PhysicMaterial", 62 | "defaultInstantiationMode": 0 63 | }, 64 | { 65 | "userAdded": false, 66 | "type": "UnityEngine.PhysicsMaterial2D", 67 | "defaultInstantiationMode": 0 68 | }, 69 | { 70 | "userAdded": false, 71 | "type": "UnityEngine.Rendering.PostProcessing.PostProcessProfile", 72 | "defaultInstantiationMode": 0 73 | }, 74 | { 75 | "userAdded": false, 76 | "type": "UnityEngine.Rendering.PostProcessing.PostProcessResources", 77 | "defaultInstantiationMode": 0 78 | }, 79 | { 80 | "userAdded": false, 81 | "type": "UnityEngine.Rendering.VolumeProfile", 82 | "defaultInstantiationMode": 0 83 | }, 84 | { 85 | "userAdded": false, 86 | "type": "UnityEditor.SceneAsset", 87 | "defaultInstantiationMode": 1 88 | }, 89 | { 90 | "userAdded": false, 91 | "type": "UnityEngine.Shader", 92 | "defaultInstantiationMode": 1 93 | }, 94 | { 95 | "userAdded": false, 96 | "type": "UnityEngine.ShaderVariantCollection", 97 | "defaultInstantiationMode": 1 98 | }, 99 | { 100 | "userAdded": false, 101 | "type": "UnityEngine.Texture", 102 | "defaultInstantiationMode": 0 103 | }, 104 | { 105 | "userAdded": false, 106 | "type": "UnityEngine.Texture2D", 107 | "defaultInstantiationMode": 0 108 | }, 109 | { 110 | "userAdded": false, 111 | "type": "UnityEngine.Timeline.TimelineAsset", 112 | "defaultInstantiationMode": 0 113 | } 114 | ], 115 | "defaultDependencyTypeInfo": { 116 | "userAdded": false, 117 | "type": "", 118 | "defaultInstantiationMode": 1 119 | }, 120 | "newSceneOverride": 0 121 | } -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 53 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: de02f9e1d18f588468e474319d09a723, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | shaderVariantLimit: 128 16 | customInterpolatorErrorThreshold: 32 17 | customInterpolatorWarningThreshold: 16 18 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/TimelineSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 53 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: a287be6c49135cd4f9b2b8666c39d999, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | assetDefaultFramerate: 60 16 | m_DefaultFrameRate: 60 17 | -------------------------------------------------------------------------------- /ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 247994e1f5a72c2419c26a37e9334c01, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | m_LastMaterialVersion: 7 16 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 1 7 | m_Enabled: 0 8 | m_TestMode: 0 9 | m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events 10 | m_EventUrl: https://cdp.cloud.unity3d.com/v1/events 11 | m_ConfigUrl: https://config.uca.cloud.unity3d.com 12 | m_DashboardUrl: https://dashboard.unity3d.com 13 | m_TestInitMode: 0 14 | CrashReportingSettings: 15 | m_EventUrl: https://perf-events.cloud.unity3d.com 16 | m_Enabled: 0 17 | m_LogBufferSize: 10 18 | m_CaptureEditorExceptions: 1 19 | UnityPurchasingSettings: 20 | m_Enabled: 0 21 | m_TestMode: 0 22 | UnityAnalyticsSettings: 23 | m_Enabled: 0 24 | m_TestMode: 0 25 | m_InitializeOnStartup: 1 26 | m_PackageRequiringCoreStatsPresent: 0 27 | UnityAdsSettings: 28 | m_Enabled: 0 29 | m_InitializeOnStartup: 1 30 | m_TestMode: 0 31 | m_IosGameId: 32 | m_AndroidGameId: 33 | m_GameIds: {} 34 | m_GameId: 35 | PerformanceReportingSettings: 36 | m_Enabled: 0 37 | -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_CopyBufferShader: {fileID: 0} 8 | m_SortShader: {fileID: 0} 9 | m_StripUpdateShader: {fileID: 0} 10 | m_RenderPipeSettingsPath: 11 | m_FixedTimeStep: 0.016666668 12 | m_MaxDeltaTime: 0.05 13 | -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Cube-Alpha 2 | Projet Unity 3D / AWS / Azure 3 | 4 | Jeu multi en 3D avec des graphisme cartoony -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp-Editor/.NETStandard,Version=v2.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] 5 | -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp-Editor/Assembly-CSharp-Editor.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = 3 | build_property.ProjectDir = D:\tout_et_rien\Scam repos Github\Cube-Alpha\ 4 | build_property.EnableComHosting = 5 | build_property.EnableGeneratedComInterfaceComImportInterop = 6 | build_property.CsWinRTUseWindowsUIXamlProjections = false 7 | build_property.EffectiveAnalysisLevelStyle = 8 | build_property.EnableCodeStyleSeverity = 9 | -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp-Editor/Assembly-CSharp-Editor.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peti6inge/Cube-Alpha/4d3824438b32e6aaa6de67214aebf89ef16b0c5d/Temp/obj/Debug/Assembly-CSharp-Editor/Assembly-CSharp-Editor.assets.cache -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp-Editor/Assembly-CSharp-Editor.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peti6inge/Cube-Alpha/4d3824438b32e6aaa6de67214aebf89ef16b0c5d/Temp/obj/Debug/Assembly-CSharp-Editor/Assembly-CSharp-Editor.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp-Editor/Assembly-CSharp-Editor.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Romain\.nuget\packages\ 9 | PackageReference 10 | 6.12.2 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp-Editor/Assembly-CSharp-Editor.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp-Editor/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETStandard,Version=v2.1": { 5 | "Assembly-CSharp/1.0.0": { 6 | "type": "project", 7 | "framework": ".NETStandard,Version=v2.1", 8 | "dependencies": { 9 | "Assembly-CSharp-firstpass": "1.0.0", 10 | "PlayFab": "1.0.0", 11 | "PlayFabEditorExtensions": "1.0.0", 12 | "PlayFabSDKEditor": "1.0.0" 13 | }, 14 | "compile": { 15 | "bin/placeholder/Assembly-CSharp.dll": {} 16 | }, 17 | "runtime": { 18 | "bin/placeholder/Assembly-CSharp.dll": {} 19 | } 20 | }, 21 | "Assembly-CSharp-firstpass/1.0.0": { 22 | "type": "project", 23 | "framework": ".NETStandard,Version=v2.1", 24 | "dependencies": { 25 | "PlayFab": "1.0.0", 26 | "PlayFabEditorExtensions": "1.0.0", 27 | "PlayFabSDKEditor": "1.0.0" 28 | }, 29 | "compile": { 30 | "bin/placeholder/Assembly-CSharp-firstpass.dll": {} 31 | }, 32 | "runtime": { 33 | "bin/placeholder/Assembly-CSharp-firstpass.dll": {} 34 | } 35 | }, 36 | "PlayFab/1.0.0": { 37 | "type": "project", 38 | "framework": ".NETStandard,Version=v2.1", 39 | "compile": { 40 | "bin/placeholder/PlayFab.dll": {} 41 | }, 42 | "runtime": { 43 | "bin/placeholder/PlayFab.dll": {} 44 | } 45 | }, 46 | "PlayFabEditorExtensions/1.0.0": { 47 | "type": "project", 48 | "framework": ".NETStandard,Version=v2.1", 49 | "compile": { 50 | "bin/placeholder/PlayFabEditorExtensions.dll": {} 51 | }, 52 | "runtime": { 53 | "bin/placeholder/PlayFabEditorExtensions.dll": {} 54 | } 55 | }, 56 | "PlayFabSDKEditor/1.0.0": { 57 | "type": "project", 58 | "framework": ".NETStandard,Version=v2.1", 59 | "dependencies": { 60 | "PlayFab": "1.0.0" 61 | }, 62 | "compile": { 63 | "bin/placeholder/PlayFabSDKEditor.dll": {} 64 | }, 65 | "runtime": { 66 | "bin/placeholder/PlayFabSDKEditor.dll": {} 67 | } 68 | } 69 | } 70 | }, 71 | "libraries": { 72 | "Assembly-CSharp/1.0.0": { 73 | "type": "project", 74 | "path": "Assembly-CSharp.csproj", 75 | "msbuildProject": "Assembly-CSharp.csproj" 76 | }, 77 | "Assembly-CSharp-firstpass/1.0.0": { 78 | "type": "project", 79 | "path": "Assembly-CSharp-firstpass.csproj", 80 | "msbuildProject": "Assembly-CSharp-firstpass.csproj" 81 | }, 82 | "PlayFab/1.0.0": { 83 | "type": "project", 84 | "path": "PlayFab.csproj", 85 | "msbuildProject": "PlayFab.csproj" 86 | }, 87 | "PlayFabEditorExtensions/1.0.0": { 88 | "type": "project", 89 | "path": "PlayFabEditorExtensions.csproj", 90 | "msbuildProject": "PlayFabEditorExtensions.csproj" 91 | }, 92 | "PlayFabSDKEditor/1.0.0": { 93 | "type": "project", 94 | "path": "PlayFabSDKEditor.csproj", 95 | "msbuildProject": "PlayFabSDKEditor.csproj" 96 | } 97 | }, 98 | "projectFileDependencyGroups": { 99 | ".NETStandard,Version=v2.1": [ 100 | "Assembly-CSharp >= 1.0.0", 101 | "Assembly-CSharp-firstpass >= 1.0.0", 102 | "PlayFab >= 1.0.0", 103 | "PlayFabEditorExtensions >= 1.0.0", 104 | "PlayFabSDKEditor >= 1.0.0" 105 | ] 106 | }, 107 | "packageFolders": { 108 | "C:\\Users\\Romain\\.nuget\\packages\\": {} 109 | }, 110 | "project": { 111 | "version": "1.0.0", 112 | "restore": { 113 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-Editor.csproj", 114 | "projectName": "Assembly-CSharp-Editor", 115 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-Editor.csproj", 116 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 117 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\Assembly-CSharp-Editor\\", 118 | "projectStyle": "PackageReference", 119 | "configFilePaths": [ 120 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 121 | ], 122 | "originalTargetFrameworks": [ 123 | "netstandard2.1" 124 | ], 125 | "sources": { 126 | "https://api.nuget.org/v3/index.json": {} 127 | }, 128 | "frameworks": { 129 | "netstandard2.1": { 130 | "targetAlias": "netstandard2.1", 131 | "projectReferences": { 132 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-firstpass.csproj": { 133 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-firstpass.csproj" 134 | }, 135 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp.csproj": { 136 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp.csproj" 137 | }, 138 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj": { 139 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj" 140 | }, 141 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj": { 142 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj" 143 | }, 144 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj": { 145 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj" 146 | } 147 | } 148 | } 149 | }, 150 | "warningProperties": { 151 | "warnAsError": [ 152 | "NU1605" 153 | ] 154 | }, 155 | "restoreAuditProperties": { 156 | "enableAudit": "true", 157 | "auditLevel": "low", 158 | "auditMode": "direct" 159 | }, 160 | "SdkAnalysisLevel": "9.0.100" 161 | }, 162 | "frameworks": { 163 | "netstandard2.1": { 164 | "targetAlias": "netstandard2.1", 165 | "imports": [ 166 | "net461", 167 | "net462", 168 | "net47", 169 | "net471", 170 | "net472", 171 | "net48", 172 | "net481" 173 | ], 174 | "assetTargetFallback": true, 175 | "warn": true, 176 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 177 | } 178 | } 179 | } 180 | } -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp-Editor/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "hMLVFb1snok=", 4 | "success": true, 5 | "projectFilePath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-Editor.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp-firstpass/.NETStandard,Version=v2.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] 5 | -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp-firstpass/Assembly-CSharp-firstpass.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = 3 | build_property.ProjectDir = D:\tout_et_rien\Scam repos Github\Cube-Alpha\ 4 | build_property.EnableComHosting = 5 | build_property.EnableGeneratedComInterfaceComImportInterop = 6 | build_property.CsWinRTUseWindowsUIXamlProjections = false 7 | build_property.EffectiveAnalysisLevelStyle = 8 | build_property.EnableCodeStyleSeverity = 9 | -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp-firstpass/Assembly-CSharp-firstpass.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peti6inge/Cube-Alpha/4d3824438b32e6aaa6de67214aebf89ef16b0c5d/Temp/obj/Debug/Assembly-CSharp-firstpass/Assembly-CSharp-firstpass.assets.cache -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp-firstpass/Assembly-CSharp-firstpass.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peti6inge/Cube-Alpha/4d3824438b32e6aaa6de67214aebf89ef16b0c5d/Temp/obj/Debug/Assembly-CSharp-firstpass/Assembly-CSharp-firstpass.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp-firstpass/Assembly-CSharp-firstpass.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-firstpass.csproj": {} 5 | }, 6 | "projects": { 7 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-firstpass.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-firstpass.csproj", 11 | "projectName": "Assembly-CSharp-firstpass", 12 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-firstpass.csproj", 13 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 14 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\Assembly-CSharp-firstpass\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 18 | ], 19 | "originalTargetFrameworks": [ 20 | "netstandard2.1" 21 | ], 22 | "sources": { 23 | "https://api.nuget.org/v3/index.json": {} 24 | }, 25 | "frameworks": { 26 | "netstandard2.1": { 27 | "targetAlias": "netstandard2.1", 28 | "projectReferences": { 29 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj": { 30 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj" 31 | }, 32 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj": { 33 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj" 34 | }, 35 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj": { 36 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj" 37 | } 38 | } 39 | } 40 | }, 41 | "warningProperties": { 42 | "warnAsError": [ 43 | "NU1605" 44 | ] 45 | }, 46 | "restoreAuditProperties": { 47 | "enableAudit": "true", 48 | "auditLevel": "low", 49 | "auditMode": "direct" 50 | }, 51 | "SdkAnalysisLevel": "9.0.100" 52 | }, 53 | "frameworks": { 54 | "netstandard2.1": { 55 | "targetAlias": "netstandard2.1", 56 | "imports": [ 57 | "net461", 58 | "net462", 59 | "net47", 60 | "net471", 61 | "net472", 62 | "net48", 63 | "net481" 64 | ], 65 | "assetTargetFallback": true, 66 | "warn": true, 67 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 68 | } 69 | } 70 | }, 71 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj": { 72 | "version": "1.0.0", 73 | "restore": { 74 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj", 75 | "projectName": "PlayFab", 76 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj", 77 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 78 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\PlayFab\\", 79 | "projectStyle": "PackageReference", 80 | "configFilePaths": [ 81 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 82 | ], 83 | "originalTargetFrameworks": [ 84 | "netstandard2.1" 85 | ], 86 | "sources": { 87 | "https://api.nuget.org/v3/index.json": {} 88 | }, 89 | "frameworks": { 90 | "netstandard2.1": { 91 | "targetAlias": "netstandard2.1", 92 | "projectReferences": {} 93 | } 94 | }, 95 | "warningProperties": { 96 | "warnAsError": [ 97 | "NU1605" 98 | ] 99 | }, 100 | "restoreAuditProperties": { 101 | "enableAudit": "true", 102 | "auditLevel": "low", 103 | "auditMode": "direct" 104 | }, 105 | "SdkAnalysisLevel": "9.0.100" 106 | }, 107 | "frameworks": { 108 | "netstandard2.1": { 109 | "targetAlias": "netstandard2.1", 110 | "imports": [ 111 | "net461", 112 | "net462", 113 | "net47", 114 | "net471", 115 | "net472", 116 | "net48", 117 | "net481" 118 | ], 119 | "assetTargetFallback": true, 120 | "warn": true, 121 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 122 | } 123 | } 124 | }, 125 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj": { 126 | "version": "1.0.0", 127 | "restore": { 128 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj", 129 | "projectName": "PlayFabEditorExtensions", 130 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj", 131 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 132 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\PlayFabEditorExtensions\\", 133 | "projectStyle": "PackageReference", 134 | "configFilePaths": [ 135 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 136 | ], 137 | "originalTargetFrameworks": [ 138 | "netstandard2.1" 139 | ], 140 | "sources": { 141 | "https://api.nuget.org/v3/index.json": {} 142 | }, 143 | "frameworks": { 144 | "netstandard2.1": { 145 | "targetAlias": "netstandard2.1", 146 | "projectReferences": {} 147 | } 148 | }, 149 | "warningProperties": { 150 | "warnAsError": [ 151 | "NU1605" 152 | ] 153 | }, 154 | "restoreAuditProperties": { 155 | "enableAudit": "true", 156 | "auditLevel": "low", 157 | "auditMode": "direct" 158 | }, 159 | "SdkAnalysisLevel": "9.0.100" 160 | }, 161 | "frameworks": { 162 | "netstandard2.1": { 163 | "targetAlias": "netstandard2.1", 164 | "imports": [ 165 | "net461", 166 | "net462", 167 | "net47", 168 | "net471", 169 | "net472", 170 | "net48", 171 | "net481" 172 | ], 173 | "assetTargetFallback": true, 174 | "warn": true, 175 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 176 | } 177 | } 178 | }, 179 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj": { 180 | "version": "1.0.0", 181 | "restore": { 182 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj", 183 | "projectName": "PlayFabSDKEditor", 184 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj", 185 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 186 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\PlayFabSDKEditor\\", 187 | "projectStyle": "PackageReference", 188 | "configFilePaths": [ 189 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 190 | ], 191 | "originalTargetFrameworks": [ 192 | "netstandard2.1" 193 | ], 194 | "sources": { 195 | "https://api.nuget.org/v3/index.json": {} 196 | }, 197 | "frameworks": { 198 | "netstandard2.1": { 199 | "targetAlias": "netstandard2.1", 200 | "projectReferences": { 201 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj": { 202 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj" 203 | } 204 | } 205 | } 206 | }, 207 | "warningProperties": { 208 | "warnAsError": [ 209 | "NU1605" 210 | ] 211 | }, 212 | "restoreAuditProperties": { 213 | "enableAudit": "true", 214 | "auditLevel": "low", 215 | "auditMode": "direct" 216 | }, 217 | "SdkAnalysisLevel": "9.0.100" 218 | }, 219 | "frameworks": { 220 | "netstandard2.1": { 221 | "targetAlias": "netstandard2.1", 222 | "imports": [ 223 | "net461", 224 | "net462", 225 | "net47", 226 | "net471", 227 | "net472", 228 | "net48", 229 | "net481" 230 | ], 231 | "assetTargetFallback": true, 232 | "warn": true, 233 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 234 | } 235 | } 236 | } 237 | } 238 | } -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp-firstpass/Assembly-CSharp-firstpass.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Romain\.nuget\packages\ 9 | PackageReference 10 | 6.12.2 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp-firstpass/Assembly-CSharp-firstpass.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp-firstpass/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETStandard,Version=v2.1": { 5 | "PlayFab/1.0.0": { 6 | "type": "project", 7 | "framework": ".NETStandard,Version=v2.1", 8 | "compile": { 9 | "bin/placeholder/PlayFab.dll": {} 10 | }, 11 | "runtime": { 12 | "bin/placeholder/PlayFab.dll": {} 13 | } 14 | }, 15 | "PlayFabEditorExtensions/1.0.0": { 16 | "type": "project", 17 | "framework": ".NETStandard,Version=v2.1", 18 | "compile": { 19 | "bin/placeholder/PlayFabEditorExtensions.dll": {} 20 | }, 21 | "runtime": { 22 | "bin/placeholder/PlayFabEditorExtensions.dll": {} 23 | } 24 | }, 25 | "PlayFabSDKEditor/1.0.0": { 26 | "type": "project", 27 | "framework": ".NETStandard,Version=v2.1", 28 | "dependencies": { 29 | "PlayFab": "1.0.0" 30 | }, 31 | "compile": { 32 | "bin/placeholder/PlayFabSDKEditor.dll": {} 33 | }, 34 | "runtime": { 35 | "bin/placeholder/PlayFabSDKEditor.dll": {} 36 | } 37 | } 38 | } 39 | }, 40 | "libraries": { 41 | "PlayFab/1.0.0": { 42 | "type": "project", 43 | "path": "PlayFab.csproj", 44 | "msbuildProject": "PlayFab.csproj" 45 | }, 46 | "PlayFabEditorExtensions/1.0.0": { 47 | "type": "project", 48 | "path": "PlayFabEditorExtensions.csproj", 49 | "msbuildProject": "PlayFabEditorExtensions.csproj" 50 | }, 51 | "PlayFabSDKEditor/1.0.0": { 52 | "type": "project", 53 | "path": "PlayFabSDKEditor.csproj", 54 | "msbuildProject": "PlayFabSDKEditor.csproj" 55 | } 56 | }, 57 | "projectFileDependencyGroups": { 58 | ".NETStandard,Version=v2.1": [ 59 | "PlayFab >= 1.0.0", 60 | "PlayFabEditorExtensions >= 1.0.0", 61 | "PlayFabSDKEditor >= 1.0.0" 62 | ] 63 | }, 64 | "packageFolders": { 65 | "C:\\Users\\Romain\\.nuget\\packages\\": {} 66 | }, 67 | "project": { 68 | "version": "1.0.0", 69 | "restore": { 70 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-firstpass.csproj", 71 | "projectName": "Assembly-CSharp-firstpass", 72 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-firstpass.csproj", 73 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 74 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\Assembly-CSharp-firstpass\\", 75 | "projectStyle": "PackageReference", 76 | "configFilePaths": [ 77 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 78 | ], 79 | "originalTargetFrameworks": [ 80 | "netstandard2.1" 81 | ], 82 | "sources": { 83 | "https://api.nuget.org/v3/index.json": {} 84 | }, 85 | "frameworks": { 86 | "netstandard2.1": { 87 | "targetAlias": "netstandard2.1", 88 | "projectReferences": { 89 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj": { 90 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj" 91 | }, 92 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj": { 93 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj" 94 | }, 95 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj": { 96 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj" 97 | } 98 | } 99 | } 100 | }, 101 | "warningProperties": { 102 | "warnAsError": [ 103 | "NU1605" 104 | ] 105 | }, 106 | "restoreAuditProperties": { 107 | "enableAudit": "true", 108 | "auditLevel": "low", 109 | "auditMode": "direct" 110 | }, 111 | "SdkAnalysisLevel": "9.0.100" 112 | }, 113 | "frameworks": { 114 | "netstandard2.1": { 115 | "targetAlias": "netstandard2.1", 116 | "imports": [ 117 | "net461", 118 | "net462", 119 | "net47", 120 | "net471", 121 | "net472", 122 | "net48", 123 | "net481" 124 | ], 125 | "assetTargetFallback": true, 126 | "warn": true, 127 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 128 | } 129 | } 130 | } 131 | } -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp-firstpass/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "c64RRqGcOgA=", 4 | "success": true, 5 | "projectFilePath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-firstpass.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp/.NETStandard,Version=v2.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] 5 | -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp/Assembly-CSharp.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = 3 | build_property.ProjectDir = D:\tout_et_rien\Scam repos Github\Cube-Alpha\ 4 | build_property.EnableComHosting = 5 | build_property.EnableGeneratedComInterfaceComImportInterop = 6 | build_property.CsWinRTUseWindowsUIXamlProjections = false 7 | build_property.EffectiveAnalysisLevelStyle = 8 | build_property.EnableCodeStyleSeverity = 9 | -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp/Assembly-CSharp.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peti6inge/Cube-Alpha/4d3824438b32e6aaa6de67214aebf89ef16b0c5d/Temp/obj/Debug/Assembly-CSharp/Assembly-CSharp.assets.cache -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp/Assembly-CSharp.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peti6inge/Cube-Alpha/4d3824438b32e6aaa6de67214aebf89ef16b0c5d/Temp/obj/Debug/Assembly-CSharp/Assembly-CSharp.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp/Assembly-CSharp.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp.csproj": {} 5 | }, 6 | "projects": { 7 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-firstpass.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-firstpass.csproj", 11 | "projectName": "Assembly-CSharp-firstpass", 12 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-firstpass.csproj", 13 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 14 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\Assembly-CSharp-firstpass\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 18 | ], 19 | "originalTargetFrameworks": [ 20 | "netstandard2.1" 21 | ], 22 | "sources": { 23 | "https://api.nuget.org/v3/index.json": {} 24 | }, 25 | "frameworks": { 26 | "netstandard2.1": { 27 | "targetAlias": "netstandard2.1", 28 | "projectReferences": { 29 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj": { 30 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj" 31 | }, 32 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj": { 33 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj" 34 | }, 35 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj": { 36 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj" 37 | } 38 | } 39 | } 40 | }, 41 | "warningProperties": { 42 | "warnAsError": [ 43 | "NU1605" 44 | ] 45 | }, 46 | "restoreAuditProperties": { 47 | "enableAudit": "true", 48 | "auditLevel": "low", 49 | "auditMode": "direct" 50 | }, 51 | "SdkAnalysisLevel": "9.0.100" 52 | }, 53 | "frameworks": { 54 | "netstandard2.1": { 55 | "targetAlias": "netstandard2.1", 56 | "imports": [ 57 | "net461", 58 | "net462", 59 | "net47", 60 | "net471", 61 | "net472", 62 | "net48", 63 | "net481" 64 | ], 65 | "assetTargetFallback": true, 66 | "warn": true, 67 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 68 | } 69 | } 70 | }, 71 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp.csproj": { 72 | "version": "1.0.0", 73 | "restore": { 74 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp.csproj", 75 | "projectName": "Assembly-CSharp", 76 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp.csproj", 77 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 78 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\Assembly-CSharp\\", 79 | "projectStyle": "PackageReference", 80 | "configFilePaths": [ 81 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 82 | ], 83 | "originalTargetFrameworks": [ 84 | "netstandard2.1" 85 | ], 86 | "sources": { 87 | "https://api.nuget.org/v3/index.json": {} 88 | }, 89 | "frameworks": { 90 | "netstandard2.1": { 91 | "targetAlias": "netstandard2.1", 92 | "projectReferences": { 93 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-firstpass.csproj": { 94 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-firstpass.csproj" 95 | }, 96 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj": { 97 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj" 98 | }, 99 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj": { 100 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj" 101 | }, 102 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj": { 103 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj" 104 | } 105 | } 106 | } 107 | }, 108 | "warningProperties": { 109 | "warnAsError": [ 110 | "NU1605" 111 | ] 112 | }, 113 | "restoreAuditProperties": { 114 | "enableAudit": "true", 115 | "auditLevel": "low", 116 | "auditMode": "direct" 117 | }, 118 | "SdkAnalysisLevel": "9.0.100" 119 | }, 120 | "frameworks": { 121 | "netstandard2.1": { 122 | "targetAlias": "netstandard2.1", 123 | "imports": [ 124 | "net461", 125 | "net462", 126 | "net47", 127 | "net471", 128 | "net472", 129 | "net48", 130 | "net481" 131 | ], 132 | "assetTargetFallback": true, 133 | "warn": true, 134 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 135 | } 136 | } 137 | }, 138 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj": { 139 | "version": "1.0.0", 140 | "restore": { 141 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj", 142 | "projectName": "PlayFab", 143 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj", 144 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 145 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\PlayFab\\", 146 | "projectStyle": "PackageReference", 147 | "configFilePaths": [ 148 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 149 | ], 150 | "originalTargetFrameworks": [ 151 | "netstandard2.1" 152 | ], 153 | "sources": { 154 | "https://api.nuget.org/v3/index.json": {} 155 | }, 156 | "frameworks": { 157 | "netstandard2.1": { 158 | "targetAlias": "netstandard2.1", 159 | "projectReferences": {} 160 | } 161 | }, 162 | "warningProperties": { 163 | "warnAsError": [ 164 | "NU1605" 165 | ] 166 | }, 167 | "restoreAuditProperties": { 168 | "enableAudit": "true", 169 | "auditLevel": "low", 170 | "auditMode": "direct" 171 | }, 172 | "SdkAnalysisLevel": "9.0.100" 173 | }, 174 | "frameworks": { 175 | "netstandard2.1": { 176 | "targetAlias": "netstandard2.1", 177 | "imports": [ 178 | "net461", 179 | "net462", 180 | "net47", 181 | "net471", 182 | "net472", 183 | "net48", 184 | "net481" 185 | ], 186 | "assetTargetFallback": true, 187 | "warn": true, 188 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 189 | } 190 | } 191 | }, 192 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj": { 193 | "version": "1.0.0", 194 | "restore": { 195 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj", 196 | "projectName": "PlayFabEditorExtensions", 197 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj", 198 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 199 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\PlayFabEditorExtensions\\", 200 | "projectStyle": "PackageReference", 201 | "configFilePaths": [ 202 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 203 | ], 204 | "originalTargetFrameworks": [ 205 | "netstandard2.1" 206 | ], 207 | "sources": { 208 | "https://api.nuget.org/v3/index.json": {} 209 | }, 210 | "frameworks": { 211 | "netstandard2.1": { 212 | "targetAlias": "netstandard2.1", 213 | "projectReferences": {} 214 | } 215 | }, 216 | "warningProperties": { 217 | "warnAsError": [ 218 | "NU1605" 219 | ] 220 | }, 221 | "restoreAuditProperties": { 222 | "enableAudit": "true", 223 | "auditLevel": "low", 224 | "auditMode": "direct" 225 | }, 226 | "SdkAnalysisLevel": "9.0.100" 227 | }, 228 | "frameworks": { 229 | "netstandard2.1": { 230 | "targetAlias": "netstandard2.1", 231 | "imports": [ 232 | "net461", 233 | "net462", 234 | "net47", 235 | "net471", 236 | "net472", 237 | "net48", 238 | "net481" 239 | ], 240 | "assetTargetFallback": true, 241 | "warn": true, 242 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 243 | } 244 | } 245 | }, 246 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj": { 247 | "version": "1.0.0", 248 | "restore": { 249 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj", 250 | "projectName": "PlayFabSDKEditor", 251 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj", 252 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 253 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\PlayFabSDKEditor\\", 254 | "projectStyle": "PackageReference", 255 | "configFilePaths": [ 256 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 257 | ], 258 | "originalTargetFrameworks": [ 259 | "netstandard2.1" 260 | ], 261 | "sources": { 262 | "https://api.nuget.org/v3/index.json": {} 263 | }, 264 | "frameworks": { 265 | "netstandard2.1": { 266 | "targetAlias": "netstandard2.1", 267 | "projectReferences": { 268 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj": { 269 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj" 270 | } 271 | } 272 | } 273 | }, 274 | "warningProperties": { 275 | "warnAsError": [ 276 | "NU1605" 277 | ] 278 | }, 279 | "restoreAuditProperties": { 280 | "enableAudit": "true", 281 | "auditLevel": "low", 282 | "auditMode": "direct" 283 | }, 284 | "SdkAnalysisLevel": "9.0.100" 285 | }, 286 | "frameworks": { 287 | "netstandard2.1": { 288 | "targetAlias": "netstandard2.1", 289 | "imports": [ 290 | "net461", 291 | "net462", 292 | "net47", 293 | "net471", 294 | "net472", 295 | "net48", 296 | "net481" 297 | ], 298 | "assetTargetFallback": true, 299 | "warn": true, 300 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 301 | } 302 | } 303 | } 304 | } 305 | } -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp/Assembly-CSharp.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Romain\.nuget\packages\ 9 | PackageReference 10 | 6.12.2 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp/Assembly-CSharp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETStandard,Version=v2.1": { 5 | "Assembly-CSharp-firstpass/1.0.0": { 6 | "type": "project", 7 | "framework": ".NETStandard,Version=v2.1", 8 | "dependencies": { 9 | "PlayFab": "1.0.0", 10 | "PlayFabEditorExtensions": "1.0.0", 11 | "PlayFabSDKEditor": "1.0.0" 12 | }, 13 | "compile": { 14 | "bin/placeholder/Assembly-CSharp-firstpass.dll": {} 15 | }, 16 | "runtime": { 17 | "bin/placeholder/Assembly-CSharp-firstpass.dll": {} 18 | } 19 | }, 20 | "PlayFab/1.0.0": { 21 | "type": "project", 22 | "framework": ".NETStandard,Version=v2.1", 23 | "compile": { 24 | "bin/placeholder/PlayFab.dll": {} 25 | }, 26 | "runtime": { 27 | "bin/placeholder/PlayFab.dll": {} 28 | } 29 | }, 30 | "PlayFabEditorExtensions/1.0.0": { 31 | "type": "project", 32 | "framework": ".NETStandard,Version=v2.1", 33 | "compile": { 34 | "bin/placeholder/PlayFabEditorExtensions.dll": {} 35 | }, 36 | "runtime": { 37 | "bin/placeholder/PlayFabEditorExtensions.dll": {} 38 | } 39 | }, 40 | "PlayFabSDKEditor/1.0.0": { 41 | "type": "project", 42 | "framework": ".NETStandard,Version=v2.1", 43 | "dependencies": { 44 | "PlayFab": "1.0.0" 45 | }, 46 | "compile": { 47 | "bin/placeholder/PlayFabSDKEditor.dll": {} 48 | }, 49 | "runtime": { 50 | "bin/placeholder/PlayFabSDKEditor.dll": {} 51 | } 52 | } 53 | } 54 | }, 55 | "libraries": { 56 | "Assembly-CSharp-firstpass/1.0.0": { 57 | "type": "project", 58 | "path": "Assembly-CSharp-firstpass.csproj", 59 | "msbuildProject": "Assembly-CSharp-firstpass.csproj" 60 | }, 61 | "PlayFab/1.0.0": { 62 | "type": "project", 63 | "path": "PlayFab.csproj", 64 | "msbuildProject": "PlayFab.csproj" 65 | }, 66 | "PlayFabEditorExtensions/1.0.0": { 67 | "type": "project", 68 | "path": "PlayFabEditorExtensions.csproj", 69 | "msbuildProject": "PlayFabEditorExtensions.csproj" 70 | }, 71 | "PlayFabSDKEditor/1.0.0": { 72 | "type": "project", 73 | "path": "PlayFabSDKEditor.csproj", 74 | "msbuildProject": "PlayFabSDKEditor.csproj" 75 | } 76 | }, 77 | "projectFileDependencyGroups": { 78 | ".NETStandard,Version=v2.1": [ 79 | "Assembly-CSharp-firstpass >= 1.0.0", 80 | "PlayFab >= 1.0.0", 81 | "PlayFabEditorExtensions >= 1.0.0", 82 | "PlayFabSDKEditor >= 1.0.0" 83 | ] 84 | }, 85 | "packageFolders": { 86 | "C:\\Users\\Romain\\.nuget\\packages\\": {} 87 | }, 88 | "project": { 89 | "version": "1.0.0", 90 | "restore": { 91 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp.csproj", 92 | "projectName": "Assembly-CSharp", 93 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp.csproj", 94 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 95 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\Assembly-CSharp\\", 96 | "projectStyle": "PackageReference", 97 | "configFilePaths": [ 98 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 99 | ], 100 | "originalTargetFrameworks": [ 101 | "netstandard2.1" 102 | ], 103 | "sources": { 104 | "https://api.nuget.org/v3/index.json": {} 105 | }, 106 | "frameworks": { 107 | "netstandard2.1": { 108 | "targetAlias": "netstandard2.1", 109 | "projectReferences": { 110 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-firstpass.csproj": { 111 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp-firstpass.csproj" 112 | }, 113 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj": { 114 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj" 115 | }, 116 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj": { 117 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj" 118 | }, 119 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj": { 120 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj" 121 | } 122 | } 123 | } 124 | }, 125 | "warningProperties": { 126 | "warnAsError": [ 127 | "NU1605" 128 | ] 129 | }, 130 | "restoreAuditProperties": { 131 | "enableAudit": "true", 132 | "auditLevel": "low", 133 | "auditMode": "direct" 134 | }, 135 | "SdkAnalysisLevel": "9.0.100" 136 | }, 137 | "frameworks": { 138 | "netstandard2.1": { 139 | "targetAlias": "netstandard2.1", 140 | "imports": [ 141 | "net461", 142 | "net462", 143 | "net47", 144 | "net471", 145 | "net472", 146 | "net48", 147 | "net481" 148 | ], 149 | "assetTargetFallback": true, 150 | "warn": true, 151 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 152 | } 153 | } 154 | } 155 | } -------------------------------------------------------------------------------- /Temp/obj/Debug/Assembly-CSharp/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "K3lES5E1vDA=", 4 | "success": true, 5 | "projectFilePath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Assembly-CSharp.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFab/.NETStandard,Version=v2.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] 5 | -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFab/PlayFab.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = 3 | build_property.ProjectDir = D:\tout_et_rien\Scam repos Github\Cube-Alpha\ 4 | build_property.EnableComHosting = 5 | build_property.EnableGeneratedComInterfaceComImportInterop = 6 | build_property.CsWinRTUseWindowsUIXamlProjections = false 7 | build_property.EffectiveAnalysisLevelStyle = 8 | build_property.EnableCodeStyleSeverity = 9 | -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFab/PlayFab.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peti6inge/Cube-Alpha/4d3824438b32e6aaa6de67214aebf89ef16b0c5d/Temp/obj/Debug/PlayFab/PlayFab.assets.cache -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFab/PlayFab.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peti6inge/Cube-Alpha/4d3824438b32e6aaa6de67214aebf89ef16b0c5d/Temp/obj/Debug/PlayFab/PlayFab.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFab/PlayFab.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj": {} 5 | }, 6 | "projects": { 7 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj", 11 | "projectName": "PlayFab", 12 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj", 13 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 14 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\PlayFab\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 18 | ], 19 | "originalTargetFrameworks": [ 20 | "netstandard2.1" 21 | ], 22 | "sources": { 23 | "https://api.nuget.org/v3/index.json": {} 24 | }, 25 | "frameworks": { 26 | "netstandard2.1": { 27 | "targetAlias": "netstandard2.1", 28 | "projectReferences": {} 29 | } 30 | }, 31 | "warningProperties": { 32 | "warnAsError": [ 33 | "NU1605" 34 | ] 35 | }, 36 | "restoreAuditProperties": { 37 | "enableAudit": "true", 38 | "auditLevel": "low", 39 | "auditMode": "direct" 40 | }, 41 | "SdkAnalysisLevel": "9.0.100" 42 | }, 43 | "frameworks": { 44 | "netstandard2.1": { 45 | "targetAlias": "netstandard2.1", 46 | "imports": [ 47 | "net461", 48 | "net462", 49 | "net47", 50 | "net471", 51 | "net472", 52 | "net48", 53 | "net481" 54 | ], 55 | "assetTargetFallback": true, 56 | "warn": true, 57 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 58 | } 59 | } 60 | } 61 | } 62 | } -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFab/PlayFab.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Romain\.nuget\packages\ 9 | PackageReference 10 | 6.12.2 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFab/PlayFab.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFab/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETStandard,Version=v2.1": {} 5 | }, 6 | "libraries": {}, 7 | "projectFileDependencyGroups": { 8 | ".NETStandard,Version=v2.1": [] 9 | }, 10 | "packageFolders": { 11 | "C:\\Users\\Romain\\.nuget\\packages\\": {} 12 | }, 13 | "project": { 14 | "version": "1.0.0", 15 | "restore": { 16 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj", 17 | "projectName": "PlayFab", 18 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj", 19 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 20 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\PlayFab\\", 21 | "projectStyle": "PackageReference", 22 | "configFilePaths": [ 23 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 24 | ], 25 | "originalTargetFrameworks": [ 26 | "netstandard2.1" 27 | ], 28 | "sources": { 29 | "https://api.nuget.org/v3/index.json": {} 30 | }, 31 | "frameworks": { 32 | "netstandard2.1": { 33 | "targetAlias": "netstandard2.1", 34 | "projectReferences": {} 35 | } 36 | }, 37 | "warningProperties": { 38 | "warnAsError": [ 39 | "NU1605" 40 | ] 41 | }, 42 | "restoreAuditProperties": { 43 | "enableAudit": "true", 44 | "auditLevel": "low", 45 | "auditMode": "direct" 46 | }, 47 | "SdkAnalysisLevel": "9.0.100" 48 | }, 49 | "frameworks": { 50 | "netstandard2.1": { 51 | "targetAlias": "netstandard2.1", 52 | "imports": [ 53 | "net461", 54 | "net462", 55 | "net47", 56 | "net471", 57 | "net472", 58 | "net48", 59 | "net481" 60 | ], 61 | "assetTargetFallback": true, 62 | "warn": true, 63 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 64 | } 65 | } 66 | } 67 | } -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFab/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "X4ykf3pGEWo=", 4 | "success": true, 5 | "projectFilePath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabEditorExtensions/.NETStandard,Version=v2.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] 5 | -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabEditorExtensions/PlayFabEditorExtensions.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = 3 | build_property.ProjectDir = D:\tout_et_rien\Scam repos Github\Cube-Alpha\ 4 | build_property.EnableComHosting = 5 | build_property.EnableGeneratedComInterfaceComImportInterop = 6 | build_property.CsWinRTUseWindowsUIXamlProjections = false 7 | build_property.EffectiveAnalysisLevelStyle = 8 | build_property.EnableCodeStyleSeverity = 9 | -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabEditorExtensions/PlayFabEditorExtensions.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peti6inge/Cube-Alpha/4d3824438b32e6aaa6de67214aebf89ef16b0c5d/Temp/obj/Debug/PlayFabEditorExtensions/PlayFabEditorExtensions.assets.cache -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabEditorExtensions/PlayFabEditorExtensions.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peti6inge/Cube-Alpha/4d3824438b32e6aaa6de67214aebf89ef16b0c5d/Temp/obj/Debug/PlayFabEditorExtensions/PlayFabEditorExtensions.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabEditorExtensions/PlayFabEditorExtensions.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj": {} 5 | }, 6 | "projects": { 7 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj", 11 | "projectName": "PlayFabEditorExtensions", 12 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj", 13 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 14 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\PlayFabEditorExtensions\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 18 | ], 19 | "originalTargetFrameworks": [ 20 | "netstandard2.1" 21 | ], 22 | "sources": { 23 | "https://api.nuget.org/v3/index.json": {} 24 | }, 25 | "frameworks": { 26 | "netstandard2.1": { 27 | "targetAlias": "netstandard2.1", 28 | "projectReferences": {} 29 | } 30 | }, 31 | "warningProperties": { 32 | "warnAsError": [ 33 | "NU1605" 34 | ] 35 | }, 36 | "restoreAuditProperties": { 37 | "enableAudit": "true", 38 | "auditLevel": "low", 39 | "auditMode": "direct" 40 | }, 41 | "SdkAnalysisLevel": "9.0.100" 42 | }, 43 | "frameworks": { 44 | "netstandard2.1": { 45 | "targetAlias": "netstandard2.1", 46 | "imports": [ 47 | "net461", 48 | "net462", 49 | "net47", 50 | "net471", 51 | "net472", 52 | "net48", 53 | "net481" 54 | ], 55 | "assetTargetFallback": true, 56 | "warn": true, 57 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 58 | } 59 | } 60 | } 61 | } 62 | } -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabEditorExtensions/PlayFabEditorExtensions.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Romain\.nuget\packages\ 9 | PackageReference 10 | 6.12.2 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabEditorExtensions/PlayFabEditorExtensions.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabEditorExtensions/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETStandard,Version=v2.1": {} 5 | }, 6 | "libraries": {}, 7 | "projectFileDependencyGroups": { 8 | ".NETStandard,Version=v2.1": [] 9 | }, 10 | "packageFolders": { 11 | "C:\\Users\\Romain\\.nuget\\packages\\": {} 12 | }, 13 | "project": { 14 | "version": "1.0.0", 15 | "restore": { 16 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj", 17 | "projectName": "PlayFabEditorExtensions", 18 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj", 19 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 20 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\PlayFabEditorExtensions\\", 21 | "projectStyle": "PackageReference", 22 | "configFilePaths": [ 23 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 24 | ], 25 | "originalTargetFrameworks": [ 26 | "netstandard2.1" 27 | ], 28 | "sources": { 29 | "https://api.nuget.org/v3/index.json": {} 30 | }, 31 | "frameworks": { 32 | "netstandard2.1": { 33 | "targetAlias": "netstandard2.1", 34 | "projectReferences": {} 35 | } 36 | }, 37 | "warningProperties": { 38 | "warnAsError": [ 39 | "NU1605" 40 | ] 41 | }, 42 | "restoreAuditProperties": { 43 | "enableAudit": "true", 44 | "auditLevel": "low", 45 | "auditMode": "direct" 46 | }, 47 | "SdkAnalysisLevel": "9.0.100" 48 | }, 49 | "frameworks": { 50 | "netstandard2.1": { 51 | "targetAlias": "netstandard2.1", 52 | "imports": [ 53 | "net461", 54 | "net462", 55 | "net47", 56 | "net471", 57 | "net472", 58 | "net48", 59 | "net481" 60 | ], 61 | "assetTargetFallback": true, 62 | "warn": true, 63 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 64 | } 65 | } 66 | } 67 | } -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabEditorExtensions/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "VdOglF2OARo=", 4 | "success": true, 5 | "projectFilePath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabEditorExtensions.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabSDKEditor/.NETStandard,Version=v2.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] 5 | -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabSDKEditor/PlayFabSDKEditor.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = 3 | build_property.ProjectDir = D:\tout_et_rien\Scam repos Github\Cube-Alpha\ 4 | build_property.EnableComHosting = 5 | build_property.EnableGeneratedComInterfaceComImportInterop = 6 | build_property.CsWinRTUseWindowsUIXamlProjections = false 7 | build_property.EffectiveAnalysisLevelStyle = 8 | build_property.EnableCodeStyleSeverity = 9 | -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabSDKEditor/PlayFabSDKEditor.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peti6inge/Cube-Alpha/4d3824438b32e6aaa6de67214aebf89ef16b0c5d/Temp/obj/Debug/PlayFabSDKEditor/PlayFabSDKEditor.assets.cache -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabSDKEditor/PlayFabSDKEditor.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peti6inge/Cube-Alpha/4d3824438b32e6aaa6de67214aebf89ef16b0c5d/Temp/obj/Debug/PlayFabSDKEditor/PlayFabSDKEditor.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabSDKEditor/PlayFabSDKEditor.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj": {} 5 | }, 6 | "projects": { 7 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj", 11 | "projectName": "PlayFab", 12 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj", 13 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 14 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\PlayFab\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 18 | ], 19 | "originalTargetFrameworks": [ 20 | "netstandard2.1" 21 | ], 22 | "sources": { 23 | "https://api.nuget.org/v3/index.json": {} 24 | }, 25 | "frameworks": { 26 | "netstandard2.1": { 27 | "targetAlias": "netstandard2.1", 28 | "projectReferences": {} 29 | } 30 | }, 31 | "warningProperties": { 32 | "warnAsError": [ 33 | "NU1605" 34 | ] 35 | }, 36 | "restoreAuditProperties": { 37 | "enableAudit": "true", 38 | "auditLevel": "low", 39 | "auditMode": "direct" 40 | }, 41 | "SdkAnalysisLevel": "9.0.100" 42 | }, 43 | "frameworks": { 44 | "netstandard2.1": { 45 | "targetAlias": "netstandard2.1", 46 | "imports": [ 47 | "net461", 48 | "net462", 49 | "net47", 50 | "net471", 51 | "net472", 52 | "net48", 53 | "net481" 54 | ], 55 | "assetTargetFallback": true, 56 | "warn": true, 57 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 58 | } 59 | } 60 | }, 61 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj": { 62 | "version": "1.0.0", 63 | "restore": { 64 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj", 65 | "projectName": "PlayFabSDKEditor", 66 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj", 67 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 68 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\PlayFabSDKEditor\\", 69 | "projectStyle": "PackageReference", 70 | "configFilePaths": [ 71 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 72 | ], 73 | "originalTargetFrameworks": [ 74 | "netstandard2.1" 75 | ], 76 | "sources": { 77 | "https://api.nuget.org/v3/index.json": {} 78 | }, 79 | "frameworks": { 80 | "netstandard2.1": { 81 | "targetAlias": "netstandard2.1", 82 | "projectReferences": { 83 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj": { 84 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj" 85 | } 86 | } 87 | } 88 | }, 89 | "warningProperties": { 90 | "warnAsError": [ 91 | "NU1605" 92 | ] 93 | }, 94 | "restoreAuditProperties": { 95 | "enableAudit": "true", 96 | "auditLevel": "low", 97 | "auditMode": "direct" 98 | }, 99 | "SdkAnalysisLevel": "9.0.100" 100 | }, 101 | "frameworks": { 102 | "netstandard2.1": { 103 | "targetAlias": "netstandard2.1", 104 | "imports": [ 105 | "net461", 106 | "net462", 107 | "net47", 108 | "net471", 109 | "net472", 110 | "net48", 111 | "net481" 112 | ], 113 | "assetTargetFallback": true, 114 | "warn": true, 115 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 116 | } 117 | } 118 | } 119 | } 120 | } -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabSDKEditor/PlayFabSDKEditor.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Romain\.nuget\packages\ 9 | PackageReference 10 | 6.12.2 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabSDKEditor/PlayFabSDKEditor.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabSDKEditor/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETStandard,Version=v2.1": { 5 | "PlayFab/1.0.0": { 6 | "type": "project", 7 | "framework": ".NETStandard,Version=v2.1", 8 | "compile": { 9 | "bin/placeholder/PlayFab.dll": {} 10 | }, 11 | "runtime": { 12 | "bin/placeholder/PlayFab.dll": {} 13 | } 14 | } 15 | } 16 | }, 17 | "libraries": { 18 | "PlayFab/1.0.0": { 19 | "type": "project", 20 | "path": "PlayFab.csproj", 21 | "msbuildProject": "PlayFab.csproj" 22 | } 23 | }, 24 | "projectFileDependencyGroups": { 25 | ".NETStandard,Version=v2.1": [ 26 | "PlayFab >= 1.0.0" 27 | ] 28 | }, 29 | "packageFolders": { 30 | "C:\\Users\\Romain\\.nuget\\packages\\": {} 31 | }, 32 | "project": { 33 | "version": "1.0.0", 34 | "restore": { 35 | "projectUniqueName": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj", 36 | "projectName": "PlayFabSDKEditor", 37 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj", 38 | "packagesPath": "C:\\Users\\Romain\\.nuget\\packages\\", 39 | "outputPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\Temp\\obj\\Debug\\PlayFabSDKEditor\\", 40 | "projectStyle": "PackageReference", 41 | "configFilePaths": [ 42 | "C:\\Users\\Romain\\AppData\\Roaming\\NuGet\\NuGet.Config" 43 | ], 44 | "originalTargetFrameworks": [ 45 | "netstandard2.1" 46 | ], 47 | "sources": { 48 | "https://api.nuget.org/v3/index.json": {} 49 | }, 50 | "frameworks": { 51 | "netstandard2.1": { 52 | "targetAlias": "netstandard2.1", 53 | "projectReferences": { 54 | "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj": { 55 | "projectPath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFab.csproj" 56 | } 57 | } 58 | } 59 | }, 60 | "warningProperties": { 61 | "warnAsError": [ 62 | "NU1605" 63 | ] 64 | }, 65 | "restoreAuditProperties": { 66 | "enableAudit": "true", 67 | "auditLevel": "low", 68 | "auditMode": "direct" 69 | }, 70 | "SdkAnalysisLevel": "9.0.100" 71 | }, 72 | "frameworks": { 73 | "netstandard2.1": { 74 | "targetAlias": "netstandard2.1", 75 | "imports": [ 76 | "net461", 77 | "net462", 78 | "net47", 79 | "net471", 80 | "net472", 81 | "net48", 82 | "net481" 83 | ], 84 | "assetTargetFallback": true, 85 | "warn": true, 86 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101\\RuntimeIdentifierGraph.json" 87 | } 88 | } 89 | } 90 | } -------------------------------------------------------------------------------- /Temp/obj/Debug/PlayFabSDKEditor/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "HqbgmnI11jU=", 4 | "success": true, 5 | "projectFilePath": "D:\\tout_et_rien\\Scam repos Github\\Cube-Alpha\\PlayFabSDKEditor.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /UIElementsSchema/GlobalNamespace.xsd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /UIElementsSchema/UIElements.xsd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /UIElementsSchema/Unity.Profiling.Editor.xsd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | -------------------------------------------------------------------------------- /UIElementsSchema/UnityEditor.Experimental.GraphView.xsd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /UIElementsSchema/UnityEditor.Overlays.xsd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /UIElementsSchema/UnityEditor.Rendering.LookDev.xsd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /UIElementsSchema/UnityEditor.Search.xsd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /UIElementsSchema/UnityEditor.ShaderGraph.Drawing.xsd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /UIElementsSchema/UnityEditor.ShortcutManagement.xsd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /UIElementsSchema/UnityEditor.UIElements.Debugger.xsd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!162 &1 4 | EditorUserSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 4 7 | m_ConfigSettings: 8 | RecentlyUsedSceneGuid-0: 9 | value: 550951075702585f090f5f7013775c42464e1d7e78797f327d704c31b0b26c60 10 | flags: 0 11 | RecentlyUsedSceneGuid-1: 12 | value: 5208060706500c0c550c0a2342735c4447164f7d28707167292a196be4b8303a 13 | flags: 0 14 | RecentlyUsedSceneGuid-2: 15 | value: 07010c0550030c0a550d547640265e4414164c7e292d7360287a1f61e6b4663d 16 | flags: 0 17 | RecentlyUsedSceneGuid-3: 18 | value: 515505020706085e585a0d7546730f444f16197c2e2e7f357f2c1863b1e6373e 19 | flags: 0 20 | RecentlyUsedSceneGuid-4: 21 | value: 5b5351575d50505f54565b71157a5c44474e407f74797462287e4c67e7e26639 22 | flags: 0 23 | RecentlyUsedSceneGuid-5: 24 | value: 54540c505153595d545a5477127a0b44124e4c7b7c2c7e352f701937bbe3313d 25 | flags: 0 26 | RecentlyUsedSceneGuid-6: 27 | value: 5703065200020c5d5b5b5e7315225e4443164f737d2c70667a2b4a62b3b46c6e 28 | flags: 0 29 | RecentlyUsedSceneGuid-7: 30 | value: 5555015454065c030e570f7612710a44154e41797e7c7061747c4a31b6e1316d 31 | flags: 0 32 | RecentlyUsedSceneGuid-8: 33 | value: 575252055550580e090c0f7348700a44424e492f7a2c7e342c281960e4e1356f 34 | flags: 0 35 | RecentlyUsedSceneGuid-9: 36 | value: 5a5757560101590a5d0c0e24427b5d44434e4c7a7b7a23677f2b4565b7b5353a 37 | flags: 0 38 | UnityEditor.ShaderGraph.Blackboard: 39 | value: 18135939215a0a5004000b0e15254b524c030a3f2964643d120d1230e9e93a3fd6e826abbd2e2d293c4ead313b08042de6030a0afa240c0d020be94c4ba75e435d8715fa32c70d15d11612dacc11fee5d3c5d1fe9ab1bf968e93e2ffcbc3e7e2f0b3ffe0e8b0be9af8ffaeffff8e85dd8390e3949c8899daa7 40 | flags: 0 41 | UnityEditor.ShaderGraph.FloatingWindowsLayout2: 42 | value: 181344140043005e1a220d3b1f364b524c0c5a27130c293326201334cee5322ca0bd30e8eb293a707b0fd0180b3d0a36fc0d3d04e649500d1002ee0b5dbd1d2c27c00ad113cb1e10e41f1addc80993b98d9884a69ae6d8f0d1cda9e8fbfefaf9f9dea3fdb9ade882f0f7b0e1e380cafbf2c3adc18e9cd285a2908b82ec869c8395949c9483d68a8e97ddbd90bf 43 | flags: 0 44 | UnityEditor.ShaderGraph.InspectorWindow: 45 | value: 18135939215a0a5004000b0e15254b524c1119263f2d6a722016393ce1eb3d36e5d339f9a5602b2e2c07a37e0901373ae01e0008f707250d171df81a53a5485d41895ac825e0100ec20313c0d91cddccd3d0c7efcca9bd80908fecb0f9cfddf1eff4e7a1b1eae482f0fcaee1e1928b86d888ed969b938797a7cf 46 | flags: 0 47 | vcSharedLogLevel: 48 | value: 0d5e400f0650 49 | flags: 0 50 | m_VCAutomaticAdd: 1 51 | m_VCDebugCom: 0 52 | m_VCDebugCmd: 0 53 | m_VCDebugOut: 0 54 | m_SemanticMergeMode: 2 55 | m_DesiredImportWorkerCount: 4 56 | m_StandbyImportWorkerCount: 2 57 | m_IdleImportWorkerShutdownDelay: 60000 58 | m_VCShowFailedCheckout: 1 59 | m_VCOverwriteFailedCheckoutAssets: 1 60 | m_VCProjectOverlayIcons: 1 61 | m_VCHierarchyOverlayIcons: 1 62 | m_VCOtherOverlayIcons: 1 63 | m_VCAllowAsyncUpdate: 1 64 | m_ArtifactGarbageCollection: 1 65 | -------------------------------------------------------------------------------- /UserSettings/Search.settings: -------------------------------------------------------------------------------- 1 | trackSelection = true 2 | refreshSearchWindowsInPlayMode = false 3 | fetchPreview = true 4 | defaultFlags = 0 5 | keepOpen = false 6 | queryFolder = "Assets" 7 | onBoardingDoNotAskAgain = true 8 | showPackageIndexes = false 9 | showStatusBar = false 10 | scopes = { 11 | "last_search.3BE40471" = "ref:Assets/Accueil/Scripts/LightSweep.cs" 12 | "OpenInspectorPreview.3BE40471" = "0" 13 | "currentGroup.3BE40471" = "all" 14 | "last_search.110DEAF1" = "ref:Assets/Accueil/Scripts/ComportementBoutons.cs" 15 | "OpenInspectorPreview.110DEAF1" = "0" 16 | "currentGroup.110DEAF1" = "scene" 17 | } 18 | providers = { 19 | packages = { 20 | active = true 21 | priority = 90 22 | defaultAction = null 23 | } 24 | profilermarkers = { 25 | active = false 26 | priority = 100 27 | defaultAction = null 28 | } 29 | store = { 30 | active = true 31 | priority = 100 32 | defaultAction = null 33 | } 34 | log = { 35 | active = false 36 | priority = 210 37 | defaultAction = null 38 | } 39 | scene = { 40 | active = true 41 | priority = 50 42 | defaultAction = null 43 | } 44 | find = { 45 | active = true 46 | priority = 25 47 | defaultAction = null 48 | } 49 | performance = { 50 | active = false 51 | priority = 100 52 | defaultAction = null 53 | } 54 | adb = { 55 | active = false 56 | priority = 2500 57 | defaultAction = null 58 | } 59 | asset = { 60 | active = true 61 | priority = 25 62 | defaultAction = null 63 | } 64 | } 65 | objectSelectors = { 66 | } 67 | recentSearches = [ 68 | "ref:Assets/Accueil/Scripts/LightSweep.cs" 69 | "ref:Assets/Accueil/Scripts/ComportementBoutons.cs" 70 | "ref:Assets/Accueil/Scripts/CartoonTextMovement.cs" 71 | ] 72 | searchItemFavorites = [ 73 | ] 74 | savedSearchesSortOrder = 0 75 | showSavedSearchPanel = false 76 | hideTabs = false 77 | expandedQueries = [ 78 | ] 79 | queryBuilder = false 80 | ignoredProperties = "id;name;classname;imagecontentshash" 81 | helperWidgetCurrentArea = "all" 82 | disabledIndexers = "" 83 | minIndexVariations = 2 84 | findProviderIndexHelper = true --------------------------------------------------------------------------------