├── Commands ├── NPM--AddUser.bat ├── NPM--VersionMajor.bat ├── NPM--VersionMinor.bat ├── NPM--VersionPatch.bat ├── NPM--UpdateDependencies.bat ├── NPM--CopyREADME.bat ├── [!!!]--NPM--Publish.bat ├── [!]--GitHub--DraftRelease.bat └── [!!!]--GitHub--Release.bat ├── Assets ├── _PackageRoot │ ├── Runtime │ │ ├── .gitignore │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── extensions.unity.nondrawingimage.asmdef.meta │ │ │ ├── NonDrawingGraphic.cs.meta │ │ │ ├── extensions.unity.nondrawingimage.asmdef │ │ │ └── NonDrawingGraphic.cs │ ├── Samples~ │ │ └── .gitignore │ ├── Editor │ │ ├── Gizmos │ │ │ ├── .gitignore │ │ │ ├── NonDrawingGraphic.png │ │ │ └── NonDrawingGraphic.png.meta │ │ ├── Scripts │ │ │ ├── .gitignore │ │ │ ├── extensions.unity.nondrawingimage.editor.asmdef.meta │ │ │ ├── NonDrawingGraphicEditor.cs.meta │ │ │ ├── extensions.unity.nondrawingimage.editor.asmdef │ │ │ └── NonDrawingGraphicEditor.cs │ │ ├── Gizmos.meta │ │ └── Scripts.meta │ ├── Tests │ │ ├── Editor │ │ │ └── .gitignore │ │ ├── Runtime │ │ │ └── .gitignore │ │ ├── Editor.meta │ │ └── Runtime.meta │ ├── Documentation~ │ │ └── .gitignore │ ├── LICENSE.meta │ ├── README.md.meta │ ├── package.json.meta │ ├── Editor.meta │ ├── Runtime.meta │ ├── Tests.meta │ ├── package.json │ ├── LICENSE │ └── README.md └── _PackageRoot.meta ├── ProjectSettings ├── ProjectVersion.txt ├── ClusterInputManager.asset ├── PresetManager.asset ├── EditorBuildSettings.asset ├── VersionControlSettings.asset ├── TimeManager.asset ├── VFXManager.asset ├── AudioManager.asset ├── TagManager.asset ├── UnityConnectSettings.asset ├── PackageManagerSettings.asset ├── MemorySettings.asset ├── DynamicsManager.asset ├── EditorSettings.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── QualitySettings.asset └── ProjectSettings.asset ├── Packages ├── manifest.json └── packages-lock.json ├── UserSettings ├── EditorUserSettings.asset └── Layouts │ └── default-2022.dwlt ├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── .vscode └── settings.json └── .gitignore /Commands/NPM--AddUser.bat: -------------------------------------------------------------------------------- 1 | cd ..\Assets\_PackageRoot 2 | npm adduser -------------------------------------------------------------------------------- /Assets/_PackageRoot/Runtime/.gitignore: -------------------------------------------------------------------------------- 1 | # Except this file 2 | !.gitignore -------------------------------------------------------------------------------- /Assets/_PackageRoot/Samples~/.gitignore: -------------------------------------------------------------------------------- 1 | # Except this file 2 | !.gitignore -------------------------------------------------------------------------------- /Assets/_PackageRoot/Editor/Gizmos/.gitignore: -------------------------------------------------------------------------------- 1 | # Except this file 2 | !.gitignore -------------------------------------------------------------------------------- /Assets/_PackageRoot/Tests/Editor/.gitignore: -------------------------------------------------------------------------------- 1 | # Except this file 2 | !.gitignore -------------------------------------------------------------------------------- /Assets/_PackageRoot/Tests/Runtime/.gitignore: -------------------------------------------------------------------------------- 1 | # Except this file 2 | !.gitignore -------------------------------------------------------------------------------- /Assets/_PackageRoot/Documentation~/.gitignore: -------------------------------------------------------------------------------- 1 | # Except this file 2 | !.gitignore -------------------------------------------------------------------------------- /Assets/_PackageRoot/Editor/Scripts/.gitignore: -------------------------------------------------------------------------------- 1 | # Except this file 2 | !.gitignore -------------------------------------------------------------------------------- /Commands/NPM--VersionMajor.bat: -------------------------------------------------------------------------------- 1 | cd ..\Assets\_PackageRoot 2 | npm version major 3 | pause -------------------------------------------------------------------------------- /Commands/NPM--VersionMinor.bat: -------------------------------------------------------------------------------- 1 | cd ..\Assets\_PackageRoot 2 | npm version minor 3 | pause -------------------------------------------------------------------------------- /Commands/NPM--VersionPatch.bat: -------------------------------------------------------------------------------- 1 | cd ..\Assets\_PackageRoot 2 | npm version patch 3 | pause -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2022.1.23f1 2 | m_EditorVersionWithRevision: 2022.1.23f1 (9636b062134a) 3 | -------------------------------------------------------------------------------- /Commands/NPM--UpdateDependencies.bat: -------------------------------------------------------------------------------- 1 | call npm --prefix ..\Assets\_PackageRoot update 2 | del /f ..\Assets\_PackageRoot\package-lock.* 3 | pause -------------------------------------------------------------------------------- /Commands/NPM--CopyREADME.bat: -------------------------------------------------------------------------------- 1 | xcopy ..\README.md ..\Assets\_PackageRoot\README.md* /Y 2 | xcopy ..\README.md ..\Assets\_PackageRoot\Documentation~\README.md* /Y -------------------------------------------------------------------------------- /Assets/_PackageRoot/Editor/Gizmos/NonDrawingGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMurzak/Unity-NonDrawingGraphic/HEAD/Assets/_PackageRoot/Editor/Gizmos/NonDrawingGraphic.png -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba9512eb550bce145833f778ac494441 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Commands/[!!!]--NPM--Publish.bat: -------------------------------------------------------------------------------- 1 | xcopy ..\README.md ..\Assets\_PackageRoot\README.md* /Y 2 | xcopy ..\README.md ..\Assets\_PackageRoot\Documentation~\README.md* /Y 3 | cd ..\Assets\_PackageRoot 4 | npm publish 5 | pause -------------------------------------------------------------------------------- /Assets/_PackageRoot/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 676f6e63487194d459cfa6f625183587 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57c771dcf5f57994485f7922aa242190 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/_PackageRoot.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54cb718bb23225b4795140cead8c7129 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /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 | m_configObjects: {} 9 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 435110344742af04ca1fa2b02c150773 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b95d186b88c4b1d438d3f6f503a79727 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c9018de731cd3c4d878887345a519e8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/Editor/Gizmos.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2301d4480a44821478655ddba429d8d3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/Editor/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9109b0eb3297f294ca490627142ada0b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/Tests/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1867293e1da0d8643b34e49bdc4f1c6b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/Tests/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d2891b39108ca94783dc6239d26546c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/Runtime/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a06a07ffc5c10b14ba0e105b66765ad0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/Runtime/Scripts/extensions.unity.nondrawingimage.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7156d556e56b5d84998e3cd330fea48d 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/Editor/Scripts/extensions.unity.nondrawingimage.editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 662b4564743b01849a1996e2b9f12fe9 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.ide.rider": "3.0.18", 4 | "com.unity.ide.visualstudio": "2.0.17", 5 | "com.unity.ide.vscode": "1.2.5", 6 | "com.unity.ugui": "1.0.0", 7 | "com.unity.modules.ui": "1.0.0" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/Editor/Scripts/NonDrawingGraphicEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d78b58da6c74a3418c2b7de6ada13cc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/Runtime/Scripts/NonDrawingGraphic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58bbcd17f398e2d408bd20a1ea88d1c9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {fileID: 2800000, guid: 1c99031da6618664ab5c22aebda8fbe8, type: 3} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/Runtime/Scripts/extensions.unity.nondrawingimage.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "extensions.unity.nondrawingimage", 3 | "rootNamespace": "Extensions.Unity", 4 | "references": [], 5 | "includePlatforms": [], 6 | "excludePlatforms": [], 7 | "allowUnsafeCode": false, 8 | "overrideReferences": false, 9 | "precompiledReferences": [], 10 | "autoReferenced": true, 11 | "defineConstraints": [], 12 | "versionDefines": [], 13 | "noEngineReferences": false 14 | } -------------------------------------------------------------------------------- /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 | m_MaxScrubTime: 30 14 | m_CompiledVersion: 0 15 | m_RuntimeVersion: 0 16 | m_RuntimeResources: {fileID: 0} 17 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "extensions.unity.nondrawinggraphic", 3 | "displayName": "Non Drawing Graphic", 4 | "author": { "name": "Ivan Murzak", "url": "https://github.com/IvanMurzak" }, 5 | "version": "1.0.1", 6 | "unity": "2019.2", 7 | "description": "Unity UI component which doesn't have drawing event at all. But still can receive click events. More optimized to have something invisible and clickable in Unity UI.", 8 | "dependencies": { 9 | 10 | } 11 | } -------------------------------------------------------------------------------- /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_EnableOutputSuspension: 1 16 | m_SpatializerPlugin: 17 | m_AmbisonicDecoderPlugin: 18 | m_DisableAudio: 0 19 | m_VirtualizeEffects: 1 20 | m_RequestedDSPBufferSize: 0 21 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/Editor/Scripts/extensions.unity.nondrawingimage.editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "extensions.unity.nondrawingimage.editor", 3 | "rootNamespace": "Extensions.Unity", 4 | "references": [ 5 | "extensions.unity.nondrawingimage" 6 | ], 7 | "includePlatforms": [ 8 | "Editor" 9 | ], 10 | "excludePlatforms": [], 11 | "allowUnsafeCode": false, 12 | "overrideReferences": false, 13 | "precompiledReferences": [], 14 | "autoReferenced": true, 15 | "defineConstraints": [], 16 | "versionDefines": [], 17 | "noEngineReferences": false 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 | -------------------------------------------------------------------------------- /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 | vcSharedLogLevel: 9 | value: 0d5e400f0650 10 | flags: 0 11 | m_VCAutomaticAdd: 1 12 | m_VCDebugCom: 0 13 | m_VCDebugCmd: 0 14 | m_VCDebugOut: 0 15 | m_SemanticMergeMode: 2 16 | m_DesiredImportWorkerCount: 7 17 | m_StandbyImportWorkerCount: 2 18 | m_IdleImportWorkerShutdownDelay: 60000 19 | m_VCShowFailedCheckout: 1 20 | m_VCOverwriteFailedCheckoutAssets: 1 21 | m_VCProjectOverlayIcons: 1 22 | m_VCHierarchyOverlayIcons: 1 23 | m_VCOtherOverlayIcons: 1 24 | m_VCAllowAsyncUpdate: 1 25 | m_ArtifactGarbageCollection: 1 26 | -------------------------------------------------------------------------------- /Commands/[!]--GitHub--DraftRelease.bat: -------------------------------------------------------------------------------- 1 | cd ..\Assets\_PackageRoot 2 | @echo off 3 | echo ---------------------------------------------------- 4 | echo Executing "npm pkg get version" 5 | FOR /F "tokens=* USEBACKQ" %%F IN (`npm pkg get version`) DO ( 6 | SET RawVersion=%%F 7 | ) 8 | echo Version of current package is extracted: %RawVersion% 9 | SET CleanVersion=%RawVersion:~1,-1% 10 | echo Current version: %CleanVersion% 11 | 12 | git push -u origin HEAD 13 | 14 | echo ---------------------------------------------------- 15 | cd ..\..\ 16 | echo Creating GitHub release with tag=%CleanVersion% 17 | @echo on 18 | gh release create %CleanVersion% --draft --generate-notes --title %CleanVersion% 19 | gh repo view --web 20 | @echo off 21 | echo ---------------------------------------------------- 22 | 23 | pause 24 | -------------------------------------------------------------------------------- /Commands/[!!!]--GitHub--Release.bat: -------------------------------------------------------------------------------- 1 | cd ..\Assets\_PackageRoot 2 | @echo off 3 | echo ---------------------------------------------------- 4 | echo Executing "npm pkg get version" 5 | FOR /F "tokens=* USEBACKQ" %%F IN (`npm pkg get version`) DO ( 6 | SET RawVersion=%%F 7 | ) 8 | echo Version of current package is extracted: %RawVersion% 9 | SET CleanVersion=%RawVersion:~1,-1% 10 | echo Current version: %CleanVersion% 11 | 12 | git push -u origin HEAD 13 | 14 | echo ---------------------------------------------------- 15 | cd ..\..\ 16 | echo Creating GitHub release with tag=%CleanVersion% 17 | @echo on 18 | gh release create %CleanVersion% --generate-notes --title %CleanVersion% 19 | gh release view %CleanVersion% --web 20 | @echo off 21 | echo ---------------------------------------------------- 22 | 23 | pause 24 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/Runtime/Scripts/NonDrawingGraphic.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.UI; 3 | 4 | namespace Extensions.Unity 5 | { 6 | // Original reference: https://answers.unity.com/questions/1091618/ui-panel-without-image-component-as-raycast-target.html 7 | [RequireComponent(typeof(CanvasRenderer))] 8 | public class NonDrawingGraphic : Graphic 9 | { 10 | public override void SetMaterialDirty() { return; } 11 | public override void SetVerticesDirty() { return; } 12 | 13 | /// Probably not necessary since the chain of calls `Rebuild()`->`UpdateGeometry()`->`DoMeshGeneration()`->`OnPopulateMesh()` won't happen; so here really just as a fail-safe. 14 | protected override void OnPopulateMesh(VertexHelper vh) 15 | { 16 | vh.Clear(); 17 | return; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: IvanMurzak 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 12 | polar: # Replace with a single Polar username 13 | buy_me_a_coffee: # Replace with a single Buy Me a Coffee username 14 | thanks_dev: # Replace with a single thanks.dev username 15 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 16 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/Editor/Scripts/NonDrawingGraphicEditor.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEditor; 3 | using UnityEditor.UI; 4 | 5 | namespace Extensions.Unity 6 | { 7 | // Original reference: https://answers.unity.com/questions/1091618/ui-panel-without-image-component-as-raycast-target.html 8 | [CanEditMultipleObjects, CustomEditor(typeof(NonDrawingGraphic), false)] 9 | public class NonDrawingGraphicEditor : GraphicEditor 10 | { 11 | public override void OnInspectorGUI() 12 | { 13 | base.serializedObject.Update(); 14 | EditorGUI.BeginDisabledGroup(true); 15 | EditorGUILayout.PropertyField(base.m_Script, new GUILayoutOption[0]); 16 | EditorGUI.EndDisabledGroup(); 17 | // skipping AppearanceControlsGUI 18 | base.RaycastControlsGUI(); 19 | base.serializedObject.ApplyModifiedProperties(); 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Ivan Murzak 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Ivan Murzak 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.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: 13964, guid: 0000000000000000e000000000000000, type: 0} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | m_EnablePreReleasePackages: 0 16 | m_EnablePackageDependencies: 0 17 | m_AdvancedSettingsExpanded: 1 18 | m_ScopedRegistriesSettingsExpanded: 1 19 | m_SeeAllPackageVersions: 0 20 | m_DismissPreviewPackagesInUse: 0 21 | oneTimeWarningShown: 0 22 | m_Registries: 23 | - m_Id: main 24 | m_Name: 25 | m_Url: https://packages.unity.com 26 | m_Scopes: [] 27 | m_IsDefault: 1 28 | m_Capabilities: 7 29 | m_ConfigSource: 0 30 | m_UserSelectedRegistryName: 31 | m_UserAddingNewScopedRegistry: 0 32 | m_RegistryInfoDraft: 33 | m_Modified: 0 34 | m_ErrorMessage: 35 | m_UserModificationsInstanceId: -886 36 | m_OriginalInstanceId: -888 37 | m_LoadAssets: 0 38 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Non Drawing Graphic 2 | 3 | ![npm](https://img.shields.io/npm/v/extensions.unity.nondrawinggraphic) [![openupm](https://img.shields.io/npm/v/extensions.unity.nondrawinggraphic?label=openupm®istry_uri=https://package.openupm.com)](https://openupm.com/packages/extensions.unity.nondrawinggraphic/) ![License](https://img.shields.io/github/license/IvanMurzak/Unity-NonDrawingGraphic) [![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua) 4 | 5 | Unity UI component which doesn't have drawing event at all. But still can receive click events. More optimized to have something invisible and clickable in Unity UI. 6 | 7 | # Usage 8 | 9 | Add `NonDrawingGraphic` component to UI Game Object under Canvas in Unity Scene. 10 | 11 | ![image](https://user-images.githubusercontent.com/9135028/222345963-57812733-26f1-47b0-9c02-b87ce7a3e037.png) 12 | 13 | # Installation 14 | 15 | When you package is distributed, you can install it into any Unity project. 16 | 17 | - [Install OpenUPM-CLI](https://github.com/openupm/openupm-cli#installation) 18 | - Open command line in Unity project folder 19 | - Execute the command 20 | ``` 21 | openupm add extensions.unity.nondrawinggraphic 22 | ``` 23 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/README.md: -------------------------------------------------------------------------------- 1 | # Non Drawing Graphic 2 | 3 | ![npm](https://img.shields.io/npm/v/extensions.unity.nondrawinggraphic) [![openupm](https://img.shields.io/npm/v/extensions.unity.nondrawinggraphic?label=openupm®istry_uri=https://package.openupm.com)](https://openupm.com/packages/extensions.unity.nondrawinggraphic/) ![License](https://img.shields.io/github/license/IvanMurzak/Unity-NonDrawingGraphic) [![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua) 4 | 5 | Unity UI component which doesn't have drawing event at all. But still can receive click events. More optimized to have something invisible and clickable in Unity UI. 6 | 7 | # Usage 8 | 9 | Add `NonDrawingGraphic` component to UI Game Object under Canvas in Unity Scene. 10 | 11 | ![image](https://user-images.githubusercontent.com/9135028/222345963-57812733-26f1-47b0-9c02-b87ce7a3e037.png) 12 | 13 | # Installation 14 | 15 | When you package is distributed, you can install it into any Unity project. 16 | 17 | - [Install OpenUPM-CLI](https://github.com/openupm/openupm-cli#installation) 18 | - Open command line in Unity project folder 19 | - Execute the command 20 | ``` 21 | openupm add extensions.unity.nondrawinggraphic 22 | ``` 23 | -------------------------------------------------------------------------------- /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/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: 13 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_DefaultMaxDepenetrationVelocity: 10 11 | m_SleepThreshold: 0.005 12 | m_DefaultContactOffset: 0.01 13 | m_DefaultSolverIterations: 6 14 | m_DefaultSolverVelocityIterations: 1 15 | m_QueriesHitBackfaces: 0 16 | m_QueriesHitTriggers: 1 17 | m_EnableAdaptiveForce: 0 18 | m_ClothInterCollisionDistance: 0.1 19 | m_ClothInterCollisionStiffness: 0.2 20 | m_ContactsGeneration: 1 21 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 22 | m_AutoSimulation: 1 23 | m_AutoSyncTransforms: 0 24 | m_ReuseCollisionCallbacks: 0 25 | m_ClothInterCollisionSettingsToggle: 0 26 | m_ClothGravity: {x: 0, y: -9.81, z: 0} 27 | m_ContactPairsMode: 0 28 | m_BroadphaseType: 0 29 | m_WorldBounds: 30 | m_Center: {x: 0, y: 0, z: 0} 31 | m_Extent: {x: 250, y: 250, z: 250} 32 | m_WorldSubdivisions: 8 33 | m_FrictionType: 0 34 | m_EnableEnhancedDeterminism: 0 35 | m_EnableUnifiedHeightmaps: 1 36 | m_ImprovedPatchFriction: 0 37 | m_SolverType: 0 38 | m_DefaultMaxAngularSpeed: 50 39 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.exclude": 3 | { 4 | "**/.DS_Store":true, 5 | "**/.git":true, 6 | "**/.gitmodules":true, 7 | "**/*.booproj":true, 8 | "**/*.pidb":true, 9 | "**/*.suo":true, 10 | "**/*.user":true, 11 | "**/*.userprefs":true, 12 | "**/*.unityproj":true, 13 | "**/*.dll":true, 14 | "**/*.exe":true, 15 | "**/*.pdf":true, 16 | "**/*.mid":true, 17 | "**/*.midi":true, 18 | "**/*.wav":true, 19 | "**/*.gif":true, 20 | "**/*.ico":true, 21 | "**/*.jpg":true, 22 | "**/*.jpeg":true, 23 | "**/*.png":true, 24 | "**/*.psd":true, 25 | "**/*.tga":true, 26 | "**/*.tif":true, 27 | "**/*.tiff":true, 28 | "**/*.3ds":true, 29 | "**/*.3DS":true, 30 | "**/*.fbx":true, 31 | "**/*.FBX":true, 32 | "**/*.lxo":true, 33 | "**/*.LXO":true, 34 | "**/*.ma":true, 35 | "**/*.MA":true, 36 | "**/*.obj":true, 37 | "**/*.OBJ":true, 38 | "**/*.asset":true, 39 | "**/*.cubemap":true, 40 | "**/*.flare":true, 41 | "**/*.mat":true, 42 | "**/*.meta":true, 43 | "**/*.prefab":true, 44 | "**/*.unity":true, 45 | "build/":true, 46 | "Build/":true, 47 | "Library/":true, 48 | "library/":true, 49 | "obj/":true, 50 | "Obj/":true, 51 | "ProjectSettings/":true, 52 | "temp/":true, 53 | "Temp/":true 54 | } 55 | } -------------------------------------------------------------------------------- /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: 12 7 | m_SerializationMode: 2 8 | m_LineEndingsForNewScripts: 2 9 | m_DefaultBehaviorMode: 0 10 | m_PrefabRegularEnvironment: {fileID: 0} 11 | m_PrefabUIEnvironment: {fileID: 0} 12 | m_SpritePackerMode: 0 13 | m_SpritePackerCacheSize: 10 14 | m_SpritePackerPaddingPower: 1 15 | m_Bc7TextureCompressor: 0 16 | m_EtcTextureCompressorBehavior: 1 17 | m_EtcTextureFastCompressor: 1 18 | m_EtcTextureNormalCompressor: 2 19 | m_EtcTextureBestCompressor: 4 20 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;asmref;rsp;java;cpp;c;mm;m;h 21 | m_ProjectGenerationRootNamespace: 22 | m_EnableTextureStreamingInEditMode: 1 23 | m_EnableTextureStreamingInPlayMode: 1 24 | m_EnableEditorAsyncCPUTextureLoading: 0 25 | m_AsyncShaderCompilation: 1 26 | m_PrefabModeAllowAutoSave: 1 27 | m_EnterPlayModeOptionsEnabled: 0 28 | m_EnterPlayModeOptions: 7 29 | m_GameObjectNamingDigits: 1 30 | m_GameObjectNamingScheme: 0 31 | m_AssetNamingUsesSpace: 1 32 | m_UseLegacyProbeSampleCount: 0 33 | m_SerializeInlineMappingsOnOneLine: 1 34 | m_DisableCookiesInLightmapper: 0 35 | m_AssetPipelineMode: 1 36 | m_RefreshImportMode: 0 37 | m_CacheServerMode: 0 38 | m_CacheServerEndpoint: 39 | m_CacheServerNamespacePrefix: default 40 | m_CacheServerEnableDownload: 1 41 | m_CacheServerEnableUpload: 1 42 | m_CacheServerEnableAuth: 0 43 | m_CacheServerEnableTls: 0 44 | m_CacheServerValidationMode: 2 45 | m_CacheServerDownloadBatchSize: 128 46 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # This .gitignore file should be placed at the root of your Unity project directory 2 | # 3 | # Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore 4 | # 5 | /[Ll]ibrary/ 6 | /[Tt]emp/ 7 | /[Oo]bj/ 8 | /[Bb]uild/ 9 | /[Bb]uilds/ 10 | /[Ll]ogs/ 11 | /[Mm]emoryCaptures/ 12 | 13 | # Asset meta data should only be ignored when the corresponding asset is also ignored 14 | !/[Aa]ssets/**/*.meta 15 | 16 | # Uncomment this line if you wish to ignore the asset store tools plugin 17 | # /[Aa]ssets/AssetStoreTools* 18 | 19 | # Autogenerated Jetbrains Rider plugin 20 | [Aa]ssets/Plugins/Editor/JetBrains* 21 | 22 | # Visual Studio cache directory 23 | .vs/ 24 | 25 | # Gradle cache directory 26 | .gradle/ 27 | 28 | # Autogenerated VS/MD/Consulo solution and project files 29 | ExportedObj/ 30 | .consulo/ 31 | *.csproj 32 | *.unityproj 33 | *.sln 34 | *.suo 35 | *.tmp 36 | *.user 37 | *.userprefs 38 | *.pidb 39 | *.booproj 40 | *.svd 41 | *.pdb 42 | *.mdb 43 | *.opendb 44 | *.VC.db 45 | 46 | # Unity3D generated meta files 47 | *.pidb.meta 48 | *.pdb.meta 49 | *.mdb.meta 50 | 51 | # Unity3D generated file on crash reports 52 | sysinfo.txt 53 | 54 | # Builds 55 | *.apk 56 | *.unitypackage 57 | 58 | # Crashlytics generated file 59 | crashlytics-build.properties 60 | 61 | */AndroidLogcatSettings.asset 62 | /Assets/StreamingAssets 63 | 64 | # Crashlytics generated file 65 | crashlytics-build.properties 66 | 67 | # ODIN Ignore the auto-generated AOT compatibility dll. 68 | /Assets/Plugins/Sirenix/Assemblies/AOT/* 69 | /Assets/Plugins/Sirenix/Assemblies/AOT** 70 | 71 | # ODIN Ignore all unpacked demos. 72 | /Assets/Plugins/Sirenix/Demos/* 73 | 74 | # ODIN plugin 75 | /Assets/Plugins/Sirenix** 76 | -------------------------------------------------------------------------------- /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 | maxJobWorkers: 0 89 | preserveTilesOutsideBounds: 0 90 | debug: 91 | m_Flags: 0 92 | m_SettingNames: 93 | - Humanoid 94 | -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.ext.nunit": { 4 | "version": "1.0.6", 5 | "depth": 1, 6 | "source": "registry", 7 | "dependencies": {}, 8 | "url": "https://packages.unity.com" 9 | }, 10 | "com.unity.ide.rider": { 11 | "version": "3.0.18", 12 | "depth": 0, 13 | "source": "registry", 14 | "dependencies": { 15 | "com.unity.ext.nunit": "1.0.6" 16 | }, 17 | "url": "https://packages.unity.com" 18 | }, 19 | "com.unity.ide.visualstudio": { 20 | "version": "2.0.17", 21 | "depth": 0, 22 | "source": "registry", 23 | "dependencies": { 24 | "com.unity.test-framework": "1.1.9" 25 | }, 26 | "url": "https://packages.unity.com" 27 | }, 28 | "com.unity.ide.vscode": { 29 | "version": "1.2.5", 30 | "depth": 0, 31 | "source": "registry", 32 | "dependencies": {}, 33 | "url": "https://packages.unity.com" 34 | }, 35 | "com.unity.test-framework": { 36 | "version": "1.1.33", 37 | "depth": 1, 38 | "source": "registry", 39 | "dependencies": { 40 | "com.unity.ext.nunit": "1.0.6", 41 | "com.unity.modules.imgui": "1.0.0", 42 | "com.unity.modules.jsonserialize": "1.0.0" 43 | }, 44 | "url": "https://packages.unity.com" 45 | }, 46 | "com.unity.ugui": { 47 | "version": "1.0.0", 48 | "depth": 0, 49 | "source": "builtin", 50 | "dependencies": { 51 | "com.unity.modules.ui": "1.0.0", 52 | "com.unity.modules.imgui": "1.0.0" 53 | } 54 | }, 55 | "com.unity.modules.imgui": { 56 | "version": "1.0.0", 57 | "depth": 1, 58 | "source": "builtin", 59 | "dependencies": {} 60 | }, 61 | "com.unity.modules.jsonserialize": { 62 | "version": "1.0.0", 63 | "depth": 2, 64 | "source": "builtin", 65 | "dependencies": {} 66 | }, 67 | "com.unity.modules.ui": { 68 | "version": "1.0.0", 69 | "depth": 0, 70 | "source": "builtin", 71 | "dependencies": {} 72 | } 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /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: 5 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_SimulationMode: 0 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/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: 14 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_LegacyDeferred: 17 | m_Mode: 1 18 | m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} 19 | m_DepthNormals: 20 | m_Mode: 1 21 | m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} 22 | m_MotionVectors: 23 | m_Mode: 1 24 | m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} 25 | m_LightHalo: 26 | m_Mode: 1 27 | m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} 28 | m_LensFlare: 29 | m_Mode: 1 30 | m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} 31 | m_VideoShadersIncludeMode: 2 32 | m_AlwaysIncludedShaders: 33 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} 34 | - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} 35 | - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} 36 | - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} 37 | - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} 38 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} 39 | - {fileID: 10783, guid: 0000000000000000f000000000000000, type: 0} 40 | m_PreloadedShaders: [] 41 | m_PreloadShadersBatchTimeLimit: -1 42 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} 43 | m_CustomRenderPipeline: {fileID: 0} 44 | m_TransparencySortMode: 0 45 | m_TransparencySortAxis: {x: 0, y: 0, z: 1} 46 | m_DefaultRenderingPath: 1 47 | m_DefaultMobileRenderingPath: 1 48 | m_TierSettings: [] 49 | m_LightmapStripping: 0 50 | m_FogStripping: 0 51 | m_InstancingStripping: 0 52 | m_BrgStripping: 0 53 | m_LightmapKeepPlain: 1 54 | m_LightmapKeepDirCombined: 1 55 | m_LightmapKeepDynamicPlain: 1 56 | m_LightmapKeepDynamicDirCombined: 1 57 | m_LightmapKeepShadowMask: 1 58 | m_LightmapKeepSubtractive: 1 59 | m_FogKeepLinear: 1 60 | m_FogKeepExp: 1 61 | m_FogKeepExp2: 1 62 | m_AlbedoSwatchInfos: [] 63 | m_LightsUseLinearIntensity: 0 64 | m_LightsUseColorTemperature: 0 65 | m_DefaultRenderingLayerMask: 1 66 | m_LogWhenShaderIsCompiled: 0 67 | m_SRPDefaultSettings: {} 68 | -------------------------------------------------------------------------------- /Assets/_PackageRoot/Editor/Gizmos/NonDrawingGraphic.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c99031da6618664ab5c22aebda8fbe8 3 | TextureImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 12 7 | mipmaps: 8 | mipMapMode: 0 9 | enableMipMap: 1 10 | sRGBTexture: 1 11 | linearTexture: 0 12 | fadeOut: 0 13 | borderMipMap: 0 14 | mipMapsPreserveCoverage: 0 15 | alphaTestReferenceValue: 0.5 16 | mipMapFadeDistanceStart: 1 17 | mipMapFadeDistanceEnd: 3 18 | bumpmap: 19 | convertToNormalMap: 0 20 | externalNormalMap: 0 21 | heightScale: 0.25 22 | normalMapFilter: 0 23 | flipGreenChannel: 0 24 | isReadable: 0 25 | streamingMipmaps: 0 26 | streamingMipmapsPriority: 0 27 | vTOnly: 0 28 | ignoreMasterTextureLimit: 0 29 | grayScaleToAlpha: 0 30 | generateCubemap: 6 31 | cubemapConvolution: 0 32 | seamlessCubemap: 0 33 | textureFormat: 1 34 | maxTextureSize: 2048 35 | textureSettings: 36 | serializedVersion: 2 37 | filterMode: 1 38 | aniso: 1 39 | mipBias: 0 40 | wrapU: 0 41 | wrapV: 0 42 | wrapW: 0 43 | nPOTScale: 1 44 | lightmap: 0 45 | compressionQuality: 50 46 | spriteMode: 0 47 | spriteExtrude: 1 48 | spriteMeshType: 1 49 | alignment: 0 50 | spritePivot: {x: 0.5, y: 0.5} 51 | spritePixelsToUnits: 100 52 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 53 | spriteGenerateFallbackPhysicsShape: 1 54 | alphaUsage: 1 55 | alphaIsTransparency: 0 56 | spriteTessellationDetail: -1 57 | textureType: 0 58 | textureShape: 1 59 | singleChannelComponent: 0 60 | flipbookRows: 1 61 | flipbookColumns: 1 62 | maxTextureSizeSet: 0 63 | compressionQualitySet: 0 64 | textureFormatSet: 0 65 | ignorePngGamma: 0 66 | applyGammaDecoding: 0 67 | swizzle: 50462976 68 | cookieLightType: 0 69 | platformSettings: 70 | - serializedVersion: 3 71 | buildTarget: DefaultTexturePlatform 72 | maxTextureSize: 2048 73 | resizeAlgorithm: 0 74 | textureFormat: -1 75 | textureCompression: 1 76 | compressionQuality: 50 77 | crunchedCompression: 0 78 | allowsAlphaSplitting: 0 79 | overridden: 0 80 | androidETC2FallbackOverride: 0 81 | forceMaximumCompressionQuality_BC6H_BC7: 0 82 | - serializedVersion: 3 83 | buildTarget: Standalone 84 | maxTextureSize: 2048 85 | resizeAlgorithm: 0 86 | textureFormat: -1 87 | textureCompression: 1 88 | compressionQuality: 50 89 | crunchedCompression: 0 90 | allowsAlphaSplitting: 0 91 | overridden: 0 92 | androidETC2FallbackOverride: 0 93 | forceMaximumCompressionQuality_BC6H_BC7: 0 94 | - serializedVersion: 3 95 | buildTarget: Server 96 | maxTextureSize: 2048 97 | resizeAlgorithm: 0 98 | textureFormat: -1 99 | textureCompression: 1 100 | compressionQuality: 50 101 | crunchedCompression: 0 102 | allowsAlphaSplitting: 0 103 | overridden: 0 104 | androidETC2FallbackOverride: 0 105 | forceMaximumCompressionQuality_BC6H_BC7: 0 106 | - serializedVersion: 3 107 | buildTarget: WebGL 108 | maxTextureSize: 2048 109 | resizeAlgorithm: 0 110 | textureFormat: -1 111 | textureCompression: 1 112 | compressionQuality: 50 113 | crunchedCompression: 0 114 | allowsAlphaSplitting: 0 115 | overridden: 0 116 | androidETC2FallbackOverride: 0 117 | forceMaximumCompressionQuality_BC6H_BC7: 0 118 | spriteSheet: 119 | serializedVersion: 2 120 | sprites: [] 121 | outline: [] 122 | physicsShape: [] 123 | bones: [] 124 | spriteID: 125 | internalID: 0 126 | vertices: [] 127 | indices: 128 | edges: [] 129 | weights: [] 130 | secondaryTextures: [] 131 | nameFileIdTable: {} 132 | spritePackingTag: 133 | pSDRemoveMatte: 0 134 | userData: 135 | assetBundleName: 136 | assetBundleVariant: 137 | -------------------------------------------------------------------------------- /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 | m_UsePhysicalKeys: 1 297 | -------------------------------------------------------------------------------- /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: 2 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 | textureQuality: 1 23 | anisotropicTextures: 0 24 | antiAliasing: 0 25 | softParticles: 0 26 | softVegetation: 0 27 | realtimeReflectionProbes: 0 28 | billboardsFaceCameraPosition: 0 29 | vSyncCount: 0 30 | lodBias: 0.3 31 | maximumLODLevel: 0 32 | streamingMipmapsActive: 0 33 | streamingMipmapsAddAllCameras: 1 34 | streamingMipmapsMemoryBudget: 512 35 | streamingMipmapsRenderersPerFrame: 512 36 | streamingMipmapsMaxLevelReduction: 2 37 | streamingMipmapsMaxFileIORequests: 1024 38 | particleRaycastBudget: 4 39 | asyncUploadTimeSlice: 2 40 | asyncUploadBufferSize: 16 41 | asyncUploadPersistentBuffer: 1 42 | resolutionScalingFixedDPIFactor: 1 43 | customRenderPipeline: {fileID: 0} 44 | excludedTargetPlatforms: [] 45 | - serializedVersion: 2 46 | name: Low 47 | pixelLightCount: 0 48 | shadows: 0 49 | shadowResolution: 0 50 | shadowProjection: 1 51 | shadowCascades: 1 52 | shadowDistance: 20 53 | shadowNearPlaneOffset: 3 54 | shadowCascade2Split: 0.33333334 55 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 56 | shadowmaskMode: 0 57 | skinWeights: 2 58 | textureQuality: 0 59 | anisotropicTextures: 0 60 | antiAliasing: 0 61 | softParticles: 0 62 | softVegetation: 0 63 | realtimeReflectionProbes: 0 64 | billboardsFaceCameraPosition: 0 65 | vSyncCount: 0 66 | lodBias: 0.4 67 | maximumLODLevel: 0 68 | streamingMipmapsActive: 0 69 | streamingMipmapsAddAllCameras: 1 70 | streamingMipmapsMemoryBudget: 512 71 | streamingMipmapsRenderersPerFrame: 512 72 | streamingMipmapsMaxLevelReduction: 2 73 | streamingMipmapsMaxFileIORequests: 1024 74 | particleRaycastBudget: 16 75 | asyncUploadTimeSlice: 2 76 | asyncUploadBufferSize: 16 77 | asyncUploadPersistentBuffer: 1 78 | resolutionScalingFixedDPIFactor: 1 79 | customRenderPipeline: {fileID: 0} 80 | excludedTargetPlatforms: [] 81 | - serializedVersion: 2 82 | name: Medium 83 | pixelLightCount: 1 84 | shadows: 1 85 | shadowResolution: 0 86 | shadowProjection: 1 87 | shadowCascades: 1 88 | shadowDistance: 20 89 | shadowNearPlaneOffset: 3 90 | shadowCascade2Split: 0.33333334 91 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 92 | shadowmaskMode: 0 93 | skinWeights: 2 94 | textureQuality: 0 95 | anisotropicTextures: 1 96 | antiAliasing: 0 97 | softParticles: 0 98 | softVegetation: 0 99 | realtimeReflectionProbes: 0 100 | billboardsFaceCameraPosition: 0 101 | vSyncCount: 1 102 | lodBias: 0.7 103 | maximumLODLevel: 0 104 | streamingMipmapsActive: 0 105 | streamingMipmapsAddAllCameras: 1 106 | streamingMipmapsMemoryBudget: 512 107 | streamingMipmapsRenderersPerFrame: 512 108 | streamingMipmapsMaxLevelReduction: 2 109 | streamingMipmapsMaxFileIORequests: 1024 110 | particleRaycastBudget: 64 111 | asyncUploadTimeSlice: 2 112 | asyncUploadBufferSize: 16 113 | asyncUploadPersistentBuffer: 1 114 | resolutionScalingFixedDPIFactor: 1 115 | customRenderPipeline: {fileID: 0} 116 | excludedTargetPlatforms: [] 117 | - serializedVersion: 2 118 | name: High 119 | pixelLightCount: 2 120 | shadows: 2 121 | shadowResolution: 1 122 | shadowProjection: 1 123 | shadowCascades: 2 124 | shadowDistance: 40 125 | shadowNearPlaneOffset: 3 126 | shadowCascade2Split: 0.33333334 127 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 128 | shadowmaskMode: 1 129 | skinWeights: 2 130 | textureQuality: 0 131 | anisotropicTextures: 1 132 | antiAliasing: 0 133 | softParticles: 0 134 | softVegetation: 1 135 | realtimeReflectionProbes: 1 136 | billboardsFaceCameraPosition: 1 137 | vSyncCount: 1 138 | lodBias: 1 139 | maximumLODLevel: 0 140 | streamingMipmapsActive: 0 141 | streamingMipmapsAddAllCameras: 1 142 | streamingMipmapsMemoryBudget: 512 143 | streamingMipmapsRenderersPerFrame: 512 144 | streamingMipmapsMaxLevelReduction: 2 145 | streamingMipmapsMaxFileIORequests: 1024 146 | particleRaycastBudget: 256 147 | asyncUploadTimeSlice: 2 148 | asyncUploadBufferSize: 16 149 | asyncUploadPersistentBuffer: 1 150 | resolutionScalingFixedDPIFactor: 1 151 | customRenderPipeline: {fileID: 0} 152 | excludedTargetPlatforms: [] 153 | - serializedVersion: 2 154 | name: Very High 155 | pixelLightCount: 3 156 | shadows: 2 157 | shadowResolution: 2 158 | shadowProjection: 1 159 | shadowCascades: 2 160 | shadowDistance: 70 161 | shadowNearPlaneOffset: 3 162 | shadowCascade2Split: 0.33333334 163 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 164 | shadowmaskMode: 1 165 | skinWeights: 4 166 | textureQuality: 0 167 | anisotropicTextures: 2 168 | antiAliasing: 2 169 | softParticles: 1 170 | softVegetation: 1 171 | realtimeReflectionProbes: 1 172 | billboardsFaceCameraPosition: 1 173 | vSyncCount: 1 174 | lodBias: 1.5 175 | maximumLODLevel: 0 176 | streamingMipmapsActive: 0 177 | streamingMipmapsAddAllCameras: 1 178 | streamingMipmapsMemoryBudget: 512 179 | streamingMipmapsRenderersPerFrame: 512 180 | streamingMipmapsMaxLevelReduction: 2 181 | streamingMipmapsMaxFileIORequests: 1024 182 | particleRaycastBudget: 1024 183 | asyncUploadTimeSlice: 2 184 | asyncUploadBufferSize: 16 185 | asyncUploadPersistentBuffer: 1 186 | resolutionScalingFixedDPIFactor: 1 187 | customRenderPipeline: {fileID: 0} 188 | excludedTargetPlatforms: [] 189 | - serializedVersion: 2 190 | name: Ultra 191 | pixelLightCount: 4 192 | shadows: 2 193 | shadowResolution: 2 194 | shadowProjection: 1 195 | shadowCascades: 4 196 | shadowDistance: 150 197 | shadowNearPlaneOffset: 3 198 | shadowCascade2Split: 0.33333334 199 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 200 | shadowmaskMode: 1 201 | skinWeights: 255 202 | textureQuality: 0 203 | anisotropicTextures: 2 204 | antiAliasing: 2 205 | softParticles: 1 206 | softVegetation: 1 207 | realtimeReflectionProbes: 1 208 | billboardsFaceCameraPosition: 1 209 | vSyncCount: 1 210 | lodBias: 2 211 | maximumLODLevel: 0 212 | streamingMipmapsActive: 0 213 | streamingMipmapsAddAllCameras: 1 214 | streamingMipmapsMemoryBudget: 512 215 | streamingMipmapsRenderersPerFrame: 512 216 | streamingMipmapsMaxLevelReduction: 2 217 | streamingMipmapsMaxFileIORequests: 1024 218 | particleRaycastBudget: 4096 219 | asyncUploadTimeSlice: 2 220 | asyncUploadBufferSize: 16 221 | asyncUploadPersistentBuffer: 1 222 | resolutionScalingFixedDPIFactor: 1 223 | customRenderPipeline: {fileID: 0} 224 | excludedTargetPlatforms: [] 225 | m_PerPlatformDefaultQuality: 226 | Android: 2 227 | EmbeddedLinux: 5 228 | GameCoreScarlett: 5 229 | GameCoreXboxOne: 5 230 | LinuxHeadlessSimulation: 5 231 | Lumin: 5 232 | Nintendo Switch: 5 233 | PS4: 5 234 | PS5: 5 235 | QNX: 5 236 | Server: 5 237 | Stadia: 5 238 | Standalone: 5 239 | WebGL: 3 240 | Windows Store Apps: 5 241 | XboxOne: 5 242 | iPhone: 2 243 | tvOS: 2 244 | -------------------------------------------------------------------------------- /UserSettings/Layouts/default-2022.dwlt: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 52 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_GameObject: {fileID: 0} 9 | m_Enabled: 1 10 | m_EditorHideFlags: 1 11 | m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0} 12 | m_Name: 13 | m_EditorClassIdentifier: 14 | m_PixelRect: 15 | serializedVersion: 2 16 | x: 0 17 | y: 45 18 | width: 2560 19 | height: 1391 20 | m_ShowMode: 4 21 | m_Title: 22 | m_RootView: {fileID: 6} 23 | m_MinSize: {x: 950, y: 300} 24 | m_MaxSize: {x: 10000, y: 10000} 25 | --- !u!114 &2 26 | MonoBehaviour: 27 | m_ObjectHideFlags: 52 28 | m_PrefabParentObject: {fileID: 0} 29 | m_PrefabInternal: {fileID: 0} 30 | m_GameObject: {fileID: 0} 31 | m_Enabled: 1 32 | m_EditorHideFlags: 1 33 | m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} 34 | m_Name: 35 | m_EditorClassIdentifier: 36 | m_Children: 37 | - {fileID: 9} 38 | - {fileID: 3} 39 | m_Position: 40 | serializedVersion: 2 41 | x: 0 42 | y: 30 43 | width: 2560 44 | height: 1341 45 | m_MinSize: {x: 683, y: 492} 46 | m_MaxSize: {x: 14004, y: 14042} 47 | vertical: 0 48 | controlID: 615 49 | --- !u!114 &3 50 | MonoBehaviour: 51 | m_ObjectHideFlags: 52 52 | m_PrefabParentObject: {fileID: 0} 53 | m_PrefabInternal: {fileID: 0} 54 | m_GameObject: {fileID: 0} 55 | m_Enabled: 1 56 | m_EditorHideFlags: 1 57 | m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} 58 | m_Name: 59 | m_EditorClassIdentifier: 60 | m_Children: [] 61 | m_Position: 62 | serializedVersion: 2 63 | x: 2041 64 | y: 0 65 | width: 519 66 | height: 1341 67 | m_MinSize: {x: 277, y: 71} 68 | m_MaxSize: {x: 4002, y: 4021} 69 | m_ActualView: {fileID: 14} 70 | m_Panes: 71 | - {fileID: 14} 72 | m_Selected: 0 73 | m_LastSelected: 0 74 | --- !u!114 &4 75 | MonoBehaviour: 76 | m_ObjectHideFlags: 52 77 | m_PrefabParentObject: {fileID: 0} 78 | m_PrefabInternal: {fileID: 0} 79 | m_GameObject: {fileID: 0} 80 | m_Enabled: 1 81 | m_EditorHideFlags: 1 82 | m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} 83 | m_Name: 84 | m_EditorClassIdentifier: 85 | m_Children: [] 86 | m_Position: 87 | serializedVersion: 2 88 | x: 0 89 | y: 0 90 | width: 505 91 | height: 811 92 | m_MinSize: {x: 202, y: 221} 93 | m_MaxSize: {x: 4002, y: 4021} 94 | m_ActualView: {fileID: 15} 95 | m_Panes: 96 | - {fileID: 15} 97 | m_Selected: 0 98 | m_LastSelected: 0 99 | --- !u!114 &5 100 | MonoBehaviour: 101 | m_ObjectHideFlags: 52 102 | m_PrefabParentObject: {fileID: 0} 103 | m_PrefabInternal: {fileID: 0} 104 | m_GameObject: {fileID: 0} 105 | m_Enabled: 1 106 | m_EditorHideFlags: 1 107 | m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} 108 | m_Name: 109 | m_EditorClassIdentifier: 110 | m_Children: [] 111 | m_Position: 112 | serializedVersion: 2 113 | x: 0 114 | y: 811 115 | width: 2041 116 | height: 530 117 | m_MinSize: {x: 232, y: 271} 118 | m_MaxSize: {x: 10002, y: 10021} 119 | m_ActualView: {fileID: 13} 120 | m_Panes: 121 | - {fileID: 13} 122 | - {fileID: 18} 123 | m_Selected: 0 124 | m_LastSelected: 0 125 | --- !u!114 &6 126 | MonoBehaviour: 127 | m_ObjectHideFlags: 52 128 | m_PrefabParentObject: {fileID: 0} 129 | m_PrefabInternal: {fileID: 0} 130 | m_GameObject: {fileID: 0} 131 | m_Enabled: 1 132 | m_EditorHideFlags: 1 133 | m_Script: {fileID: 12008, guid: 0000000000000000e000000000000000, type: 0} 134 | m_Name: 135 | m_EditorClassIdentifier: 136 | m_Children: 137 | - {fileID: 7} 138 | - {fileID: 2} 139 | - {fileID: 8} 140 | m_Position: 141 | serializedVersion: 2 142 | x: 0 143 | y: 0 144 | width: 2560 145 | height: 1391 146 | m_MinSize: {x: 950, y: 300} 147 | m_MaxSize: {x: 10000, y: 10000} 148 | --- !u!114 &7 149 | MonoBehaviour: 150 | m_ObjectHideFlags: 52 151 | m_PrefabParentObject: {fileID: 0} 152 | m_PrefabInternal: {fileID: 0} 153 | m_GameObject: {fileID: 0} 154 | m_Enabled: 1 155 | m_EditorHideFlags: 1 156 | m_Script: {fileID: 12011, guid: 0000000000000000e000000000000000, type: 0} 157 | m_Name: 158 | m_EditorClassIdentifier: 159 | m_Children: [] 160 | m_Position: 161 | serializedVersion: 2 162 | x: 0 163 | y: 0 164 | width: 2560 165 | height: 30 166 | m_MinSize: {x: 0, y: 0} 167 | m_MaxSize: {x: 0, y: 0} 168 | m_LastLoadedLayoutName: Default 169 | --- !u!114 &8 170 | MonoBehaviour: 171 | m_ObjectHideFlags: 52 172 | m_PrefabParentObject: {fileID: 0} 173 | m_PrefabInternal: {fileID: 0} 174 | m_GameObject: {fileID: 0} 175 | m_Enabled: 1 176 | m_EditorHideFlags: 1 177 | m_Script: {fileID: 12042, guid: 0000000000000000e000000000000000, type: 0} 178 | m_Name: 179 | m_EditorClassIdentifier: 180 | m_Children: [] 181 | m_Position: 182 | serializedVersion: 2 183 | x: 0 184 | y: 1371 185 | width: 2560 186 | height: 20 187 | m_MinSize: {x: 0, y: 0} 188 | m_MaxSize: {x: 0, y: 0} 189 | --- !u!114 &9 190 | MonoBehaviour: 191 | m_ObjectHideFlags: 52 192 | m_PrefabParentObject: {fileID: 0} 193 | m_PrefabInternal: {fileID: 0} 194 | m_GameObject: {fileID: 0} 195 | m_Enabled: 1 196 | m_EditorHideFlags: 1 197 | m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} 198 | m_Name: 199 | m_EditorClassIdentifier: 200 | m_Children: 201 | - {fileID: 10} 202 | - {fileID: 5} 203 | m_Position: 204 | serializedVersion: 2 205 | x: 0 206 | y: 0 207 | width: 2041 208 | height: 1341 209 | m_MinSize: {x: 406, y: 492} 210 | m_MaxSize: {x: 10002, y: 14042} 211 | vertical: 1 212 | controlID: 547 213 | --- !u!114 &10 214 | MonoBehaviour: 215 | m_ObjectHideFlags: 52 216 | m_PrefabParentObject: {fileID: 0} 217 | m_PrefabInternal: {fileID: 0} 218 | m_GameObject: {fileID: 0} 219 | m_Enabled: 1 220 | m_EditorHideFlags: 1 221 | m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} 222 | m_Name: 223 | m_EditorClassIdentifier: 224 | m_Children: 225 | - {fileID: 4} 226 | - {fileID: 11} 227 | m_Position: 228 | serializedVersion: 2 229 | x: 0 230 | y: 0 231 | width: 2041 232 | height: 811 233 | m_MinSize: {x: 406, y: 221} 234 | m_MaxSize: {x: 8006, y: 4021} 235 | vertical: 0 236 | controlID: 548 237 | --- !u!114 &11 238 | MonoBehaviour: 239 | m_ObjectHideFlags: 52 240 | m_PrefabParentObject: {fileID: 0} 241 | m_PrefabInternal: {fileID: 0} 242 | m_GameObject: {fileID: 0} 243 | m_Enabled: 1 244 | m_EditorHideFlags: 1 245 | m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} 246 | m_Name: 247 | m_EditorClassIdentifier: 248 | m_Children: [] 249 | m_Position: 250 | serializedVersion: 2 251 | x: 505 252 | y: 0 253 | width: 1536 254 | height: 811 255 | m_MinSize: {x: 204, y: 221} 256 | m_MaxSize: {x: 4004, y: 4021} 257 | m_ActualView: {fileID: 16} 258 | m_Panes: 259 | - {fileID: 16} 260 | - {fileID: 17} 261 | - {fileID: 12} 262 | m_Selected: 0 263 | m_LastSelected: 1 264 | --- !u!114 &12 265 | MonoBehaviour: 266 | m_ObjectHideFlags: 52 267 | m_PrefabParentObject: {fileID: 0} 268 | m_PrefabInternal: {fileID: 0} 269 | m_GameObject: {fileID: 0} 270 | m_Enabled: 1 271 | m_EditorHideFlags: 1 272 | m_Script: {fileID: 12111, guid: 0000000000000000e000000000000000, type: 0} 273 | m_Name: 274 | m_EditorClassIdentifier: 275 | m_AutoRepaintOnSceneChange: 0 276 | m_MinSize: {x: 400, y: 100} 277 | m_MaxSize: {x: 2048, y: 2048} 278 | m_TitleContent: 279 | m_Text: Asset Store 280 | m_Image: {fileID: 357073275683767465, guid: 0000000000000000d000000000000000, 281 | type: 0} 282 | m_Tooltip: 283 | m_DepthBufferBits: 0 284 | m_Pos: 285 | serializedVersion: 2 286 | x: 468 287 | y: 181 288 | width: 973 289 | height: 501 290 | --- !u!114 &13 291 | MonoBehaviour: 292 | m_ObjectHideFlags: 52 293 | m_PrefabParentObject: {fileID: 0} 294 | m_PrefabInternal: {fileID: 0} 295 | m_GameObject: {fileID: 0} 296 | m_Enabled: 1 297 | m_EditorHideFlags: 1 298 | m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0} 299 | m_Name: 300 | m_EditorClassIdentifier: 301 | m_AutoRepaintOnSceneChange: 0 302 | m_MinSize: {x: 230, y: 250} 303 | m_MaxSize: {x: 10000, y: 10000} 304 | m_TitleContent: 305 | m_Text: Project 306 | m_Image: {fileID: -7501376956915960154, guid: 0000000000000000d000000000000000, 307 | type: 0} 308 | m_Tooltip: 309 | m_DepthBufferBits: 0 310 | m_Pos: 311 | serializedVersion: 2 312 | x: 0 313 | y: 905 314 | width: 2039 315 | height: 509 316 | m_SearchFilter: 317 | m_NameFilter: 318 | m_ClassNames: [] 319 | m_AssetLabels: [] 320 | m_AssetBundleNames: [] 321 | m_VersionControlStates: [] 322 | m_ReferencingInstanceIDs: 323 | m_ScenePaths: [] 324 | m_ShowAllHits: 0 325 | m_SearchArea: 0 326 | m_Folders: 327 | - Assets 328 | m_ViewMode: 1 329 | m_StartGridSize: 64 330 | m_LastFolders: 331 | - Assets 332 | m_LastFoldersGridSize: -1 333 | m_LastProjectPath: /Users/danielbrauer/Unity Projects/New Unity Project 20 334 | m_IsLocked: 0 335 | m_FolderTreeState: 336 | scrollPos: {x: 0, y: 0} 337 | m_SelectedIDs: b0230000 338 | m_LastClickedID: 9136 339 | m_ExpandedIDs: 00000000b023000000ca9a3bffffff7f 340 | m_RenameOverlay: 341 | m_UserAcceptedRename: 0 342 | m_Name: 343 | m_OriginalName: 344 | m_EditFieldRect: 345 | serializedVersion: 2 346 | x: 0 347 | y: 0 348 | width: 0 349 | height: 0 350 | m_UserData: 0 351 | m_IsWaitingForDelay: 0 352 | m_IsRenaming: 0 353 | m_OriginalEventType: 11 354 | m_IsRenamingFilename: 1 355 | m_ClientGUIView: {fileID: 0} 356 | m_CreateAssetUtility: 357 | m_EndAction: {fileID: 0} 358 | m_InstanceID: 0 359 | m_Path: 360 | m_Icon: {fileID: 0} 361 | m_ResourceFile: 362 | m_SearchString: 363 | m_ColumnWidths: [] 364 | m_AssetTreeState: 365 | scrollPos: {x: 0, y: 0} 366 | m_SelectedIDs: 367 | m_LastClickedID: 0 368 | m_ExpandedIDs: 00000000b023000000ca9a3bffffff7f 369 | m_RenameOverlay: 370 | m_UserAcceptedRename: 0 371 | m_Name: 372 | m_OriginalName: 373 | m_EditFieldRect: 374 | serializedVersion: 2 375 | x: 0 376 | y: 0 377 | width: 0 378 | height: 0 379 | m_UserData: 0 380 | m_IsWaitingForDelay: 0 381 | m_IsRenaming: 0 382 | m_OriginalEventType: 11 383 | m_IsRenamingFilename: 1 384 | m_ClientGUIView: {fileID: 0} 385 | m_CreateAssetUtility: 386 | m_EndAction: {fileID: 0} 387 | m_InstanceID: 0 388 | m_Path: 389 | m_Icon: {fileID: 0} 390 | m_ResourceFile: 391 | m_SearchString: 392 | m_ColumnWidths: [] 393 | m_ListAreaState: 394 | m_SelectedInstanceIDs: 395 | m_LastClickedInstanceID: 0 396 | m_HadKeyboardFocusLastEvent: 0 397 | m_ExpandedInstanceIDs: c6230000 398 | m_RenameOverlay: 399 | m_UserAcceptedRename: 0 400 | m_Name: 401 | m_OriginalName: 402 | m_EditFieldRect: 403 | serializedVersion: 2 404 | x: 0 405 | y: 0 406 | width: 0 407 | height: 0 408 | m_UserData: 0 409 | m_IsWaitingForDelay: 0 410 | m_IsRenaming: 0 411 | m_OriginalEventType: 11 412 | m_IsRenamingFilename: 1 413 | m_ClientGUIView: {fileID: 0} 414 | m_CreateAssetUtility: 415 | m_EndAction: {fileID: 0} 416 | m_InstanceID: 0 417 | m_Path: 418 | m_Icon: {fileID: 0} 419 | m_ResourceFile: 420 | m_NewAssetIndexInList: -1 421 | m_ScrollPosition: {x: 0, y: 0} 422 | m_GridSize: 64 423 | m_DirectoriesAreaWidth: 115 424 | --- !u!114 &14 425 | MonoBehaviour: 426 | m_ObjectHideFlags: 52 427 | m_PrefabParentObject: {fileID: 0} 428 | m_PrefabInternal: {fileID: 0} 429 | m_GameObject: {fileID: 0} 430 | m_Enabled: 1 431 | m_EditorHideFlags: 1 432 | m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0} 433 | m_Name: 434 | m_EditorClassIdentifier: 435 | m_AutoRepaintOnSceneChange: 0 436 | m_MinSize: {x: 275, y: 50} 437 | m_MaxSize: {x: 4000, y: 4000} 438 | m_TitleContent: 439 | m_Text: Inspector 440 | m_Image: {fileID: -6905738622615590433, guid: 0000000000000000d000000000000000, 441 | type: 0} 442 | m_Tooltip: 443 | m_DepthBufferBits: 0 444 | m_Pos: 445 | serializedVersion: 2 446 | x: 2043 447 | y: 94 448 | width: 517 449 | height: 1320 450 | m_ScrollPosition: {x: 0, y: 0} 451 | m_InspectorMode: 0 452 | m_PreviewResizer: 453 | m_CachedPref: 160 454 | m_ControlHash: -371814159 455 | m_PrefName: Preview_InspectorPreview 456 | m_PreviewWindow: {fileID: 0} 457 | --- !u!114 &15 458 | MonoBehaviour: 459 | m_ObjectHideFlags: 52 460 | m_PrefabParentObject: {fileID: 0} 461 | m_PrefabInternal: {fileID: 0} 462 | m_GameObject: {fileID: 0} 463 | m_Enabled: 1 464 | m_EditorHideFlags: 1 465 | m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0} 466 | m_Name: 467 | m_EditorClassIdentifier: 468 | m_AutoRepaintOnSceneChange: 0 469 | m_MinSize: {x: 200, y: 200} 470 | m_MaxSize: {x: 4000, y: 4000} 471 | m_TitleContent: 472 | m_Text: Hierarchy 473 | m_Image: {fileID: -590624980919486359, guid: 0000000000000000d000000000000000, 474 | type: 0} 475 | m_Tooltip: 476 | m_DepthBufferBits: 0 477 | m_Pos: 478 | serializedVersion: 2 479 | x: 0 480 | y: 94 481 | width: 503 482 | height: 790 483 | m_TreeViewState: 484 | scrollPos: {x: 0, y: 0} 485 | m_SelectedIDs: 486 | m_LastClickedID: 0 487 | m_ExpandedIDs: 00000000 488 | m_RenameOverlay: 489 | m_UserAcceptedRename: 0 490 | m_Name: 491 | m_OriginalName: 492 | m_EditFieldRect: 493 | serializedVersion: 2 494 | x: 0 495 | y: 0 496 | width: 0 497 | height: 0 498 | m_UserData: 0 499 | m_IsWaitingForDelay: 0 500 | m_IsRenaming: 0 501 | m_OriginalEventType: 11 502 | m_IsRenamingFilename: 0 503 | m_ClientGUIView: {fileID: 0} 504 | m_CreateAssetUtility: 505 | m_EndAction: {fileID: 0} 506 | m_InstanceID: 0 507 | m_Path: 508 | m_Icon: {fileID: 0} 509 | m_ResourceFile: 510 | m_SearchString: 511 | m_ColumnWidths: [] 512 | m_ExpandedScenes: [] 513 | m_CurrenRootInstanceID: 0 514 | m_Locked: 0 515 | m_CurrentSortingName: TransformSorting 516 | --- !u!114 &16 517 | MonoBehaviour: 518 | m_ObjectHideFlags: 52 519 | m_PrefabParentObject: {fileID: 0} 520 | m_PrefabInternal: {fileID: 0} 521 | m_GameObject: {fileID: 0} 522 | m_Enabled: 1 523 | m_EditorHideFlags: 1 524 | m_Script: {fileID: 12013, guid: 0000000000000000e000000000000000, type: 0} 525 | m_Name: 526 | m_EditorClassIdentifier: 527 | m_AutoRepaintOnSceneChange: 1 528 | m_MinSize: {x: 200, y: 200} 529 | m_MaxSize: {x: 4000, y: 4000} 530 | m_TitleContent: 531 | m_Text: Scene 532 | m_Image: {fileID: 2318424515335265636, guid: 0000000000000000d000000000000000, 533 | type: 0} 534 | m_Tooltip: 535 | m_DepthBufferBits: 32 536 | m_Pos: 537 | serializedVersion: 2 538 | x: 507 539 | y: 94 540 | width: 1532 541 | height: 790 542 | m_SceneLighting: 1 543 | lastFramingTime: 0 544 | m_2DMode: 0 545 | m_isRotationLocked: 0 546 | m_AudioPlay: 0 547 | m_Position: 548 | m_Target: {x: 0, y: 0, z: 0} 549 | speed: 2 550 | m_Value: {x: 0, y: 0, z: 0} 551 | m_RenderMode: 0 552 | m_SceneViewState: 553 | showFog: 1 554 | showMaterialUpdate: 0 555 | showSkybox: 1 556 | showFlares: 1 557 | showImageEffects: 1 558 | grid: 559 | xGrid: 560 | m_Target: 0 561 | speed: 2 562 | m_Value: 0 563 | yGrid: 564 | m_Target: 1 565 | speed: 2 566 | m_Value: 1 567 | zGrid: 568 | m_Target: 0 569 | speed: 2 570 | m_Value: 0 571 | m_Rotation: 572 | m_Target: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} 573 | speed: 2 574 | m_Value: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} 575 | m_Size: 576 | m_Target: 10 577 | speed: 2 578 | m_Value: 10 579 | m_Ortho: 580 | m_Target: 0 581 | speed: 2 582 | m_Value: 0 583 | m_LastSceneViewRotation: {x: 0, y: 0, z: 0, w: 0} 584 | m_LastSceneViewOrtho: 0 585 | m_ReplacementShader: {fileID: 0} 586 | m_ReplacementString: 587 | m_LastLockedObject: {fileID: 0} 588 | m_ViewIsLockedToObject: 0 589 | --- !u!114 &17 590 | MonoBehaviour: 591 | m_ObjectHideFlags: 52 592 | m_PrefabParentObject: {fileID: 0} 593 | m_PrefabInternal: {fileID: 0} 594 | m_GameObject: {fileID: 0} 595 | m_Enabled: 1 596 | m_EditorHideFlags: 1 597 | m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0} 598 | m_Name: 599 | m_EditorClassIdentifier: 600 | m_AutoRepaintOnSceneChange: 1 601 | m_MinSize: {x: 200, y: 200} 602 | m_MaxSize: {x: 4000, y: 4000} 603 | m_TitleContent: 604 | m_Text: Game 605 | m_Image: {fileID: -2087823869225018852, guid: 0000000000000000d000000000000000, 606 | type: 0} 607 | m_Tooltip: 608 | m_DepthBufferBits: 32 609 | m_Pos: 610 | serializedVersion: 2 611 | x: 507 612 | y: 94 613 | width: 1532 614 | height: 790 615 | m_MaximizeOnPlay: 0 616 | m_Gizmos: 0 617 | m_Stats: 0 618 | m_SelectedSizes: 000000000000000000000000000000000000000000000000000000000000000000000000 619 | m_TargetDisplay: 0 620 | m_ZoomArea: 621 | m_HRangeLocked: 0 622 | m_VRangeLocked: 0 623 | m_HBaseRangeMin: -383 624 | m_HBaseRangeMax: 383 625 | m_VBaseRangeMin: -193.25 626 | m_VBaseRangeMax: 193.25 627 | m_HAllowExceedBaseRangeMin: 1 628 | m_HAllowExceedBaseRangeMax: 1 629 | m_VAllowExceedBaseRangeMin: 1 630 | m_VAllowExceedBaseRangeMax: 1 631 | m_ScaleWithWindow: 0 632 | m_HSlider: 0 633 | m_VSlider: 0 634 | m_IgnoreScrollWheelUntilClicked: 0 635 | m_EnableMouseInput: 1 636 | m_EnableSliderZoom: 0 637 | m_UniformScale: 1 638 | m_UpDirection: 1 639 | m_DrawArea: 640 | serializedVersion: 2 641 | x: 0 642 | y: 17 643 | width: 1532 644 | height: 773 645 | m_Scale: {x: 2, y: 2} 646 | m_Translation: {x: 766, y: 386.5} 647 | m_MarginLeft: 0 648 | m_MarginRight: 0 649 | m_MarginTop: 0 650 | m_MarginBottom: 0 651 | m_LastShownAreaInsideMargins: 652 | serializedVersion: 2 653 | x: -383 654 | y: -193.25 655 | width: 766 656 | height: 386.5 657 | m_MinimalGUI: 1 658 | m_defaultScale: 2 659 | m_TargetTexture: {fileID: 0} 660 | m_CurrentColorSpace: 1 661 | m_LastWindowPixelSize: {x: 3064, y: 1580} 662 | m_ClearInEditMode: 1 663 | m_NoCameraWarning: 1 664 | --- !u!114 &18 665 | MonoBehaviour: 666 | m_ObjectHideFlags: 52 667 | m_PrefabParentObject: {fileID: 0} 668 | m_PrefabInternal: {fileID: 0} 669 | m_GameObject: {fileID: 0} 670 | m_Enabled: 1 671 | m_EditorHideFlags: 1 672 | m_Script: {fileID: 12003, guid: 0000000000000000e000000000000000, type: 0} 673 | m_Name: 674 | m_EditorClassIdentifier: 675 | m_AutoRepaintOnSceneChange: 0 676 | m_MinSize: {x: 100, y: 100} 677 | m_MaxSize: {x: 4000, y: 4000} 678 | m_TitleContent: 679 | m_Text: Console 680 | m_Image: {fileID: 111653112392082826, guid: 0000000000000000d000000000000000, 681 | type: 0} 682 | m_Tooltip: 683 | m_DepthBufferBits: 0 684 | m_Pos: 685 | serializedVersion: 2 686 | x: 8 687 | y: 718 688 | width: 1366 689 | height: 308 690 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!129 &1 4 | PlayerSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 24 7 | productGUID: d4a8c13e026c99944be50392a484d779 8 | AndroidProfiler: 0 9 | AndroidFilterTouchesWhenObscured: 0 10 | AndroidEnableSustainedPerformanceMode: 0 11 | defaultScreenOrientation: 4 12 | targetDevice: 2 13 | useOnDemandResources: 0 14 | accelerometerFrequency: 60 15 | companyName: DefaultCompany 16 | productName: Unity-NonDrawingImage 17 | defaultCursor: {fileID: 0} 18 | cursorHotspot: {x: 0, y: 0} 19 | m_SplashScreenBackgroundColor: {r: 0.12156863, g: 0.12156863, b: 0.1254902, a: 1} 20 | m_ShowUnitySplashScreen: 1 21 | m_ShowUnitySplashLogo: 1 22 | m_SplashScreenOverlayOpacity: 1 23 | m_SplashScreenAnimation: 1 24 | m_SplashScreenLogoStyle: 1 25 | m_SplashScreenDrawMode: 0 26 | m_SplashScreenBackgroundAnimationZoom: 1 27 | m_SplashScreenLogoAnimationZoom: 1 28 | m_SplashScreenBackgroundLandscapeAspect: 1 29 | m_SplashScreenBackgroundPortraitAspect: 1 30 | m_SplashScreenBackgroundLandscapeUvs: 31 | serializedVersion: 2 32 | x: 0 33 | y: 0 34 | width: 1 35 | height: 1 36 | m_SplashScreenBackgroundPortraitUvs: 37 | serializedVersion: 2 38 | x: 0 39 | y: 0 40 | width: 1 41 | height: 1 42 | m_SplashScreenLogos: [] 43 | m_VirtualRealitySplashScreen: {fileID: 0} 44 | m_HolographicTrackingLossScreen: {fileID: 0} 45 | defaultScreenWidth: 1920 46 | defaultScreenHeight: 1080 47 | defaultScreenWidthWeb: 960 48 | defaultScreenHeightWeb: 600 49 | m_StereoRenderingPath: 0 50 | m_ActiveColorSpace: 0 51 | m_SpriteBatchVertexThreshold: 300 52 | m_MTRendering: 1 53 | mipStripping: 0 54 | numberOfMipsStripped: 0 55 | m_StackTraceTypes: 010000000100000001000000010000000100000001000000 56 | iosShowActivityIndicatorOnLoading: -1 57 | androidShowActivityIndicatorOnLoading: -1 58 | iosUseCustomAppBackgroundBehavior: 0 59 | allowedAutorotateToPortrait: 1 60 | allowedAutorotateToPortraitUpsideDown: 1 61 | allowedAutorotateToLandscapeRight: 1 62 | allowedAutorotateToLandscapeLeft: 1 63 | useOSAutorotation: 1 64 | use32BitDisplayBuffer: 1 65 | preserveFramebufferAlpha: 0 66 | disableDepthAndStencilBuffers: 0 67 | androidStartInFullscreen: 1 68 | androidRenderOutsideSafeArea: 1 69 | androidUseSwappy: 1 70 | androidBlitType: 0 71 | androidResizableWindow: 0 72 | androidDefaultWindowWidth: 1920 73 | androidDefaultWindowHeight: 1080 74 | androidMinimumWindowWidth: 400 75 | androidMinimumWindowHeight: 300 76 | androidFullscreenMode: 1 77 | defaultIsNativeResolution: 1 78 | macRetinaSupport: 1 79 | runInBackground: 0 80 | captureSingleScreen: 0 81 | muteOtherAudioSources: 0 82 | Prepare IOS For Recording: 0 83 | Force IOS Speakers When Recording: 0 84 | deferSystemGesturesMode: 0 85 | hideHomeButton: 0 86 | submitAnalytics: 1 87 | usePlayerLog: 1 88 | bakeCollisionMeshes: 0 89 | forceSingleInstance: 0 90 | useFlipModelSwapchain: 1 91 | resizableWindow: 0 92 | useMacAppStoreValidation: 0 93 | macAppStoreCategory: public.app-category.games 94 | gpuSkinning: 0 95 | xboxPIXTextureCapture: 0 96 | xboxEnableAvatar: 0 97 | xboxEnableKinect: 0 98 | xboxEnableKinectAutoTracking: 0 99 | xboxEnableFitness: 0 100 | visibleInBackground: 1 101 | allowFullscreenSwitch: 1 102 | fullscreenMode: 1 103 | xboxSpeechDB: 0 104 | xboxEnableHeadOrientation: 0 105 | xboxEnableGuest: 0 106 | xboxEnablePIXSampling: 0 107 | metalFramebufferOnly: 0 108 | xboxOneResolution: 0 109 | xboxOneSResolution: 0 110 | xboxOneXResolution: 3 111 | xboxOneMonoLoggingLevel: 0 112 | xboxOneLoggingLevel: 1 113 | xboxOneDisableEsram: 0 114 | xboxOneEnableTypeOptimization: 0 115 | xboxOnePresentImmediateThreshold: 0 116 | switchQueueCommandMemory: 1048576 117 | switchQueueControlMemory: 16384 118 | switchQueueComputeMemory: 262144 119 | switchNVNShaderPoolsGranularity: 33554432 120 | switchNVNDefaultPoolsGranularity: 16777216 121 | switchNVNOtherPoolsGranularity: 16777216 122 | switchGpuScratchPoolGranularity: 2097152 123 | switchAllowGpuScratchShrinking: 0 124 | switchNVNMaxPublicTextureIDCount: 0 125 | switchNVNMaxPublicSamplerIDCount: 0 126 | switchNVNGraphicsFirmwareMemory: 32 127 | stadiaPresentMode: 0 128 | stadiaTargetFramerate: 0 129 | vulkanNumSwapchainBuffers: 3 130 | vulkanEnableSetSRGBWrite: 0 131 | vulkanEnablePreTransform: 0 132 | vulkanEnableLateAcquireNextImage: 0 133 | vulkanEnableCommandBufferRecycling: 1 134 | m_SupportedAspectRatios: 135 | 4:3: 1 136 | 5:4: 1 137 | 16:10: 1 138 | 16:9: 1 139 | Others: 1 140 | bundleVersion: 1.0 141 | preloadedAssets: [] 142 | metroInputSource: 0 143 | wsaTransparentSwapchain: 0 144 | m_HolographicPauseOnTrackingLoss: 1 145 | xboxOneDisableKinectGpuReservation: 1 146 | xboxOneEnable7thCore: 1 147 | vrSettings: 148 | enable360StereoCapture: 0 149 | isWsaHolographicRemotingEnabled: 0 150 | enableFrameTimingStats: 0 151 | useHDRDisplay: 0 152 | D3DHDRBitDepth: 0 153 | m_ColorGamuts: 00000000 154 | targetPixelDensity: 0 155 | resolutionScalingMode: 0 156 | resetResolutionOnWindowResize: 0 157 | androidSupportedAspectRatio: 1 158 | androidMaxAspectRatio: 2.1 159 | applicationIdentifier: {} 160 | buildNumber: {} 161 | overrideDefaultApplicationIdentifier: 0 162 | AndroidBundleVersionCode: 1 163 | AndroidMinSdkVersion: 22 164 | AndroidTargetSdkVersion: 0 165 | AndroidPreferredInstallLocation: 1 166 | aotOptions: 167 | stripEngineCode: 1 168 | iPhoneStrippingLevel: 0 169 | iPhoneScriptCallOptimization: 0 170 | ForceInternetPermission: 0 171 | ForceSDCardPermission: 0 172 | CreateWallpaper: 0 173 | APKExpansionFiles: 0 174 | keepLoadedShadersAlive: 0 175 | StripUnusedMeshComponents: 0 176 | strictShaderVariantMatching: 0 177 | VertexChannelCompressionMask: 4054 178 | iPhoneSdkVersion: 988 179 | iOSTargetOSVersionString: 180 | tvOSSdkVersion: 0 181 | tvOSRequireExtendedGameController: 0 182 | tvOSTargetOSVersionString: 183 | uIPrerenderedIcon: 0 184 | uIRequiresPersistentWiFi: 0 185 | uIRequiresFullScreen: 1 186 | uIStatusBarHidden: 1 187 | uIExitOnSuspend: 0 188 | uIStatusBarStyle: 0 189 | appleTVSplashScreen: {fileID: 0} 190 | appleTVSplashScreen2x: {fileID: 0} 191 | tvOSSmallIconLayers: [] 192 | tvOSSmallIconLayers2x: [] 193 | tvOSLargeIconLayers: [] 194 | tvOSLargeIconLayers2x: [] 195 | tvOSTopShelfImageLayers: [] 196 | tvOSTopShelfImageLayers2x: [] 197 | tvOSTopShelfImageWideLayers: [] 198 | tvOSTopShelfImageWideLayers2x: [] 199 | iOSLaunchScreenType: 0 200 | iOSLaunchScreenPortrait: {fileID: 0} 201 | iOSLaunchScreenLandscape: {fileID: 0} 202 | iOSLaunchScreenBackgroundColor: 203 | serializedVersion: 2 204 | rgba: 0 205 | iOSLaunchScreenFillPct: 100 206 | iOSLaunchScreenSize: 100 207 | iOSLaunchScreenCustomXibPath: 208 | iOSLaunchScreeniPadType: 0 209 | iOSLaunchScreeniPadImage: {fileID: 0} 210 | iOSLaunchScreeniPadBackgroundColor: 211 | serializedVersion: 2 212 | rgba: 0 213 | iOSLaunchScreeniPadFillPct: 100 214 | iOSLaunchScreeniPadSize: 100 215 | iOSLaunchScreeniPadCustomXibPath: 216 | iOSLaunchScreenCustomStoryboardPath: 217 | iOSLaunchScreeniPadCustomStoryboardPath: 218 | iOSDeviceRequirements: [] 219 | iOSURLSchemes: [] 220 | macOSURLSchemes: [] 221 | iOSBackgroundModes: 0 222 | iOSMetalForceHardShadows: 0 223 | metalEditorSupport: 1 224 | metalAPIValidation: 1 225 | iOSRenderExtraFrameOnPause: 0 226 | iosCopyPluginsCodeInsteadOfSymlink: 0 227 | appleDeveloperTeamID: 228 | iOSManualSigningProvisioningProfileID: 229 | tvOSManualSigningProvisioningProfileID: 230 | iOSManualSigningProvisioningProfileType: 0 231 | tvOSManualSigningProvisioningProfileType: 0 232 | appleEnableAutomaticSigning: 0 233 | iOSRequireARKit: 0 234 | iOSAutomaticallyDetectAndAddCapabilities: 1 235 | appleEnableProMotion: 0 236 | shaderPrecisionModel: 0 237 | clonedFromGUID: 00000000000000000000000000000000 238 | templatePackageId: 239 | templateDefaultScene: 240 | useCustomMainManifest: 0 241 | useCustomLauncherManifest: 0 242 | useCustomMainGradleTemplate: 0 243 | useCustomLauncherGradleManifest: 0 244 | useCustomBaseGradleTemplate: 0 245 | useCustomGradlePropertiesTemplate: 0 246 | useCustomProguardFile: 0 247 | AndroidTargetArchitectures: 1 248 | AndroidTargetDevices: 0 249 | AndroidSplashScreenScale: 0 250 | androidSplashScreen: {fileID: 0} 251 | AndroidKeystoreName: 252 | AndroidKeyaliasName: 253 | AndroidBuildApkPerCpuArchitecture: 0 254 | AndroidTVCompatibility: 0 255 | AndroidIsGame: 1 256 | AndroidEnableTango: 0 257 | androidEnableBanner: 1 258 | androidUseLowAccuracyLocation: 0 259 | androidUseCustomKeystore: 0 260 | m_AndroidBanners: 261 | - width: 320 262 | height: 180 263 | banner: {fileID: 0} 264 | androidGamepadSupportLevel: 0 265 | chromeosInputEmulation: 1 266 | AndroidMinifyWithR8: 0 267 | AndroidMinifyRelease: 0 268 | AndroidMinifyDebug: 0 269 | AndroidValidateAppBundleSize: 1 270 | AndroidAppBundleSizeToValidate: 150 271 | m_BuildTargetIcons: [] 272 | m_BuildTargetPlatformIcons: [] 273 | m_BuildTargetBatching: [] 274 | m_BuildTargetShaderSettings: [] 275 | m_BuildTargetGraphicsJobs: [] 276 | m_BuildTargetGraphicsJobMode: [] 277 | m_BuildTargetGraphicsAPIs: [] 278 | m_BuildTargetVRSettings: [] 279 | m_DefaultShaderChunkSizeInMB: 16 280 | m_DefaultShaderChunkCount: 0 281 | openGLRequireES31: 0 282 | openGLRequireES31AEP: 0 283 | openGLRequireES32: 0 284 | m_TemplateCustomTags: {} 285 | mobileMTRendering: 286 | Android: 1 287 | iPhone: 1 288 | tvOS: 1 289 | m_BuildTargetGroupLightmapEncodingQuality: [] 290 | m_BuildTargetGroupHDRCubemapEncodingQuality: [] 291 | m_BuildTargetGroupLightmapSettings: [] 292 | m_BuildTargetNormalMapEncoding: [] 293 | m_BuildTargetDefaultTextureCompressionFormat: [] 294 | playModeTestRunnerEnabled: 0 295 | runPlayModeTestAsEditModeTest: 0 296 | actionOnDotNetUnhandledException: 1 297 | enableInternalProfiler: 0 298 | logObjCUncaughtExceptions: 1 299 | enableCrashReportAPI: 0 300 | cameraUsageDescription: 301 | locationUsageDescription: 302 | microphoneUsageDescription: 303 | bluetoothUsageDescription: 304 | macOSTargetOSVersion: 305 | switchNMETAOverride: 306 | switchNetLibKey: 307 | switchSocketMemoryPoolSize: 6144 308 | switchSocketAllocatorPoolSize: 128 309 | switchSocketConcurrencyLimit: 14 310 | switchScreenResolutionBehavior: 2 311 | switchUseCPUProfiler: 0 312 | switchUseGOLDLinker: 0 313 | switchLTOSetting: 0 314 | switchApplicationID: 0x01004b9000490000 315 | switchNSODependencies: 316 | switchCompilerFlags: 317 | switchTitleNames_0: 318 | switchTitleNames_1: 319 | switchTitleNames_2: 320 | switchTitleNames_3: 321 | switchTitleNames_4: 322 | switchTitleNames_5: 323 | switchTitleNames_6: 324 | switchTitleNames_7: 325 | switchTitleNames_8: 326 | switchTitleNames_9: 327 | switchTitleNames_10: 328 | switchTitleNames_11: 329 | switchTitleNames_12: 330 | switchTitleNames_13: 331 | switchTitleNames_14: 332 | switchTitleNames_15: 333 | switchPublisherNames_0: 334 | switchPublisherNames_1: 335 | switchPublisherNames_2: 336 | switchPublisherNames_3: 337 | switchPublisherNames_4: 338 | switchPublisherNames_5: 339 | switchPublisherNames_6: 340 | switchPublisherNames_7: 341 | switchPublisherNames_8: 342 | switchPublisherNames_9: 343 | switchPublisherNames_10: 344 | switchPublisherNames_11: 345 | switchPublisherNames_12: 346 | switchPublisherNames_13: 347 | switchPublisherNames_14: 348 | switchPublisherNames_15: 349 | switchIcons_0: {fileID: 0} 350 | switchIcons_1: {fileID: 0} 351 | switchIcons_2: {fileID: 0} 352 | switchIcons_3: {fileID: 0} 353 | switchIcons_4: {fileID: 0} 354 | switchIcons_5: {fileID: 0} 355 | switchIcons_6: {fileID: 0} 356 | switchIcons_7: {fileID: 0} 357 | switchIcons_8: {fileID: 0} 358 | switchIcons_9: {fileID: 0} 359 | switchIcons_10: {fileID: 0} 360 | switchIcons_11: {fileID: 0} 361 | switchIcons_12: {fileID: 0} 362 | switchIcons_13: {fileID: 0} 363 | switchIcons_14: {fileID: 0} 364 | switchIcons_15: {fileID: 0} 365 | switchSmallIcons_0: {fileID: 0} 366 | switchSmallIcons_1: {fileID: 0} 367 | switchSmallIcons_2: {fileID: 0} 368 | switchSmallIcons_3: {fileID: 0} 369 | switchSmallIcons_4: {fileID: 0} 370 | switchSmallIcons_5: {fileID: 0} 371 | switchSmallIcons_6: {fileID: 0} 372 | switchSmallIcons_7: {fileID: 0} 373 | switchSmallIcons_8: {fileID: 0} 374 | switchSmallIcons_9: {fileID: 0} 375 | switchSmallIcons_10: {fileID: 0} 376 | switchSmallIcons_11: {fileID: 0} 377 | switchSmallIcons_12: {fileID: 0} 378 | switchSmallIcons_13: {fileID: 0} 379 | switchSmallIcons_14: {fileID: 0} 380 | switchSmallIcons_15: {fileID: 0} 381 | switchManualHTML: 382 | switchAccessibleURLs: 383 | switchLegalInformation: 384 | switchMainThreadStackSize: 1048576 385 | switchPresenceGroupId: 386 | switchLogoHandling: 0 387 | switchReleaseVersion: 0 388 | switchDisplayVersion: 1.0.0 389 | switchStartupUserAccount: 0 390 | switchTouchScreenUsage: 0 391 | switchSupportedLanguagesMask: 0 392 | switchLogoType: 0 393 | switchApplicationErrorCodeCategory: 394 | switchUserAccountSaveDataSize: 0 395 | switchUserAccountSaveDataJournalSize: 0 396 | switchApplicationAttribute: 0 397 | switchCardSpecSize: -1 398 | switchCardSpecClock: -1 399 | switchRatingsMask: 0 400 | switchRatingsInt_0: 0 401 | switchRatingsInt_1: 0 402 | switchRatingsInt_2: 0 403 | switchRatingsInt_3: 0 404 | switchRatingsInt_4: 0 405 | switchRatingsInt_5: 0 406 | switchRatingsInt_6: 0 407 | switchRatingsInt_7: 0 408 | switchRatingsInt_8: 0 409 | switchRatingsInt_9: 0 410 | switchRatingsInt_10: 0 411 | switchRatingsInt_11: 0 412 | switchRatingsInt_12: 0 413 | switchLocalCommunicationIds_0: 414 | switchLocalCommunicationIds_1: 415 | switchLocalCommunicationIds_2: 416 | switchLocalCommunicationIds_3: 417 | switchLocalCommunicationIds_4: 418 | switchLocalCommunicationIds_5: 419 | switchLocalCommunicationIds_6: 420 | switchLocalCommunicationIds_7: 421 | switchParentalControl: 0 422 | switchAllowsScreenshot: 1 423 | switchAllowsVideoCapturing: 1 424 | switchAllowsRuntimeAddOnContentInstall: 0 425 | switchDataLossConfirmation: 0 426 | switchUserAccountLockEnabled: 0 427 | switchSystemResourceMemory: 16777216 428 | switchSupportedNpadStyles: 22 429 | switchNativeFsCacheSize: 32 430 | switchIsHoldTypeHorizontal: 0 431 | switchSupportedNpadCount: 8 432 | switchSocketConfigEnabled: 0 433 | switchTcpInitialSendBufferSize: 32 434 | switchTcpInitialReceiveBufferSize: 64 435 | switchTcpAutoSendBufferSizeMax: 256 436 | switchTcpAutoReceiveBufferSizeMax: 256 437 | switchUdpSendBufferSize: 9 438 | switchUdpReceiveBufferSize: 42 439 | switchSocketBufferEfficiency: 4 440 | switchSocketInitializeEnabled: 1 441 | switchNetworkInterfaceManagerInitializeEnabled: 1 442 | switchPlayerConnectionEnabled: 1 443 | switchUseNewStyleFilepaths: 1 444 | switchUseLegacyFmodPriorities: 0 445 | switchUseMicroSleepForYield: 1 446 | switchEnableRamDiskSupport: 0 447 | switchMicroSleepForYieldTime: 25 448 | switchRamDiskSpaceSize: 12 449 | ps4NPAgeRating: 12 450 | ps4NPTitleSecret: 451 | ps4NPTrophyPackPath: 452 | ps4ParentalLevel: 11 453 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000 454 | ps4Category: 0 455 | ps4MasterVersion: 01.00 456 | ps4AppVersion: 01.00 457 | ps4AppType: 0 458 | ps4ParamSfxPath: 459 | ps4VideoOutPixelFormat: 0 460 | ps4VideoOutInitialWidth: 1920 461 | ps4VideoOutBaseModeInitialWidth: 1920 462 | ps4VideoOutReprojectionRate: 60 463 | ps4PronunciationXMLPath: 464 | ps4PronunciationSIGPath: 465 | ps4BackgroundImagePath: 466 | ps4StartupImagePath: 467 | ps4StartupImagesFolder: 468 | ps4IconImagesFolder: 469 | ps4SaveDataImagePath: 470 | ps4SdkOverride: 471 | ps4BGMPath: 472 | ps4ShareFilePath: 473 | ps4ShareOverlayImagePath: 474 | ps4PrivacyGuardImagePath: 475 | ps4ExtraSceSysFile: 476 | ps4NPtitleDatPath: 477 | ps4RemotePlayKeyAssignment: -1 478 | ps4RemotePlayKeyMappingDir: 479 | ps4PlayTogetherPlayerCount: 0 480 | ps4EnterButtonAssignment: 2 481 | ps4ApplicationParam1: 0 482 | ps4ApplicationParam2: 0 483 | ps4ApplicationParam3: 0 484 | ps4ApplicationParam4: 0 485 | ps4DownloadDataSize: 0 486 | ps4GarlicHeapSize: 2048 487 | ps4ProGarlicHeapSize: 2560 488 | playerPrefsMaxSize: 32768 489 | ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ 490 | ps4pnSessions: 1 491 | ps4pnPresence: 1 492 | ps4pnFriends: 1 493 | ps4pnGameCustomData: 1 494 | playerPrefsSupport: 0 495 | enableApplicationExit: 0 496 | resetTempFolder: 1 497 | restrictedAudioUsageRights: 0 498 | ps4UseResolutionFallback: 0 499 | ps4ReprojectionSupport: 0 500 | ps4UseAudio3dBackend: 0 501 | ps4UseLowGarlicFragmentationMode: 1 502 | ps4SocialScreenEnabled: 0 503 | ps4ScriptOptimizationLevel: 2 504 | ps4Audio3dVirtualSpeakerCount: 14 505 | ps4attribCpuUsage: 0 506 | ps4PatchPkgPath: 507 | ps4PatchLatestPkgPath: 508 | ps4PatchChangeinfoPath: 509 | ps4PatchDayOne: 0 510 | ps4attribUserManagement: 0 511 | ps4attribMoveSupport: 0 512 | ps4attrib3DSupport: 0 513 | ps4attribShareSupport: 0 514 | ps4attribExclusiveVR: 0 515 | ps4disableAutoHideSplash: 0 516 | ps4videoRecordingFeaturesUsed: 0 517 | ps4contentSearchFeaturesUsed: 0 518 | ps4CompatibilityPS5: 0 519 | ps4AllowPS5Detection: 0 520 | ps4GPU800MHz: 1 521 | ps4attribEyeToEyeDistanceSettingVR: 0 522 | ps4IncludedModules: [] 523 | ps4attribVROutputEnabled: 0 524 | monoEnv: 525 | splashScreenBackgroundSourceLandscape: {fileID: 0} 526 | splashScreenBackgroundSourcePortrait: {fileID: 0} 527 | blurSplashScreenBackground: 1 528 | spritePackerPolicy: 529 | webGLMemorySize: 32 530 | webGLExceptionSupport: 1 531 | webGLNameFilesAsHashes: 0 532 | webGLDataCaching: 1 533 | webGLDebugSymbols: 0 534 | webGLEmscriptenArgs: 535 | webGLModulesDirectory: 536 | webGLTemplate: APPLICATION:Default 537 | webGLAnalyzeBuildSize: 0 538 | webGLUseEmbeddedResources: 0 539 | webGLCompressionFormat: 0 540 | webGLWasmArithmeticExceptions: 0 541 | webGLLinkerTarget: 1 542 | webGLThreadsSupport: 0 543 | webGLDecompressionFallback: 0 544 | webGLInitialMemorySize: 32 545 | webGLMaximumMemorySize: 2048 546 | webGLMemoryGrowthMode: 2 547 | webGLMemoryLinearGrowthStep: 16 548 | webGLMemoryGeometricGrowthStep: 0.2 549 | webGLMemoryGeometricGrowthCap: 96 550 | webGLPowerPreference: 2 551 | scriptingDefineSymbols: {} 552 | additionalCompilerArguments: {} 553 | platformArchitecture: {} 554 | scriptingBackend: {} 555 | il2cppCompilerConfiguration: {} 556 | il2cppCodeGeneration: {} 557 | managedStrippingLevel: {} 558 | incrementalIl2cppBuild: {} 559 | suppressCommonWarnings: 1 560 | allowUnsafeCode: 0 561 | useDeterministicCompilation: 1 562 | enableRoslynAnalyzers: 1 563 | selectedPlatform: 0 564 | additionalIl2CppArgs: 565 | scriptingRuntimeVersion: 1 566 | gcIncremental: 1 567 | assemblyVersionValidation: 1 568 | gcWBarrierValidation: 0 569 | apiCompatibilityLevelPerPlatform: {} 570 | m_RenderingPath: 1 571 | m_MobileRenderingPath: 1 572 | metroPackageName: Unity-NonDrawingImage 573 | metroPackageVersion: 574 | metroCertificatePath: 575 | metroCertificatePassword: 576 | metroCertificateSubject: 577 | metroCertificateIssuer: 578 | metroCertificateNotAfter: 0000000000000000 579 | metroApplicationDescription: Unity-NonDrawingImage 580 | wsaImages: {} 581 | metroTileShortName: 582 | metroTileShowName: 0 583 | metroMediumTileShowName: 0 584 | metroLargeTileShowName: 0 585 | metroWideTileShowName: 0 586 | metroSupportStreamingInstall: 0 587 | metroLastRequiredScene: 0 588 | metroDefaultTileSize: 1 589 | metroTileForegroundText: 2 590 | metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} 591 | metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1} 592 | metroSplashScreenUseBackgroundColor: 0 593 | platformCapabilities: {} 594 | metroTargetDeviceFamilies: {} 595 | metroFTAName: 596 | metroFTAFileTypes: [] 597 | metroProtocolName: 598 | vcxProjDefaultLanguage: 599 | XboxOneProductId: 600 | XboxOneUpdateKey: 601 | XboxOneSandboxId: 602 | XboxOneContentId: 603 | XboxOneTitleId: 604 | XboxOneSCId: 605 | XboxOneGameOsOverridePath: 606 | XboxOnePackagingOverridePath: 607 | XboxOneAppManifestOverridePath: 608 | XboxOneVersion: 1.0.0.0 609 | XboxOnePackageEncryption: 0 610 | XboxOnePackageUpdateGranularity: 2 611 | XboxOneDescription: 612 | XboxOneLanguage: 613 | - enus 614 | XboxOneCapability: [] 615 | XboxOneGameRating: {} 616 | XboxOneIsContentPackage: 0 617 | XboxOneEnhancedXboxCompatibilityMode: 0 618 | XboxOneEnableGPUVariability: 1 619 | XboxOneSockets: {} 620 | XboxOneSplashScreen: {fileID: 0} 621 | XboxOneAllowedProductIds: [] 622 | XboxOnePersistentLocalStorageSize: 0 623 | XboxOneXTitleMemory: 8 624 | XboxOneOverrideIdentityName: 625 | XboxOneOverrideIdentityPublisher: 626 | vrEditorSettings: {} 627 | cloudServicesEnabled: {} 628 | luminIcon: 629 | m_Name: 630 | m_ModelFolderPath: 631 | m_PortalFolderPath: 632 | luminCert: 633 | m_CertPath: 634 | m_SignPackage: 1 635 | luminIsChannelApp: 0 636 | luminVersion: 637 | m_VersionCode: 1 638 | m_VersionName: 639 | apiCompatibilityLevel: 6 640 | activeInputHandler: 0 641 | cloudProjectId: 642 | framebufferDepthMemorylessMode: 0 643 | qualitySettingsNames: [] 644 | projectName: 645 | organizationId: 646 | cloudEnabled: 0 647 | legacyClampBlendShapeWeights: 0 648 | playerDataPath: 649 | forceSRGBBlit: 1 650 | virtualTexturingSupportEnabled: 0 651 | insecureHttpOption: 0 652 | --------------------------------------------------------------------------------