From 5025e2485ffddf3a721c82690cc43624a041fa71 Mon Sep 17 00:00:00 2001 From: Emil Shanaty Date: Sat, 1 Mar 2025 16:42:08 +0300 Subject: [PATCH] second initial commit --- Assets/InputSystem_Actions.inputactions | 1057 ++ Assets/InputSystem_Actions.inputactions.meta | 14 + Assets/Readme.asset | 34 + Assets/Readme.asset.meta | 8 + Assets/Scenes.meta | 8 + Assets/Scenes/SampleScene.unity | 432 + Assets/Scenes/SampleScene.unity.meta | 7 + Assets/Settings.meta | 8 + Assets/Settings/DefaultVolumeProfile.asset | 983 ++ .../Settings/DefaultVolumeProfile.asset.meta | 8 + Assets/Settings/Mobile_RPAsset.asset | 135 + Assets/Settings/Mobile_RPAsset.asset.meta | 8 + Assets/Settings/Mobile_Renderer.asset | 52 + Assets/Settings/Mobile_Renderer.asset.meta | 8 + Assets/Settings/PC_RPAsset.asset | 135 + Assets/Settings/PC_RPAsset.asset.meta | 8 + Assets/Settings/PC_Renderer.asset | 95 + Assets/Settings/PC_Renderer.asset.meta | 8 + Assets/Settings/SampleSceneProfile.asset | 159 + Assets/Settings/SampleSceneProfile.asset.meta | 8 + ...niversalRenderPipelineGlobalSettings.asset | 261 + ...salRenderPipelineGlobalSettings.asset.meta | 8 + Assets/TutorialInfo.meta | 8 + Assets/TutorialInfo/Icons.meta | 9 + Assets/TutorialInfo/Icons/URP.png | 3 + Assets/TutorialInfo/Icons/URP.png.meta | 134 + Assets/TutorialInfo/Layout.wlt | 654 ++ Assets/TutorialInfo/Layout.wlt.meta | 8 + Assets/TutorialInfo/Scripts.meta | 9 + Assets/TutorialInfo/Scripts/Editor.meta | 9 + .../Scripts/Editor/ReadmeEditor.cs | 242 + .../Scripts/Editor/ReadmeEditor.cs.meta | 12 + Assets/TutorialInfo/Scripts/Readme.cs | 16 + Assets/TutorialInfo/Scripts/Readme.cs.meta | 12 + Packages/manifest.json | 59 + Packages/packages-lock.json | 498 + ProjectSettings/AudioManager.asset | 19 + ProjectSettings/ClusterInputManager.asset | 6 + ProjectSettings/DynamicsManager.asset | 36 + ProjectSettings/EditorBuildSettings.asset | 13 + ProjectSettings/EditorSettings.asset | 48 + ProjectSettings/GraphicsSettings.asset | 70 + ProjectSettings/InputManager.asset | 487 + ProjectSettings/MemorySettings.asset | 35 + ProjectSettings/MultiplayerManager.asset | 7 + ProjectSettings/NavMeshAreas.asset | 91 + ProjectSettings/PackageManagerSettings.asset | 45 + ProjectSettings/Physics2DSettings.asset | 56 + ProjectSettings/PresetManager.asset | 7 + ProjectSettings/ProjectSettings.asset | 930 ++ ProjectSettings/ProjectVersion.txt | 2 + ProjectSettings/QualitySettings.asset | 134 + ProjectSettings/ShaderGraphSettings.asset | 18 + ProjectSettings/TagManager.asset | 76 + ProjectSettings/TimeManager.asset | 9 + ProjectSettings/URPProjectSettings.asset | 15 + ProjectSettings/UnityConnectSettings.asset | 36 + ProjectSettings/VFXManager.asset | 12 + ProjectSettings/VersionControlSettings.asset | 8 + ProjectSettings/XRSettings.asset | 10 + UserSettings/EditorUserSettings.asset | 33 + UserSettings/Layouts/default-6000.dwlt | 8569 +++++++++++++++++ UserSettings/Search.index | 13 + UserSettings/Search.settings | 81 + 64 files changed, 15983 insertions(+) create mode 100644 Assets/InputSystem_Actions.inputactions create mode 100644 Assets/InputSystem_Actions.inputactions.meta create mode 100644 Assets/Readme.asset create mode 100644 Assets/Readme.asset.meta create mode 100644 Assets/Scenes.meta create mode 100644 Assets/Scenes/SampleScene.unity create mode 100644 Assets/Scenes/SampleScene.unity.meta create mode 100644 Assets/Settings.meta create mode 100644 Assets/Settings/DefaultVolumeProfile.asset create mode 100644 Assets/Settings/DefaultVolumeProfile.asset.meta create mode 100644 Assets/Settings/Mobile_RPAsset.asset create mode 100644 Assets/Settings/Mobile_RPAsset.asset.meta create mode 100644 Assets/Settings/Mobile_Renderer.asset create mode 100644 Assets/Settings/Mobile_Renderer.asset.meta create mode 100644 Assets/Settings/PC_RPAsset.asset create mode 100644 Assets/Settings/PC_RPAsset.asset.meta create mode 100644 Assets/Settings/PC_Renderer.asset create mode 100644 Assets/Settings/PC_Renderer.asset.meta create mode 100644 Assets/Settings/SampleSceneProfile.asset create mode 100644 Assets/Settings/SampleSceneProfile.asset.meta create mode 100644 Assets/Settings/UniversalRenderPipelineGlobalSettings.asset create mode 100644 Assets/Settings/UniversalRenderPipelineGlobalSettings.asset.meta create mode 100644 Assets/TutorialInfo.meta create mode 100644 Assets/TutorialInfo/Icons.meta create mode 100644 Assets/TutorialInfo/Icons/URP.png create mode 100644 Assets/TutorialInfo/Icons/URP.png.meta create mode 100644 Assets/TutorialInfo/Layout.wlt create mode 100644 Assets/TutorialInfo/Layout.wlt.meta create mode 100644 Assets/TutorialInfo/Scripts.meta create mode 100644 Assets/TutorialInfo/Scripts/Editor.meta create mode 100644 Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs create mode 100644 Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta create mode 100644 Assets/TutorialInfo/Scripts/Readme.cs create mode 100644 Assets/TutorialInfo/Scripts/Readme.cs.meta create mode 100644 Packages/manifest.json create mode 100644 Packages/packages-lock.json create mode 100644 ProjectSettings/AudioManager.asset create mode 100644 ProjectSettings/ClusterInputManager.asset create mode 100644 ProjectSettings/DynamicsManager.asset create mode 100644 ProjectSettings/EditorBuildSettings.asset create mode 100644 ProjectSettings/EditorSettings.asset create mode 100644 ProjectSettings/GraphicsSettings.asset create mode 100644 ProjectSettings/InputManager.asset create mode 100644 ProjectSettings/MemorySettings.asset create mode 100644 ProjectSettings/MultiplayerManager.asset create mode 100644 ProjectSettings/NavMeshAreas.asset create mode 100644 ProjectSettings/PackageManagerSettings.asset create mode 100644 ProjectSettings/Physics2DSettings.asset create mode 100644 ProjectSettings/PresetManager.asset create mode 100644 ProjectSettings/ProjectSettings.asset create mode 100644 ProjectSettings/ProjectVersion.txt create mode 100644 ProjectSettings/QualitySettings.asset create mode 100644 ProjectSettings/ShaderGraphSettings.asset create mode 100644 ProjectSettings/TagManager.asset create mode 100644 ProjectSettings/TimeManager.asset create mode 100644 ProjectSettings/URPProjectSettings.asset create mode 100644 ProjectSettings/UnityConnectSettings.asset create mode 100644 ProjectSettings/VFXManager.asset create mode 100644 ProjectSettings/VersionControlSettings.asset create mode 100644 ProjectSettings/XRSettings.asset create mode 100644 UserSettings/EditorUserSettings.asset create mode 100644 UserSettings/Layouts/default-6000.dwlt create mode 100644 UserSettings/Search.index create mode 100644 UserSettings/Search.settings diff --git a/Assets/InputSystem_Actions.inputactions b/Assets/InputSystem_Actions.inputactions new file mode 100644 index 0000000..1a12cb9 --- /dev/null +++ b/Assets/InputSystem_Actions.inputactions @@ -0,0 +1,1057 @@ +{ + "name": "InputSystem_Actions", + "maps": [ + { + "name": "Player", + "id": "df70fa95-8a34-4494-b137-73ab6b9c7d37", + "actions": [ + { + "name": "Move", + "type": "Value", + "id": "351f2ccd-1f9f-44bf-9bec-d62ac5c5f408", + "expectedControlType": "Vector2", + "processors": "", + "interactions": "", + "initialStateCheck": true + }, + { + "name": "Look", + "type": "Value", + "id": "6b444451-8a00-4d00-a97e-f47457f736a8", + "expectedControlType": "Vector2", + "processors": "", + "interactions": "", + "initialStateCheck": true + }, + { + "name": "Attack", + "type": "Button", + "id": "6c2ab1b8-8984-453a-af3d-a3c78ae1679a", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "Interact", + "type": "Button", + "id": "852140f2-7766-474d-8707-702459ba45f3", + "expectedControlType": "Button", + "processors": "", + "interactions": "Hold", + "initialStateCheck": false + }, + { + "name": "Crouch", + "type": "Button", + "id": "27c5f898-bc57-4ee1-8800-db469aca5fe3", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "Jump", + "type": "Button", + "id": "f1ba0d36-48eb-4cd5-b651-1c94a6531f70", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "Previous", + "type": "Button", + "id": "2776c80d-3c14-4091-8c56-d04ced07a2b0", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "Next", + "type": "Button", + "id": "b7230bb6-fc9b-4f52-8b25-f5e19cb2c2ba", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "Sprint", + "type": "Button", + "id": "641cd816-40e6-41b4-8c3d-04687c349290", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + } + ], + "bindings": [ + { + "name": "", + "id": "978bfe49-cc26-4a3d-ab7b-7d7a29327403", + "path": "/leftStick", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Move", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "WASD", + "id": "00ca640b-d935-4593-8157-c05846ea39b3", + "path": "Dpad", + "interactions": "", + "processors": "", + "groups": "", + "action": "Move", + "isComposite": true, + "isPartOfComposite": false + }, + { + "name": "up", + "id": "e2062cb9-1b15-46a2-838c-2f8d72a0bdd9", + "path": "/w", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "up", + "id": "8180e8bd-4097-4f4e-ab88-4523101a6ce9", + "path": "/upArrow", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "320bffee-a40b-4347-ac70-c210eb8bc73a", + "path": "/s", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "1c5327b5-f71c-4f60-99c7-4e737386f1d1", + "path": "/downArrow", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "d2581a9b-1d11-4566-b27d-b92aff5fabbc", + "path": "/a", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "2e46982e-44cc-431b-9f0b-c11910bf467a", + "path": "/leftArrow", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "fcfe95b8-67b9-4526-84b5-5d0bc98d6400", + "path": "/d", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "77bff152-3580-4b21-b6de-dcd0c7e41164", + "path": "/rightArrow", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "", + "id": "1635d3fe-58b6-4ba9-a4e2-f4b964f6b5c8", + "path": "/{Primary2DAxis}", + "interactions": "", + "processors": "", + "groups": "XR", + "action": "Move", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "3ea4d645-4504-4529-b061-ab81934c3752", + "path": "/stick", + "interactions": "", + "processors": "", + "groups": "Joystick", + "action": "Move", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "c1f7a91b-d0fd-4a62-997e-7fb9b69bf235", + "path": "/rightStick", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Look", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "8c8e490b-c610-4785-884f-f04217b23ca4", + "path": "/delta", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse;Touch", + "action": "Look", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "3e5f5442-8668-4b27-a940-df99bad7e831", + "path": "/{Hatswitch}", + "interactions": "", + "processors": "", + "groups": "Joystick", + "action": "Look", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "143bb1cd-cc10-4eca-a2f0-a3664166fe91", + "path": "/buttonWest", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Attack", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "05f6913d-c316-48b2-a6bb-e225f14c7960", + "path": "/leftButton", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Attack", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "886e731e-7071-4ae4-95c0-e61739dad6fd", + "path": "/primaryTouch/tap", + "interactions": "", + "processors": "", + "groups": ";Touch", + "action": "Attack", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "ee3d0cd2-254e-47a7-a8cb-bc94d9658c54", + "path": "/trigger", + "interactions": "", + "processors": "", + "groups": "Joystick", + "action": "Attack", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "8255d333-5683-4943-a58a-ccb207ff1dce", + "path": "/{PrimaryAction}", + "interactions": "", + "processors": "", + "groups": "XR", + "action": "Attack", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "b3c1c7f0-bd20-4ee7-a0f1-899b24bca6d7", + "path": "/enter", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Attack", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "cbac6039-9c09-46a1-b5f2-4e5124ccb5ed", + "path": "/2", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Next", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "e15ca19d-e649-4852-97d5-7fe8ccc44e94", + "path": "/dpad/right", + "interactions": "", + "processors": "", + "groups": "Gamepad", + "action": "Next", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "f2e9ba44-c423-42a7-ad56-f20975884794", + "path": "/leftShift", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Sprint", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "8cbb2f4b-a784-49cc-8d5e-c010b8c7f4e6", + "path": "/leftStickPress", + "interactions": "", + "processors": "", + "groups": "Gamepad", + "action": "Sprint", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "d8bf24bf-3f2f-4160-a97c-38ec1eb520ba", + "path": "/trigger", + "interactions": "", + "processors": "", + "groups": "XR", + "action": "Sprint", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "eb40bb66-4559-4dfa-9a2f-820438abb426", + "path": "/space", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Jump", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "daba33a1-ad0c-4742-a909-43ad1cdfbeb6", + "path": "/buttonSouth", + "interactions": "", + "processors": "", + "groups": "Gamepad", + "action": "Jump", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "603f3daf-40bd-4854-8724-93e8017f59e3", + "path": "/secondaryButton", + "interactions": "", + "processors": "", + "groups": "XR", + "action": "Jump", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "1534dc16-a6aa-499d-9c3a-22b47347b52a", + "path": "/1", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Previous", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "25060bbd-a3a6-476e-8fba-45ae484aad05", + "path": "/dpad/left", + "interactions": "", + "processors": "", + "groups": "Gamepad", + "action": "Previous", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "1c04ea5f-b012-41d1-a6f7-02e963b52893", + "path": "/e", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Interact", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "b3f66d0b-7751-423f-908b-a11c5bd95930", + "path": "/buttonNorth", + "interactions": "", + "processors": "", + "groups": "Gamepad", + "action": "Interact", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "4f4649ac-64a8-4a73-af11-b3faef356a4d", + "path": "/buttonEast", + "interactions": "", + "processors": "", + "groups": "Gamepad", + "action": "Crouch", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "36e52cba-0905-478e-a818-f4bfcb9f3b9a", + "path": "/c", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Crouch", + "isComposite": false, + "isPartOfComposite": false + } + ] + }, + { + "name": "UI", + "id": "272f6d14-89ba-496f-b7ff-215263d3219f", + "actions": [ + { + "name": "Navigate", + "type": "PassThrough", + "id": "c95b2375-e6d9-4b88-9c4c-c5e76515df4b", + "expectedControlType": "Vector2", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "Submit", + "type": "Button", + "id": "7607c7b6-cd76-4816-beef-bd0341cfe950", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "Cancel", + "type": "Button", + "id": "15cef263-9014-4fd5-94d9-4e4a6234a6ef", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "Point", + "type": "PassThrough", + "id": "32b35790-4ed0-4e9a-aa41-69ac6d629449", + "expectedControlType": "Vector2", + "processors": "", + "interactions": "", + "initialStateCheck": true + }, + { + "name": "Click", + "type": "PassThrough", + "id": "3c7022bf-7922-4f7c-a998-c437916075ad", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": true + }, + { + "name": "RightClick", + "type": "PassThrough", + "id": "44b200b1-1557-4083-816c-b22cbdf77ddf", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "MiddleClick", + "type": "PassThrough", + "id": "dad70c86-b58c-4b17-88ad-f5e53adf419e", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "ScrollWheel", + "type": "PassThrough", + "id": "0489e84a-4833-4c40-bfae-cea84b696689", + "expectedControlType": "Vector2", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "TrackedDevicePosition", + "type": "PassThrough", + "id": "24908448-c609-4bc3-a128-ea258674378a", + "expectedControlType": "Vector3", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "TrackedDeviceOrientation", + "type": "PassThrough", + "id": "9caa3d8a-6b2f-4e8e-8bad-6ede561bd9be", + "expectedControlType": "Quaternion", + "processors": "", + "interactions": "", + "initialStateCheck": false + } + ], + "bindings": [ + { + "name": "Gamepad", + "id": "809f371f-c5e2-4e7a-83a1-d867598f40dd", + "path": "2DVector", + "interactions": "", + "processors": "", + "groups": "", + "action": "Navigate", + "isComposite": true, + "isPartOfComposite": false + }, + { + "name": "up", + "id": "14a5d6e8-4aaf-4119-a9ef-34b8c2c548bf", + "path": "/leftStick/up", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "up", + "id": "9144cbe6-05e1-4687-a6d7-24f99d23dd81", + "path": "/rightStick/up", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "2db08d65-c5fb-421b-983f-c71163608d67", + "path": "/leftStick/down", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "58748904-2ea9-4a80-8579-b500e6a76df8", + "path": "/rightStick/down", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "8ba04515-75aa-45de-966d-393d9bbd1c14", + "path": "/leftStick/left", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "712e721c-bdfb-4b23-a86c-a0d9fcfea921", + "path": "/rightStick/left", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "fcd248ae-a788-4676-a12e-f4d81205600b", + "path": "/leftStick/right", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "1f04d9bc-c50b-41a1-bfcc-afb75475ec20", + "path": "/rightStick/right", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "", + "id": "fb8277d4-c5cd-4663-9dc7-ee3f0b506d90", + "path": "/dpad", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "Joystick", + "id": "e25d9774-381c-4a61-b47c-7b6b299ad9f9", + "path": "2DVector", + "interactions": "", + "processors": "", + "groups": "", + "action": "Navigate", + "isComposite": true, + "isPartOfComposite": false + }, + { + "name": "up", + "id": "3db53b26-6601-41be-9887-63ac74e79d19", + "path": "/stick/up", + "interactions": "", + "processors": "", + "groups": "Joystick", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "0cb3e13e-3d90-4178-8ae6-d9c5501d653f", + "path": "/stick/down", + "interactions": "", + "processors": "", + "groups": "Joystick", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "0392d399-f6dd-4c82-8062-c1e9c0d34835", + "path": "/stick/left", + "interactions": "", + "processors": "", + "groups": "Joystick", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "942a66d9-d42f-43d6-8d70-ecb4ba5363bc", + "path": "/stick/right", + "interactions": "", + "processors": "", + "groups": "Joystick", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "Keyboard", + "id": "ff527021-f211-4c02-933e-5976594c46ed", + "path": "2DVector", + "interactions": "", + "processors": "", + "groups": "", + "action": "Navigate", + "isComposite": true, + "isPartOfComposite": false + }, + { + "name": "up", + "id": "563fbfdd-0f09-408d-aa75-8642c4f08ef0", + "path": "/w", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "up", + "id": "eb480147-c587-4a33-85ed-eb0ab9942c43", + "path": "/upArrow", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "2bf42165-60bc-42ca-8072-8c13ab40239b", + "path": "/s", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "85d264ad-e0a0-4565-b7ff-1a37edde51ac", + "path": "/downArrow", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "74214943-c580-44e4-98eb-ad7eebe17902", + "path": "/a", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "cea9b045-a000-445b-95b8-0c171af70a3b", + "path": "/leftArrow", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "8607c725-d935-4808-84b1-8354e29bab63", + "path": "/d", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "4cda81dc-9edd-4e03-9d7c-a71a14345d0b", + "path": "/rightArrow", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "", + "id": "9e92bb26-7e3b-4ec4-b06b-3c8f8e498ddc", + "path": "*/{Submit}", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse;Gamepad;Touch;Joystick;XR", + "action": "Submit", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "82627dcc-3b13-4ba9-841d-e4b746d6553e", + "path": "*/{Cancel}", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse;Gamepad;Touch;Joystick;XR", + "action": "Cancel", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "c52c8e0b-8179-41d3-b8a1-d149033bbe86", + "path": "/position", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Point", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "e1394cbc-336e-44ce-9ea8-6007ed6193f7", + "path": "/position", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Point", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "5693e57a-238a-46ed-b5ae-e64e6e574302", + "path": "/touch*/position", + "interactions": "", + "processors": "", + "groups": "Touch", + "action": "Point", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "4faf7dc9-b979-4210-aa8c-e808e1ef89f5", + "path": "/leftButton", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Click", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "8d66d5ba-88d7-48e6-b1cd-198bbfef7ace", + "path": "/tip", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Click", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "47c2a644-3ebc-4dae-a106-589b7ca75b59", + "path": "/touch*/press", + "interactions": "", + "processors": "", + "groups": "Touch", + "action": "Click", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "bb9e6b34-44bf-4381-ac63-5aa15d19f677", + "path": "/trigger", + "interactions": "", + "processors": "", + "groups": "XR", + "action": "Click", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "38c99815-14ea-4617-8627-164d27641299", + "path": "/scroll", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "ScrollWheel", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "4c191405-5738-4d4b-a523-c6a301dbf754", + "path": "/rightButton", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "RightClick", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "24066f69-da47-44f3-a07e-0015fb02eb2e", + "path": "/middleButton", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "MiddleClick", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "7236c0d9-6ca3-47cf-a6ee-a97f5b59ea77", + "path": "/devicePosition", + "interactions": "", + "processors": "", + "groups": "XR", + "action": "TrackedDevicePosition", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "23e01e3a-f935-4948-8d8b-9bcac77714fb", + "path": "/deviceRotation", + "interactions": "", + "processors": "", + "groups": "XR", + "action": "TrackedDeviceOrientation", + "isComposite": false, + "isPartOfComposite": false + } + ] + } + ], + "controlSchemes": [ + { + "name": "Keyboard&Mouse", + "bindingGroup": "Keyboard&Mouse", + "devices": [ + { + "devicePath": "", + "isOptional": false, + "isOR": false + }, + { + "devicePath": "", + "isOptional": false, + "isOR": false + } + ] + }, + { + "name": "Gamepad", + "bindingGroup": "Gamepad", + "devices": [ + { + "devicePath": "", + "isOptional": false, + "isOR": false + } + ] + }, + { + "name": "Touch", + "bindingGroup": "Touch", + "devices": [ + { + "devicePath": "", + "isOptional": false, + "isOR": false + } + ] + }, + { + "name": "Joystick", + "bindingGroup": "Joystick", + "devices": [ + { + "devicePath": "", + "isOptional": false, + "isOR": false + } + ] + }, + { + "name": "XR", + "bindingGroup": "XR", + "devices": [ + { + "devicePath": "", + "isOptional": false, + "isOR": false + } + ] + } + ] +} \ No newline at end of file diff --git a/Assets/InputSystem_Actions.inputactions.meta b/Assets/InputSystem_Actions.inputactions.meta new file mode 100644 index 0000000..6b38b04 --- /dev/null +++ b/Assets/InputSystem_Actions.inputactions.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 052faaac586de48259a63d0c4782560b +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 8404be70184654265930450def6a9037, type: 3} + generateWrapperCode: 0 + wrapperCodePath: + wrapperClassName: + wrapperCodeNamespace: diff --git a/Assets/Readme.asset b/Assets/Readme.asset new file mode 100644 index 0000000..77c2f83 --- /dev/null +++ b/Assets/Readme.asset @@ -0,0 +1,34 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fcf7219bab7fe46a1ad266029b2fee19, type: 3} + m_Name: Readme + m_EditorClassIdentifier: + icon: {fileID: 2800000, guid: 727a75301c3d24613a3ebcec4a24c2c8, type: 3} + title: URP Empty Template + sections: + - heading: Welcome to the Universal Render Pipeline + text: This template includes the settings and assets you need to start creating with the Universal Render Pipeline. + linkText: + url: + - heading: URP Documentation + text: + linkText: Read more about URP + url: https://docs.unity3d.com/Packages/com.unity.render-pipelines.universal@latest + - heading: Forums + text: + linkText: Get answers and support + url: https://forum.unity.com/forums/universal-render-pipeline.383/ + - heading: Report bugs + text: + linkText: Submit a report + url: https://unity3d.com/unity/qa/bug-reporting + loadedLayout: 1 diff --git a/Assets/Readme.asset.meta b/Assets/Readme.asset.meta new file mode 100644 index 0000000..ab3ad45 --- /dev/null +++ b/Assets/Readme.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8105016687592461f977c054a80ce2f2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes.meta b/Assets/Scenes.meta new file mode 100644 index 0000000..e59fb45 --- /dev/null +++ b/Assets/Scenes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9c53962885c2c4f449125a979d6ad240 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/SampleScene.unity b/Assets/Scenes/SampleScene.unity new file mode 100644 index 0000000..1c63aa8 --- /dev/null +++ b/Assets/Scenes/SampleScene.unity @@ -0,0 +1,432 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 10 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 0 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0.18028378, g: 0.22571412, b: 0.30692285, a: 1} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 12 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 20201, guid: 0000000000000000f000000000000000, type: 0} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 3 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + buildHeightMesh: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &330585543 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 330585546} + - component: {fileID: 330585545} + - component: {fileID: 330585544} + - component: {fileID: 330585547} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!81 &330585544 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 330585543} + m_Enabled: 1 +--- !u!20 &330585545 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 330585543} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &330585546 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 330585543} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: -10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &330585547 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 330585543} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 1 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + quality: 3 + frameInfluence: 0.1 + jitterScale: 1 + mipBias: 0 + varianceClampScale: 0.9 + contrastAdaptiveSharpening: 0 +--- !u!1 &410087039 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 410087041} + - component: {fileID: 410087040} + - component: {fileID: 410087042} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &410087040 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 410087039} + m_Enabled: 1 + serializedVersion: 11 + m_Type: 1 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 2 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 5000 + m_UseColorTemperature: 1 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ForceVisible: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &410087041 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 410087039} + serializedVersion: 2 + m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalPosition: {x: 0, y: 3, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!114 &410087042 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 410087039} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Version: 3 + m_UsePipelineSettings: 1 + m_AdditionalLightsShadowResolutionTier: 2 + m_LightLayerMask: 1 + m_RenderingLayers: 1 + m_CustomShadowLayers: 0 + m_ShadowLayerMask: 1 + m_ShadowRenderingLayers: 1 + m_LightCookieSize: {x: 1, y: 1} + m_LightCookieOffset: {x: 0, y: 0} + m_SoftShadowQuality: 1 +--- !u!1 &832575517 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 832575519} + - component: {fileID: 832575518} + m_Layer: 0 + m_Name: Global Volume + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &832575518 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 832575517} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 172515602e62fb746b5d573b38a5fe58, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IsGlobal: 1 + priority: 0 + blendDistance: 0 + weight: 1 + sharedProfile: {fileID: 11400000, guid: 10fc4df2da32a41aaa32d77bc913491c, type: 2} +--- !u!4 &832575519 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 832575517} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 330585546} + - {fileID: 410087041} + - {fileID: 832575519} diff --git a/Assets/Scenes/SampleScene.unity.meta b/Assets/Scenes/SampleScene.unity.meta new file mode 100644 index 0000000..9531828 --- /dev/null +++ b/Assets/Scenes/SampleScene.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 99c9720ab356a0642a771bea13969a05 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings.meta b/Assets/Settings.meta new file mode 100644 index 0000000..39b94dd --- /dev/null +++ b/Assets/Settings.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 709f11a7f3c4041caa4ef136ea32d874 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/DefaultVolumeProfile.asset b/Assets/Settings/DefaultVolumeProfile.asset new file mode 100644 index 0000000..9e4bbfd --- /dev/null +++ b/Assets/Settings/DefaultVolumeProfile.asset @@ -0,0 +1,983 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-9167874883656233139 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5485954d14dfb9a4c8ead8edb0ded5b1, type: 3} + m_Name: LiftGammaGain + m_EditorClassIdentifier: + active: 1 + lift: + m_OverrideState: 1 + m_Value: {x: 1, y: 1, z: 1, w: 0} + gamma: + m_OverrideState: 1 + m_Value: {x: 1, y: 1, z: 1, w: 0} + gain: + m_OverrideState: 1 + m_Value: {x: 1, y: 1, z: 1, w: 0} +--- !u!114 &-8270506406425502121 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 70afe9e12c7a7ed47911bb608a23a8ff, type: 3} + m_Name: SplitToning + m_EditorClassIdentifier: + active: 1 + shadows: + m_OverrideState: 1 + m_Value: {r: 0.5, g: 0.5, b: 0.5, a: 1} + highlights: + m_OverrideState: 1 + m_Value: {r: 0.5, g: 0.5, b: 0.5, a: 1} + balance: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &-8104416584915340131 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 0} + m_Name: CopyPasteTestComponent2 + m_EditorClassIdentifier: Unity.RenderPipelines.Core.Editor.Tests:UnityEditor.Rendering.Tests:VolumeComponentCopyPasteTests/CopyPasteTestComponent2 + active: 1 + p1: + m_OverrideState: 1 + m_Value: 0 + p2: + m_OverrideState: 1 + m_Value: 0 + p21: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &-7750755424749557576 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 60f3b30c03e6ba64d9a27dc9dba8f28d, type: 3} + m_Name: OutlineVolumeComponent + m_EditorClassIdentifier: + active: 1 + Enabled: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &-7743500325797982168 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ccf1aba9553839d41ae37dd52e9ebcce, type: 3} + m_Name: MotionBlur + m_EditorClassIdentifier: + active: 1 + mode: + m_OverrideState: 1 + m_Value: 0 + quality: + m_OverrideState: 1 + m_Value: 0 + intensity: + m_OverrideState: 1 + m_Value: 0 + clamp: + m_OverrideState: 1 + m_Value: 0.05 +--- !u!114 &-7274224791359825572 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0fd9ee276a1023e439cf7a9c393195fa, type: 3} + m_Name: TestAnimationCurveVolumeComponent + m_EditorClassIdentifier: + active: 1 + testParameter: + m_OverrideState: 1 + m_Value: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.5 + value: 10 + inSlope: 0 + outSlope: 10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 15 + inSlope: 10 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!114 &-6335409530604852063 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 66f335fb1ffd8684294ad653bf1c7564, type: 3} + m_Name: ColorAdjustments + m_EditorClassIdentifier: + active: 1 + postExposure: + m_OverrideState: 1 + m_Value: 0 + contrast: + m_OverrideState: 1 + m_Value: 0 + colorFilter: + m_OverrideState: 1 + m_Value: {r: 1, g: 1, b: 1, a: 1} + hueShift: + m_OverrideState: 1 + m_Value: 0 + saturation: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &-6288072647309666549 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 29fa0085f50d5e54f8144f766051a691, type: 3} + m_Name: FilmGrain + m_EditorClassIdentifier: + active: 1 + type: + m_OverrideState: 1 + m_Value: 0 + intensity: + m_OverrideState: 1 + m_Value: 0 + response: + m_OverrideState: 1 + m_Value: 0.8 + texture: + m_OverrideState: 1 + m_Value: {fileID: 0} +--- !u!114 &-5520245016509672950 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 97c23e3b12dc18c42a140437e53d3951, type: 3} + m_Name: Tonemapping + m_EditorClassIdentifier: + active: 1 + mode: + m_OverrideState: 1 + m_Value: 0 + neutralHDRRangeReductionMode: + m_OverrideState: 1 + m_Value: 2 + acesPreset: + m_OverrideState: 1 + m_Value: 3 + hueShiftAmount: + m_OverrideState: 1 + m_Value: 0 + detectPaperWhite: + m_OverrideState: 1 + m_Value: 0 + paperWhite: + m_OverrideState: 1 + m_Value: 300 + detectBrightnessLimits: + m_OverrideState: 1 + m_Value: 1 + minNits: + m_OverrideState: 1 + m_Value: 0.005 + maxNits: + m_OverrideState: 1 + m_Value: 1000 +--- !u!114 &-5360449096862653589 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 0} + m_Name: VolumeComponentSupportedEverywhere + m_EditorClassIdentifier: Unity.RenderPipelines.Core.Editor.Tests:UnityEngine.Rendering.Tests:VolumeComponentEditorSupportedOnTests/VolumeComponentSupportedEverywhere + active: 1 +--- !u!114 &-5139089513906902183 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5a00a63fdd6bd2a45ab1f2d869305ffd, type: 3} + m_Name: OasisFogVolumeComponent + m_EditorClassIdentifier: + active: 1 + Density: + m_OverrideState: 1 + m_Value: 0 + StartDistance: + m_OverrideState: 1 + m_Value: 0 + HeightRange: + m_OverrideState: 1 + m_Value: {x: 0, y: 50} + Tint: + m_OverrideState: 1 + m_Value: {r: 1, g: 1, b: 1, a: 1} + SunScatteringIntensity: + m_OverrideState: 1 + m_Value: 2 +--- !u!114 &-4463884970436517307 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fb60a22f311433c4c962b888d1393f88, type: 3} + m_Name: PaniniProjection + m_EditorClassIdentifier: + active: 1 + distance: + m_OverrideState: 1 + m_Value: 0 + cropToFit: + m_OverrideState: 1 + m_Value: 1 +--- !u!114 &-1410297666881709256 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6bd486065ce11414fa40e631affc4900, type: 3} + m_Name: ProbeVolumesOptions + m_EditorClassIdentifier: + active: 1 + normalBias: + m_OverrideState: 1 + m_Value: 0.33 + viewBias: + m_OverrideState: 1 + m_Value: 0 + scaleBiasWithMinProbeDistance: + m_OverrideState: 1 + m_Value: 0 + samplingNoise: + m_OverrideState: 1 + m_Value: 0.1 + animateSamplingNoise: + m_OverrideState: 1 + m_Value: 1 + leakReductionMode: + m_OverrideState: 1 + m_Value: 1 + minValidDotProductValue: + m_OverrideState: 1 + m_Value: 0.1 + occlusionOnlyReflectionNormalization: + m_OverrideState: 1 + m_Value: 1 + intensityMultiplier: + m_OverrideState: 1 + m_Value: 1 + skyOcclusionIntensityMultiplier: + m_OverrideState: 1 + m_Value: 1 + worldOffset: + m_OverrideState: 1 + m_Value: {x: 0, y: 0, z: 0} +--- !u!114 &-1216621516061285780 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0b2db86121404754db890f4c8dfe81b2, type: 3} + m_Name: Bloom + m_EditorClassIdentifier: + active: 1 + skipIterations: + m_OverrideState: 1 + m_Value: 1 + threshold: + m_OverrideState: 1 + m_Value: 0.9 + intensity: + m_OverrideState: 1 + m_Value: 0 + scatter: + m_OverrideState: 1 + m_Value: 0.7 + clamp: + m_OverrideState: 1 + m_Value: 65472 + tint: + m_OverrideState: 1 + m_Value: {r: 1, g: 1, b: 1, a: 1} + highQualityFiltering: + m_OverrideState: 1 + m_Value: 0 + downscale: + m_OverrideState: 1 + m_Value: 0 + maxIterations: + m_OverrideState: 1 + m_Value: 6 + dirtTexture: + m_OverrideState: 1 + m_Value: {fileID: 0} + dimension: 1 + dirtIntensity: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &-1170528603972255243 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 221518ef91623a7438a71fef23660601, type: 3} + m_Name: WhiteBalance + m_EditorClassIdentifier: + active: 1 + temperature: + m_OverrideState: 1 + m_Value: 0 + tint: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &-581120513425526550 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 0} + m_Name: CopyPasteTestComponent3 + m_EditorClassIdentifier: Unity.RenderPipelines.Core.Editor.Tests:UnityEditor.Rendering.Tests:VolumeComponentCopyPasteTests/CopyPasteTestComponent3 + active: 1 + p1: + m_OverrideState: 1 + m_Value: 0 + p2: + m_OverrideState: 1 + m_Value: 0 + p31: + m_OverrideState: 1 + m_Value: {r: 0, g: 0, b: 0, a: 1} +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3} + m_Name: DefaultVolumeProfile + m_EditorClassIdentifier: + components: + - {fileID: -9167874883656233139} + - {fileID: 1918650496244738858} + - {fileID: 853819529557874667} + - {fileID: 1052315754049611418} + - {fileID: -1170528603972255243} + - {fileID: -8270506406425502121} + - {fileID: -5520245016509672950} + - {fileID: 7173750748008157695} + - {fileID: 1666464333004379222} + - {fileID: 9001657382290151224} + - {fileID: -6335409530604852063} + - {fileID: -1216621516061285780} + - {fileID: 3959858460715838825} + - {fileID: -7743500325797982168} + - {fileID: 4644742534064026673} + - {fileID: -4463884970436517307} + - {fileID: -6288072647309666549} + - {fileID: 7518938298396184218} + - {fileID: -1410297666881709256} +--- !u!114 &853819529557874667 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 06437c1ff663d574d9447842ba0a72e4, type: 3} + m_Name: ScreenSpaceLensFlare + m_EditorClassIdentifier: + active: 1 + intensity: + m_OverrideState: 1 + m_Value: 0 + tintColor: + m_OverrideState: 1 + m_Value: {r: 1, g: 1, b: 1, a: 1} + bloomMip: + m_OverrideState: 1 + m_Value: 1 + firstFlareIntensity: + m_OverrideState: 1 + m_Value: 1 + secondaryFlareIntensity: + m_OverrideState: 1 + m_Value: 1 + warpedFlareIntensity: + m_OverrideState: 1 + m_Value: 1 + warpedFlareScale: + m_OverrideState: 1 + m_Value: {x: 1, y: 1} + samples: + m_OverrideState: 1 + m_Value: 1 + sampleDimmer: + m_OverrideState: 1 + m_Value: 0.5 + vignetteEffect: + m_OverrideState: 1 + m_Value: 1 + startingPosition: + m_OverrideState: 1 + m_Value: 1.25 + scale: + m_OverrideState: 1 + m_Value: 1.5 + streaksIntensity: + m_OverrideState: 1 + m_Value: 0 + streaksLength: + m_OverrideState: 1 + m_Value: 0.5 + streaksOrientation: + m_OverrideState: 1 + m_Value: 0 + streaksThreshold: + m_OverrideState: 1 + m_Value: 0.25 + resolution: + m_OverrideState: 1 + m_Value: 4 + chromaticAbberationIntensity: + m_OverrideState: 1 + m_Value: 0.5 +--- !u!114 &1052315754049611418 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 558a8e2b6826cf840aae193990ba9f2e, type: 3} + m_Name: ShadowsMidtonesHighlights + m_EditorClassIdentifier: + active: 1 + shadows: + m_OverrideState: 1 + m_Value: {x: 1, y: 1, z: 1, w: 0} + midtones: + m_OverrideState: 1 + m_Value: {x: 1, y: 1, z: 1, w: 0} + highlights: + m_OverrideState: 1 + m_Value: {x: 1, y: 1, z: 1, w: 0} + shadowsStart: + m_OverrideState: 1 + m_Value: 0 + shadowsEnd: + m_OverrideState: 1 + m_Value: 0.3 + highlightsStart: + m_OverrideState: 1 + m_Value: 0.55 + highlightsEnd: + m_OverrideState: 1 + m_Value: 1 +--- !u!114 &1666464333004379222 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3eb4b772797da9440885e8bd939e9560, type: 3} + m_Name: ColorCurves + m_EditorClassIdentifier: + active: 1 + master: + m_OverrideState: 1 + m_Value: + k__BackingField: 2 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + m_Curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + red: + m_OverrideState: 1 + m_Value: + k__BackingField: 2 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + m_Curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + green: + m_OverrideState: 1 + m_Value: + k__BackingField: 2 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + m_Curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + blue: + m_OverrideState: 1 + m_Value: + k__BackingField: 2 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + m_Curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + hueVsHue: + m_OverrideState: 1 + m_Value: + k__BackingField: 0 + m_Loop: 1 + m_ZeroValue: 0.5 + m_Range: 1 + m_Curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + hueVsSat: + m_OverrideState: 1 + m_Value: + k__BackingField: 0 + m_Loop: 1 + m_ZeroValue: 0.5 + m_Range: 1 + m_Curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + satVsSat: + m_OverrideState: 1 + m_Value: + k__BackingField: 0 + m_Loop: 0 + m_ZeroValue: 0.5 + m_Range: 1 + m_Curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + lumVsSat: + m_OverrideState: 1 + m_Value: + k__BackingField: 0 + m_Loop: 0 + m_ZeroValue: 0.5 + m_Range: 1 + m_Curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!114 &1918650496244738858 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e021b4c809a781e468c2988c016ebbea, type: 3} + m_Name: ColorLookup + m_EditorClassIdentifier: + active: 1 + texture: + m_OverrideState: 1 + m_Value: {fileID: 0} + dimension: 1 + contribution: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &3959858460715838825 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c01700fd266d6914ababb731e09af2eb, type: 3} + m_Name: DepthOfField + m_EditorClassIdentifier: + active: 1 + mode: + m_OverrideState: 1 + m_Value: 0 + gaussianStart: + m_OverrideState: 1 + m_Value: 10 + gaussianEnd: + m_OverrideState: 1 + m_Value: 30 + gaussianMaxRadius: + m_OverrideState: 1 + m_Value: 1 + highQualitySampling: + m_OverrideState: 1 + m_Value: 0 + focusDistance: + m_OverrideState: 1 + m_Value: 10 + aperture: + m_OverrideState: 1 + m_Value: 5.6 + focalLength: + m_OverrideState: 1 + m_Value: 50 + bladeCount: + m_OverrideState: 1 + m_Value: 5 + bladeCurvature: + m_OverrideState: 1 + m_Value: 1 + bladeRotation: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &4251301726029935498 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 74955a4b0b4243bc87231e8b59ed9140, type: 3} + m_Name: TestVolume + m_EditorClassIdentifier: + active: 1 + param: + m_OverrideState: 1 + m_Value: 123 +--- !u!114 &4644742534064026673 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 81180773991d8724ab7f2d216912b564, type: 3} + m_Name: ChromaticAberration + m_EditorClassIdentifier: + active: 1 + intensity: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &6940869943325143175 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 0} + m_Name: VolumeComponentSupportedOnAnySRP + m_EditorClassIdentifier: Unity.RenderPipelines.Core.Editor.Tests:UnityEngine.Rendering.Tests:VolumeComponentEditorSupportedOnTests/VolumeComponentSupportedOnAnySRP + active: 1 +--- !u!114 &7173750748008157695 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 899c54efeace73346a0a16faa3afe726, type: 3} + m_Name: Vignette + m_EditorClassIdentifier: + active: 1 + color: + m_OverrideState: 1 + m_Value: {r: 0, g: 0, b: 0, a: 1} + center: + m_OverrideState: 1 + m_Value: {x: 0.5, y: 0.5} + intensity: + m_OverrideState: 1 + m_Value: 0 + smoothness: + m_OverrideState: 1 + m_Value: 0.2 + rounded: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &7518938298396184218 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c5e1dc532bcb41949b58bc4f2abfbb7e, type: 3} + m_Name: LensDistortion + m_EditorClassIdentifier: + active: 1 + intensity: + m_OverrideState: 1 + m_Value: 0 + xMultiplier: + m_OverrideState: 1 + m_Value: 1 + yMultiplier: + m_OverrideState: 1 + m_Value: 1 + center: + m_OverrideState: 1 + m_Value: {x: 0.5, y: 0.5} + scale: + m_OverrideState: 1 + m_Value: 1 +--- !u!114 &9001657382290151224 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cdfbdbb87d3286943a057f7791b43141, type: 3} + m_Name: ChannelMixer + m_EditorClassIdentifier: + active: 1 + redOutRedIn: + m_OverrideState: 1 + m_Value: 100 + redOutGreenIn: + m_OverrideState: 1 + m_Value: 0 + redOutBlueIn: + m_OverrideState: 1 + m_Value: 0 + greenOutRedIn: + m_OverrideState: 1 + m_Value: 0 + greenOutGreenIn: + m_OverrideState: 1 + m_Value: 100 + greenOutBlueIn: + m_OverrideState: 1 + m_Value: 0 + blueOutRedIn: + m_OverrideState: 1 + m_Value: 0 + blueOutGreenIn: + m_OverrideState: 1 + m_Value: 0 + blueOutBlueIn: + m_OverrideState: 1 + m_Value: 100 +--- !u!114 &9122958982931076880 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 0} + m_Name: CopyPasteTestComponent1 + m_EditorClassIdentifier: Unity.RenderPipelines.Core.Editor.Tests:UnityEditor.Rendering.Tests:VolumeComponentCopyPasteTests/CopyPasteTestComponent1 + active: 1 + p1: + m_OverrideState: 1 + m_Value: 0 + p2: + m_OverrideState: 1 + m_Value: 0 diff --git a/Assets/Settings/DefaultVolumeProfile.asset.meta b/Assets/Settings/DefaultVolumeProfile.asset.meta new file mode 100644 index 0000000..53b314a --- /dev/null +++ b/Assets/Settings/DefaultVolumeProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ab09877e2e707104187f6f83e2f62510 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/Mobile_RPAsset.asset b/Assets/Settings/Mobile_RPAsset.asset new file mode 100644 index 0000000..0fdefd1 --- /dev/null +++ b/Assets/Settings/Mobile_RPAsset.asset @@ -0,0 +1,135 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bf2edee5c58d82540a51f03df9d42094, type: 3} + m_Name: Mobile_RPAsset + m_EditorClassIdentifier: + k_AssetVersion: 12 + k_AssetPreviousVersion: 12 + m_RendererType: 1 + m_RendererData: {fileID: 0} + m_RendererDataList: + - {fileID: 11400000, guid: 65bc7dbf4170f435aa868c779acfb082, type: 2} + m_DefaultRendererIndex: 0 + m_RequireDepthTexture: 0 + m_RequireOpaqueTexture: 0 + m_OpaqueDownsampling: 0 + m_SupportsTerrainHoles: 1 + m_SupportsHDR: 1 + m_HDRColorBufferPrecision: 0 + m_MSAA: 1 + m_RenderScale: 0.8 + m_UpscalingFilter: 3 + m_FsrOverrideSharpness: 0 + m_FsrSharpness: 0.92 + m_EnableLODCrossFade: 1 + m_LODCrossFadeDitheringType: 1 + m_ShEvalMode: 0 + m_LightProbeSystem: 0 + m_ProbeVolumeMemoryBudget: 1024 + m_ProbeVolumeBlendingMemoryBudget: 256 + m_SupportProbeVolumeGPUStreaming: 0 + m_SupportProbeVolumeDiskStreaming: 0 + m_SupportProbeVolumeScenarios: 0 + m_SupportProbeVolumeScenarioBlending: 0 + m_ProbeVolumeSHBands: 1 + m_MainLightRenderingMode: 1 + m_MainLightShadowsSupported: 1 + m_MainLightShadowmapResolution: 1024 + m_AdditionalLightsRenderingMode: 1 + m_AdditionalLightsPerObjectLimit: 4 + m_AdditionalLightShadowsSupported: 0 + m_AdditionalLightsShadowmapResolution: 2048 + m_AdditionalLightsShadowResolutionTierLow: 256 + m_AdditionalLightsShadowResolutionTierMedium: 512 + m_AdditionalLightsShadowResolutionTierHigh: 1024 + m_ReflectionProbeBlending: 1 + m_ReflectionProbeBoxProjection: 1 + m_ShadowDistance: 50 + m_ShadowCascadeCount: 1 + m_Cascade2Split: 0.25 + m_Cascade3Split: {x: 0.1, y: 0.3} + m_Cascade4Split: {x: 0.067, y: 0.2, z: 0.467} + m_CascadeBorder: 0.2 + m_ShadowDepthBias: 1 + m_ShadowNormalBias: 1 + m_AnyShadowsSupported: 1 + m_SoftShadowsSupported: 0 + m_ConservativeEnclosingSphere: 1 + m_NumIterationsEnclosingSphere: 64 + m_SoftShadowQuality: 2 + m_AdditionalLightsCookieResolution: 1024 + m_AdditionalLightsCookieFormat: 1 + m_UseSRPBatcher: 1 + m_SupportsDynamicBatching: 0 + m_MixedLightingSupported: 1 + m_SupportsLightCookies: 1 + m_SupportsLightLayers: 1 + m_DebugLevel: 0 + m_StoreActionsOptimization: 0 + m_UseAdaptivePerformance: 1 + m_ColorGradingMode: 0 + m_ColorGradingLutSize: 32 + m_UseFastSRGBLinearConversion: 1 + m_SupportDataDrivenLensFlare: 1 + m_SupportScreenSpaceLensFlare: 1 + m_GPUResidentDrawerMode: 0 + m_UseLegacyLightmaps: 0 + m_SmallMeshScreenPercentage: 0 + m_GPUResidentDrawerEnableOcclusionCullingInCameras: 0 + m_ShadowType: 1 + m_LocalShadowsSupported: 0 + m_LocalShadowsAtlasResolution: 256 + m_MaxPixelLights: 0 + m_ShadowAtlasResolution: 256 + m_VolumeFrameworkUpdateMode: 0 + m_VolumeProfile: {fileID: 11400000, guid: 10fc4df2da32a41aaa32d77bc913491c, type: 2} + apvScenesData: + obsoleteSceneBounds: + m_Keys: [] + m_Values: [] + obsoleteHasProbeVolumes: + m_Keys: [] + m_Values: + m_PrefilteringModeMainLightShadows: 3 + m_PrefilteringModeAdditionalLight: 4 + m_PrefilteringModeAdditionalLightShadows: 0 + m_PrefilterXRKeywords: 1 + m_PrefilteringModeForwardPlus: 1 + m_PrefilteringModeDeferredRendering: 0 + m_PrefilteringModeScreenSpaceOcclusion: 0 + m_PrefilterDebugKeywords: 1 + m_PrefilterWriteRenderingLayers: 1 + m_PrefilterHDROutput: 1 + m_PrefilterSSAODepthNormals: 1 + m_PrefilterSSAOSourceDepthLow: 1 + m_PrefilterSSAOSourceDepthMedium: 0 + m_PrefilterSSAOSourceDepthHigh: 1 + m_PrefilterSSAOInterleaved: 0 + m_PrefilterSSAOBlueNoise: 1 + m_PrefilterSSAOSampleCountLow: 1 + m_PrefilterSSAOSampleCountMedium: 0 + m_PrefilterSSAOSampleCountHigh: 1 + m_PrefilterDBufferMRT1: 1 + m_PrefilterDBufferMRT2: 1 + m_PrefilterDBufferMRT3: 1 + m_PrefilterSoftShadowsQualityLow: 1 + m_PrefilterSoftShadowsQualityMedium: 1 + m_PrefilterSoftShadowsQualityHigh: 1 + m_PrefilterSoftShadows: 0 + m_PrefilterScreenCoord: 1 + m_PrefilterNativeRenderPass: 1 + m_PrefilterUseLegacyLightmaps: 0 + m_ShaderVariantLogLevel: 0 + m_ShadowCascades: 0 + m_Textures: + blueNoise64LTex: {fileID: 2800000, guid: e3d24661c1e055f45a7560c033dbb837, type: 3} + bayerMatrixTex: {fileID: 2800000, guid: f9ee4ed84c1d10c49aabb9b210b0fc44, type: 3} diff --git a/Assets/Settings/Mobile_RPAsset.asset.meta b/Assets/Settings/Mobile_RPAsset.asset.meta new file mode 100644 index 0000000..3660d15 --- /dev/null +++ b/Assets/Settings/Mobile_RPAsset.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5e6cbd92db86f4b18aec3ed561671858 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/Mobile_Renderer.asset b/Assets/Settings/Mobile_Renderer.asset new file mode 100644 index 0000000..99d4fa5 --- /dev/null +++ b/Assets/Settings/Mobile_Renderer.asset @@ -0,0 +1,52 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: de640fe3d0db1804a85f9fc8f5cadab6, type: 3} + m_Name: Mobile_Renderer + m_EditorClassIdentifier: + debugShaders: + debugReplacementPS: {fileID: 4800000, guid: cf852408f2e174538bcd9b7fda1c5ae7, + type: 3} + hdrDebugViewPS: {fileID: 4800000, guid: 573620ae32aec764abd4d728906d2587, type: 3} + probeVolumeSamplingDebugComputeShader: {fileID: 7200000, guid: 53626a513ea68ce47b59dc1299fe3959, + type: 3} + probeVolumeResources: + probeVolumeDebugShader: {fileID: 0} + probeVolumeFragmentationDebugShader: {fileID: 0} + probeVolumeOffsetDebugShader: {fileID: 0} + probeVolumeSamplingDebugShader: {fileID: 0} + probeSamplingDebugMesh: {fileID: 0} + probeSamplingDebugTexture: {fileID: 0} + probeVolumeBlendStatesCS: {fileID: 0} + m_RendererFeatures: [] + m_RendererFeatureMap: + m_UseNativeRenderPass: 1 + postProcessData: {fileID: 11400000, guid: 41439944d30ece34e96484bdb6645b55, type: 2} + m_AssetVersion: 2 + m_OpaqueLayerMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_TransparentLayerMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_DefaultStencilState: + overrideStencilState: 0 + stencilReference: 0 + stencilCompareFunction: 8 + passOperation: 2 + failOperation: 0 + zFailOperation: 0 + m_ShadowTransparentReceive: 0 + m_RenderingMode: 2 + m_DepthPrimingMode: 0 + m_CopyDepthMode: 0 + m_AccurateGbufferNormals: 0 + m_IntermediateTextureMode: 0 diff --git a/Assets/Settings/Mobile_Renderer.asset.meta b/Assets/Settings/Mobile_Renderer.asset.meta new file mode 100644 index 0000000..a3588b1 --- /dev/null +++ b/Assets/Settings/Mobile_Renderer.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 65bc7dbf4170f435aa868c779acfb082 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/PC_RPAsset.asset b/Assets/Settings/PC_RPAsset.asset new file mode 100644 index 0000000..8b30a06 --- /dev/null +++ b/Assets/Settings/PC_RPAsset.asset @@ -0,0 +1,135 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bf2edee5c58d82540a51f03df9d42094, type: 3} + m_Name: PC_RPAsset + m_EditorClassIdentifier: + k_AssetVersion: 12 + k_AssetPreviousVersion: 12 + m_RendererType: 1 + m_RendererData: {fileID: 0} + m_RendererDataList: + - {fileID: 11400000, guid: f288ae1f4751b564a96ac7587541f7a2, type: 2} + m_DefaultRendererIndex: 0 + m_RequireDepthTexture: 1 + m_RequireOpaqueTexture: 1 + m_OpaqueDownsampling: 1 + m_SupportsTerrainHoles: 1 + m_SupportsHDR: 1 + m_HDRColorBufferPrecision: 0 + m_MSAA: 1 + m_RenderScale: 1 + m_UpscalingFilter: 0 + m_FsrOverrideSharpness: 0 + m_FsrSharpness: 0.92 + m_EnableLODCrossFade: 1 + m_LODCrossFadeDitheringType: 1 + m_ShEvalMode: 0 + m_LightProbeSystem: 0 + m_ProbeVolumeMemoryBudget: 1024 + m_ProbeVolumeBlendingMemoryBudget: 256 + m_SupportProbeVolumeGPUStreaming: 0 + m_SupportProbeVolumeDiskStreaming: 0 + m_SupportProbeVolumeScenarios: 0 + m_SupportProbeVolumeScenarioBlending: 0 + m_ProbeVolumeSHBands: 1 + m_MainLightRenderingMode: 1 + m_MainLightShadowsSupported: 1 + m_MainLightShadowmapResolution: 2048 + m_AdditionalLightsRenderingMode: 1 + m_AdditionalLightsPerObjectLimit: 4 + m_AdditionalLightShadowsSupported: 1 + m_AdditionalLightsShadowmapResolution: 2048 + m_AdditionalLightsShadowResolutionTierLow: 256 + m_AdditionalLightsShadowResolutionTierMedium: 512 + m_AdditionalLightsShadowResolutionTierHigh: 1024 + m_ReflectionProbeBlending: 1 + m_ReflectionProbeBoxProjection: 1 + m_ShadowDistance: 50 + m_ShadowCascadeCount: 4 + m_Cascade2Split: 0.25 + m_Cascade3Split: {x: 0.1, y: 0.3} + m_Cascade4Split: {x: 0.12299999, y: 0.2926, z: 0.53599995} + m_CascadeBorder: 0.107758604 + m_ShadowDepthBias: 0.1 + m_ShadowNormalBias: 0.5 + m_AnyShadowsSupported: 1 + m_SoftShadowsSupported: 1 + m_ConservativeEnclosingSphere: 1 + m_NumIterationsEnclosingSphere: 64 + m_SoftShadowQuality: 3 + m_AdditionalLightsCookieResolution: 2048 + m_AdditionalLightsCookieFormat: 3 + m_UseSRPBatcher: 1 + m_SupportsDynamicBatching: 0 + m_MixedLightingSupported: 1 + m_SupportsLightCookies: 1 + m_SupportsLightLayers: 1 + m_DebugLevel: 0 + m_StoreActionsOptimization: 0 + m_UseAdaptivePerformance: 1 + m_ColorGradingMode: 0 + m_ColorGradingLutSize: 32 + m_UseFastSRGBLinearConversion: 0 + m_SupportDataDrivenLensFlare: 1 + m_SupportScreenSpaceLensFlare: 1 + m_GPUResidentDrawerMode: 0 + m_UseLegacyLightmaps: 0 + m_SmallMeshScreenPercentage: 0 + m_GPUResidentDrawerEnableOcclusionCullingInCameras: 0 + m_ShadowType: 1 + m_LocalShadowsSupported: 0 + m_LocalShadowsAtlasResolution: 256 + m_MaxPixelLights: 0 + m_ShadowAtlasResolution: 256 + m_VolumeFrameworkUpdateMode: 0 + m_VolumeProfile: {fileID: 11400000, guid: 10fc4df2da32a41aaa32d77bc913491c, type: 2} + apvScenesData: + obsoleteSceneBounds: + m_Keys: [] + m_Values: [] + obsoleteHasProbeVolumes: + m_Keys: [] + m_Values: + m_PrefilteringModeMainLightShadows: 3 + m_PrefilteringModeAdditionalLight: 4 + m_PrefilteringModeAdditionalLightShadows: 0 + m_PrefilterXRKeywords: 1 + m_PrefilteringModeForwardPlus: 1 + m_PrefilteringModeDeferredRendering: 0 + m_PrefilteringModeScreenSpaceOcclusion: 1 + m_PrefilterDebugKeywords: 1 + m_PrefilterWriteRenderingLayers: 0 + m_PrefilterHDROutput: 1 + m_PrefilterSSAODepthNormals: 0 + m_PrefilterSSAOSourceDepthLow: 1 + m_PrefilterSSAOSourceDepthMedium: 1 + m_PrefilterSSAOSourceDepthHigh: 1 + m_PrefilterSSAOInterleaved: 1 + m_PrefilterSSAOBlueNoise: 0 + m_PrefilterSSAOSampleCountLow: 1 + m_PrefilterSSAOSampleCountMedium: 0 + m_PrefilterSSAOSampleCountHigh: 1 + m_PrefilterDBufferMRT1: 1 + m_PrefilterDBufferMRT2: 1 + m_PrefilterDBufferMRT3: 0 + m_PrefilterSoftShadowsQualityLow: 0 + m_PrefilterSoftShadowsQualityMedium: 0 + m_PrefilterSoftShadowsQualityHigh: 0 + m_PrefilterSoftShadows: 0 + m_PrefilterScreenCoord: 1 + m_PrefilterNativeRenderPass: 1 + m_PrefilterUseLegacyLightmaps: 0 + m_ShaderVariantLogLevel: 0 + m_ShadowCascades: 0 + m_Textures: + blueNoise64LTex: {fileID: 2800000, guid: e3d24661c1e055f45a7560c033dbb837, type: 3} + bayerMatrixTex: {fileID: 2800000, guid: f9ee4ed84c1d10c49aabb9b210b0fc44, type: 3} diff --git a/Assets/Settings/PC_RPAsset.asset.meta b/Assets/Settings/PC_RPAsset.asset.meta new file mode 100644 index 0000000..e286b2f --- /dev/null +++ b/Assets/Settings/PC_RPAsset.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4b83569d67af61e458304325a23e5dfd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/PC_Renderer.asset b/Assets/Settings/PC_Renderer.asset new file mode 100644 index 0000000..475b02e --- /dev/null +++ b/Assets/Settings/PC_Renderer.asset @@ -0,0 +1,95 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: de640fe3d0db1804a85f9fc8f5cadab6, type: 3} + m_Name: PC_Renderer + m_EditorClassIdentifier: + debugShaders: + debugReplacementPS: {fileID: 4800000, guid: cf852408f2e174538bcd9b7fda1c5ae7, + type: 3} + hdrDebugViewPS: {fileID: 4800000, guid: 573620ae32aec764abd4d728906d2587, type: 3} + probeVolumeSamplingDebugComputeShader: {fileID: 7200000, guid: 53626a513ea68ce47b59dc1299fe3959, + type: 3} + probeVolumeResources: + probeVolumeDebugShader: {fileID: 4800000, guid: e5c6678ed2aaa91408dd3df699057aae, + type: 3} + probeVolumeFragmentationDebugShader: {fileID: 4800000, guid: 03cfc4915c15d504a9ed85ecc404e607, + type: 3} + probeVolumeOffsetDebugShader: {fileID: 4800000, guid: 53a11f4ebaebf4049b3638ef78dc9664, + type: 3} + probeVolumeSamplingDebugShader: {fileID: 4800000, guid: 8f96cd657dc40064aa21efcc7e50a2e7, + type: 3} + probeSamplingDebugMesh: {fileID: -3555484719484374845, guid: 57d7c4c16e2765b47a4d2069b311bffe, + type: 3} + probeSamplingDebugTexture: {fileID: 2800000, guid: 24ec0e140fb444a44ab96ee80844e18e, + type: 3} + probeVolumeBlendStatesCS: {fileID: 7200000, guid: b9a23f869c4fd45f19c5ada54dd82176, + type: 3} + m_RendererFeatures: + - {fileID: 7833122117494664109} + m_RendererFeatureMap: ad6b866f10d7b46c + m_UseNativeRenderPass: 1 + postProcessData: {fileID: 11400000, guid: 41439944d30ece34e96484bdb6645b55, type: 2} + m_AssetVersion: 2 + m_OpaqueLayerMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_TransparentLayerMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_DefaultStencilState: + overrideStencilState: 0 + stencilReference: 1 + stencilCompareFunction: 3 + passOperation: 2 + failOperation: 0 + zFailOperation: 0 + m_ShadowTransparentReceive: 1 + m_RenderingMode: 2 + m_DepthPrimingMode: 0 + m_CopyDepthMode: 0 + m_AccurateGbufferNormals: 0 + m_IntermediateTextureMode: 0 +--- !u!114 &7833122117494664109 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f62c9c65cf3354c93be831c8bc075510, type: 3} + m_Name: ScreenSpaceAmbientOcclusion + m_EditorClassIdentifier: + m_Active: 1 + m_Settings: + AOMethod: 0 + Downsample: 0 + AfterOpaque: 0 + Source: 1 + NormalSamples: 1 + Intensity: 0.4 + DirectLightingStrength: 0.25 + Radius: 0.3 + Samples: 1 + BlurQuality: 0 + Falloff: 100 + SampleCount: -1 + m_BlueNoise256Textures: + - {fileID: 2800000, guid: 36f118343fc974119bee3d09e2111500, type: 3} + - {fileID: 2800000, guid: 4b7b083e6b6734e8bb2838b0b50a0bc8, type: 3} + - {fileID: 2800000, guid: c06cc21c692f94f5fb5206247191eeee, type: 3} + - {fileID: 2800000, guid: cb76dd40fa7654f9587f6a344f125c9a, type: 3} + - {fileID: 2800000, guid: e32226222ff144b24bf3a5a451de54bc, type: 3} + - {fileID: 2800000, guid: 3302065f671a8450b82c9ddf07426f3a, type: 3} + - {fileID: 2800000, guid: 56a77a3e8d64f47b6afe9e3c95cb57d5, type: 3} + m_Shader: {fileID: 4800000, guid: 0849e84e3d62649e8882e9d6f056a017, type: 3} diff --git a/Assets/Settings/PC_Renderer.asset.meta b/Assets/Settings/PC_Renderer.asset.meta new file mode 100644 index 0000000..ddae6a5 --- /dev/null +++ b/Assets/Settings/PC_Renderer.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f288ae1f4751b564a96ac7587541f7a2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/SampleSceneProfile.asset b/Assets/Settings/SampleSceneProfile.asset new file mode 100644 index 0000000..c1b0f63 --- /dev/null +++ b/Assets/Settings/SampleSceneProfile.asset @@ -0,0 +1,159 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7893295128165547882 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0b2db86121404754db890f4c8dfe81b2, type: 3} + m_Name: Bloom + m_EditorClassIdentifier: + active: 1 + skipIterations: + m_OverrideState: 1 + m_Value: 0 + threshold: + m_OverrideState: 1 + m_Value: 1 + intensity: + m_OverrideState: 1 + m_Value: 0.25 + scatter: + m_OverrideState: 1 + m_Value: 0.5 + clamp: + m_OverrideState: 0 + m_Value: 65472 + tint: + m_OverrideState: 0 + m_Value: {r: 1, g: 1, b: 1, a: 1} + highQualityFiltering: + m_OverrideState: 1 + m_Value: 1 + downscale: + m_OverrideState: 0 + m_Value: 0 + maxIterations: + m_OverrideState: 0 + m_Value: 6 + dirtTexture: + m_OverrideState: 0 + m_Value: {fileID: 0} + dimension: 1 + dirtIntensity: + m_OverrideState: 0 + m_Value: 0 +--- !u!114 &-3357603926938260329 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 899c54efeace73346a0a16faa3afe726, type: 3} + m_Name: Vignette + m_EditorClassIdentifier: + active: 1 + color: + m_OverrideState: 0 + m_Value: {r: 0, g: 0, b: 0, a: 1} + center: + m_OverrideState: 0 + m_Value: {x: 0.5, y: 0.5} + intensity: + m_OverrideState: 1 + m_Value: 0.2 + smoothness: + m_OverrideState: 0 + m_Value: 0.2 + rounded: + m_OverrideState: 0 + m_Value: 0 +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3} + m_Name: SampleSceneProfile + m_EditorClassIdentifier: + components: + - {fileID: 849379129802519247} + - {fileID: -7893295128165547882} + - {fileID: 7391319092446245454} + - {fileID: -3357603926938260329} +--- !u!114 &849379129802519247 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 97c23e3b12dc18c42a140437e53d3951, type: 3} + m_Name: Tonemapping + m_EditorClassIdentifier: + active: 1 + mode: + m_OverrideState: 1 + m_Value: 1 + neutralHDRRangeReductionMode: + m_OverrideState: 0 + m_Value: 2 + acesPreset: + m_OverrideState: 0 + m_Value: 3 + hueShiftAmount: + m_OverrideState: 0 + m_Value: 0 + detectPaperWhite: + m_OverrideState: 1 + m_Value: 0 + paperWhite: + m_OverrideState: 1 + m_Value: 234 + detectBrightnessLimits: + m_OverrideState: 1 + m_Value: 1 + minNits: + m_OverrideState: 1 + m_Value: 0.005 + maxNits: + m_OverrideState: 1 + m_Value: 647 +--- !u!114 &7391319092446245454 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ccf1aba9553839d41ae37dd52e9ebcce, type: 3} + m_Name: MotionBlur + m_EditorClassIdentifier: + active: 0 + mode: + m_OverrideState: 0 + m_Value: 0 + quality: + m_OverrideState: 1 + m_Value: 2 + intensity: + m_OverrideState: 1 + m_Value: 0.6 + clamp: + m_OverrideState: 0 + m_Value: 0.05 diff --git a/Assets/Settings/SampleSceneProfile.asset.meta b/Assets/Settings/SampleSceneProfile.asset.meta new file mode 100644 index 0000000..b82270c --- /dev/null +++ b/Assets/Settings/SampleSceneProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 10fc4df2da32a41aaa32d77bc913491c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/UniversalRenderPipelineGlobalSettings.asset b/Assets/Settings/UniversalRenderPipelineGlobalSettings.asset new file mode 100644 index 0000000..d090ab3 --- /dev/null +++ b/Assets/Settings/UniversalRenderPipelineGlobalSettings.asset @@ -0,0 +1,261 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2ec995e51a6e251468d2a3fd8a686257, type: 3} + m_Name: UniversalRenderPipelineGlobalSettings + m_EditorClassIdentifier: + m_ShaderStrippingSetting: + m_Version: 0 + m_ExportShaderVariants: 1 + m_ShaderVariantLogLevel: 0 + m_StripRuntimeDebugShaders: 1 + m_URPShaderStrippingSetting: + m_Version: 0 + m_StripUnusedPostProcessingVariants: 1 + m_StripUnusedVariants: 1 + m_StripScreenCoordOverrideVariants: 1 + m_ShaderVariantLogLevel: 0 + m_ExportShaderVariants: 1 + m_StripDebugVariants: 1 + m_StripUnusedPostProcessingVariants: 1 + m_StripUnusedVariants: 1 + m_StripScreenCoordOverrideVariants: 1 + supportRuntimeDebugDisplay: 0 + m_EnableRenderGraph: 0 + m_Settings: + m_SettingsList: + m_List: + - rid: 6852985685364965376 + - rid: 6852985685364965377 + - rid: 6852985685364965378 + - rid: 6852985685364965379 + - rid: 6852985685364965380 + - rid: 6852985685364965381 + - rid: 6852985685364965382 + - rid: 6852985685364965383 + - rid: 6852985685364965384 + - rid: 6852985685364965385 + - rid: 6852985685364965386 + - rid: 6852985685364965387 + - rid: 6852985685364965388 + - rid: 6852985685364965389 + - rid: 6852985685364965390 + - rid: 6852985685364965391 + - rid: 6852985685364965392 + - rid: 6852985685364965393 + - rid: 6852985685364965394 + - rid: 8712630790384254976 + - rid: 4271273955116974080 + - rid: 4271273955116974081 + m_RuntimeSettings: + m_List: [] + m_AssetVersion: 8 + m_ObsoleteDefaultVolumeProfile: {fileID: 0} + m_RenderingLayerNames: + - Light Layer default + - Light Layer 1 + - Light Layer 2 + - Light Layer 3 + - Light Layer 4 + - Light Layer 5 + - Light Layer 6 + - Light Layer 7 + m_ValidRenderingLayers: 0 + lightLayerName0: Light Layer default + lightLayerName1: Light Layer 1 + lightLayerName2: Light Layer 2 + lightLayerName3: Light Layer 3 + lightLayerName4: Light Layer 4 + lightLayerName5: Light Layer 5 + lightLayerName6: Light Layer 6 + lightLayerName7: Light Layer 7 + apvScenesData: + obsoleteSceneBounds: + m_Keys: [] + m_Values: [] + obsoleteHasProbeVolumes: + m_Keys: [] + m_Values: + references: + version: 2 + RefIds: + - rid: 4271273955116974080 + type: {class: UniversalRenderPipelineRuntimeXRResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_xrOcclusionMeshPS: {fileID: 4800000, guid: 4431b1f1f743fbf4eb310a967890cbea, type: 3} + m_xrMirrorViewPS: {fileID: 4800000, guid: d5a307c014552314b9f560906d708772, type: 3} + m_xrMotionVector: {fileID: 4800000, guid: f89aac1e4f84468418fe30e611dff395, type: 3} + - rid: 4271273955116974081 + type: {class: UniversalRenderPipelineEditorAssets, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_DefaultSettingsVolumeProfile: {fileID: 11400000, guid: eda47df5b85f4f249abf7abd73db2cb2, type: 2} + - rid: 6852985685364965376 + type: {class: URPShaderStrippingSetting, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_StripUnusedPostProcessingVariants: 1 + m_StripUnusedVariants: 1 + m_StripScreenCoordOverrideVariants: 1 + - rid: 6852985685364965377 + type: {class: UniversalRenderPipelineEditorShaders, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_AutodeskInteractive: {fileID: 4800000, guid: 0e9d5a909a1f7e84882a534d0d11e49f, type: 3} + m_AutodeskInteractiveTransparent: {fileID: 4800000, guid: 5c81372d981403744adbdda4433c9c11, type: 3} + m_AutodeskInteractiveMasked: {fileID: 4800000, guid: 80aa867ac363ac043847b06ad71604cd, type: 3} + m_TerrainDetailLit: {fileID: 4800000, guid: f6783ab646d374f94b199774402a5144, type: 3} + m_TerrainDetailGrassBillboard: {fileID: 4800000, guid: 29868e73b638e48ca99a19ea58c48d90, type: 3} + m_TerrainDetailGrass: {fileID: 4800000, guid: e507fdfead5ca47e8b9a768b51c291a1, type: 3} + m_DefaultSpeedTree7Shader: {fileID: 4800000, guid: 0f4122b9a743b744abe2fb6a0a88868b, type: 3} + m_DefaultSpeedTree8Shader: {fileID: -6465566751694194690, guid: 9920c1f1781549a46ba081a2a15a16ec, type: 3} + m_DefaultSpeedTree9Shader: {fileID: -6465566751694194690, guid: cbd3e1cc4ae141c42a30e33b4d666a61, type: 3} + - rid: 6852985685364965378 + type: {class: UniversalRendererResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_CopyDepthPS: {fileID: 4800000, guid: d6dae50ee9e1bfa4db75f19f99355220, type: 3} + m_CameraMotionVector: {fileID: 4800000, guid: c56b7e0d4c7cb484e959caeeedae9bbf, type: 3} + m_StencilDeferredPS: {fileID: 4800000, guid: e9155b26e1bc55942a41e518703fe304, type: 3} + m_DBufferClear: {fileID: 4800000, guid: f056d8bd2a1c7e44e9729144b4c70395, type: 3} + - rid: 6852985685364965379 + type: {class: UniversalRenderPipelineDebugShaders, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_DebugReplacementPS: {fileID: 4800000, guid: cf852408f2e174538bcd9b7fda1c5ae7, type: 3} + m_HdrDebugViewPS: {fileID: 4800000, guid: 573620ae32aec764abd4d728906d2587, type: 3} + m_ProbeVolumeSamplingDebugComputeShader: {fileID: 7200000, guid: 53626a513ea68ce47b59dc1299fe3959, type: 3} + - rid: 6852985685364965380 + type: {class: UniversalRenderPipelineRuntimeShaders, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_FallbackErrorShader: {fileID: 4800000, guid: e6e9a19c3678ded42a3bc431ebef7dbd, type: 3} + m_BlitHDROverlay: {fileID: 4800000, guid: a89bee29cffa951418fc1e2da94d1959, type: 3} + m_CoreBlitPS: {fileID: 4800000, guid: 93446b5c5339d4f00b85c159e1159b7c, type: 3} + m_CoreBlitColorAndDepthPS: {fileID: 4800000, guid: d104b2fc1ca6445babb8e90b0758136b, type: 3} + m_SamplingPS: {fileID: 4800000, guid: 04c410c9937594faa893a11dceb85f7e, type: 3} + - rid: 6852985685364965381 + type: {class: UniversalRenderPipelineRuntimeTextures, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 1 + m_BlueNoise64LTex: {fileID: 2800000, guid: e3d24661c1e055f45a7560c033dbb837, type: 3} + m_BayerMatrixTex: {fileID: 2800000, guid: f9ee4ed84c1d10c49aabb9b210b0fc44, type: 3} + m_DebugFontTex: {fileID: 2800000, guid: 26a413214480ef144b2915d6ff4d0beb, type: 3} + - rid: 6852985685364965382 + type: {class: Renderer2DResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_LightShader: {fileID: 4800000, guid: 3f6c848ca3d7bca4bbe846546ac701a1, type: 3} + m_ProjectedShadowShader: {fileID: 4800000, guid: ce09d4a80b88c5a4eb9768fab4f1ee00, type: 3} + m_SpriteShadowShader: {fileID: 4800000, guid: 44fc62292b65ab04eabcf310e799ccf6, type: 3} + m_SpriteUnshadowShader: {fileID: 4800000, guid: de02b375720b5c445afe83cd483bedf3, type: 3} + m_GeometryShadowShader: {fileID: 4800000, guid: 19349a0f9a7ed4c48a27445bcf92e5e1, type: 3} + m_GeometryUnshadowShader: {fileID: 4800000, guid: 77774d9009bb81447b048c907d4c6273, type: 3} + m_FallOffLookup: {fileID: 2800000, guid: 5688ab254e4c0634f8d6c8e0792331ca, type: 3} + m_CopyDepthPS: {fileID: 4800000, guid: d6dae50ee9e1bfa4db75f19f99355220, type: 3} + m_DefaultLitMaterial: {fileID: 2100000, guid: a97c105638bdf8b4a8650670310a4cd3, type: 2} + m_DefaultUnlitMaterial: {fileID: 2100000, guid: 9dfc825aed78fcd4ba02077103263b40, type: 2} + m_DefaultMaskMaterial: {fileID: 2100000, guid: 15d0c3709176029428a0da2f8cecf0b5, type: 2} + - rid: 6852985685364965383 + type: {class: UniversalRenderPipelineEditorMaterials, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_DefaultMaterial: {fileID: 2100000, guid: 31321ba15b8f8eb4c954353edc038b1d, type: 2} + m_DefaultParticleMaterial: {fileID: 2100000, guid: e823cd5b5d27c0f4b8256e7c12ee3e6d, type: 2} + m_DefaultLineMaterial: {fileID: 2100000, guid: e823cd5b5d27c0f4b8256e7c12ee3e6d, type: 2} + m_DefaultTerrainMaterial: {fileID: 2100000, guid: 594ea882c5a793440b60ff72d896021e, type: 2} + m_DefaultDecalMaterial: {fileID: 2100000, guid: 31d0dcc6f2dd4e4408d18036a2c93862, type: 2} + m_DefaultSpriteMaterial: {fileID: 2100000, guid: 9dfc825aed78fcd4ba02077103263b40, type: 2} + - rid: 6852985685364965384 + type: {class: URPDefaultVolumeProfileSettings, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_VolumeProfile: {fileID: 11400000, guid: ab09877e2e707104187f6f83e2f62510, type: 2} + - rid: 6852985685364965385 + type: {class: RenderGraphSettings, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_EnableRenderCompatibilityMode: 0 + - rid: 6852985685364965386 + type: {class: GPUResidentDrawerResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.GPUDriven.Runtime} + data: + m_Version: 0 + m_InstanceDataBufferCopyKernels: {fileID: 7200000, guid: f984aeb540ded8b4fbb8a2047ab5b2e2, type: 3} + m_InstanceDataBufferUploadKernels: {fileID: 7200000, guid: 53864816eb00f2343b60e1a2c5a262ef, type: 3} + m_TransformUpdaterKernels: {fileID: 7200000, guid: 2a567b9b2733f8d47a700c3c85bed75b, type: 3} + m_WindDataUpdaterKernels: {fileID: 7200000, guid: fde76746e4fd0ed418c224f6b4084114, type: 3} + m_OccluderDepthPyramidKernels: {fileID: 7200000, guid: 08b2b5fb307b0d249860612774a987da, type: 3} + m_InstanceOcclusionCullingKernels: {fileID: 7200000, guid: f6d223acabc2f974795a5a7864b50e6c, type: 3} + m_OcclusionCullingDebugKernels: {fileID: 7200000, guid: b23e766bcf50ca4438ef186b174557df, type: 3} + m_DebugOcclusionTestPS: {fileID: 4800000, guid: d3f0849180c2d0944bc71060693df100, type: 3} + m_DebugOccluderPS: {fileID: 4800000, guid: b3c92426a88625841ab15ca6a7917248, type: 3} + - rid: 6852985685364965387 + type: {class: STP/RuntimeResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_setupCS: {fileID: 7200000, guid: 33be2e9a5506b2843bdb2bdff9cad5e1, type: 3} + m_preTaaCS: {fileID: 7200000, guid: a679dba8ec4d9ce45884a270b0e22dda, type: 3} + m_taaCS: {fileID: 7200000, guid: 3923900e2b41b5e47bc25bfdcbcdc9e6, type: 3} + - rid: 6852985685364965388 + type: {class: ProbeVolumeBakingResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 1 + dilationShader: {fileID: 7200000, guid: 6bb382f7de370af41b775f54182e491d, type: 3} + subdivideSceneCS: {fileID: 7200000, guid: bb86f1f0af829fd45b2ebddda1245c22, type: 3} + voxelizeSceneShader: {fileID: 4800000, guid: c8b6a681c7b4e2e4785ffab093907f9e, type: 3} + traceVirtualOffsetCS: {fileID: -6772857160820960102, guid: ff2cbab5da58bf04d82c5f34037ed123, type: 3} + traceVirtualOffsetRT: {fileID: -5126288278712620388, guid: ff2cbab5da58bf04d82c5f34037ed123, type: 3} + skyOcclusionCS: {fileID: -6772857160820960102, guid: 5a2a534753fbdb44e96c3c78b5a6999d, type: 3} + skyOcclusionRT: {fileID: -5126288278712620388, guid: 5a2a534753fbdb44e96c3c78b5a6999d, type: 3} + renderingLayerCS: {fileID: -6772857160820960102, guid: 94a070d33e408384bafc1dea4a565df9, type: 3} + renderingLayerRT: {fileID: -5126288278712620388, guid: 94a070d33e408384bafc1dea4a565df9, type: 3} + - rid: 6852985685364965389 + type: {class: ProbeVolumeGlobalSettings, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 1 + m_ProbeVolumeDisableStreamingAssets: 0 + - rid: 6852985685364965390 + type: {class: ProbeVolumeDebugResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 1 + probeVolumeDebugShader: {fileID: 4800000, guid: 3b21275fd12d65f49babb5286f040f2d, type: 3} + probeVolumeFragmentationDebugShader: {fileID: 4800000, guid: 3a80877c579b9144ebdcc6d923bca303, type: 3} + probeVolumeSamplingDebugShader: {fileID: 4800000, guid: bf54e6528c79a224e96346799064c393, type: 3} + probeVolumeOffsetDebugShader: {fileID: 4800000, guid: db8bd7436dc2c5f4c92655307d198381, type: 3} + probeSamplingDebugMesh: {fileID: -3555484719484374845, guid: 20be25aac4e22ee49a7db76fb3df6de2, type: 3} + numbersDisplayTex: {fileID: 2800000, guid: 73fe53b428c5b3440b7e87ee830b608a, type: 3} + - rid: 6852985685364965391 + type: {class: IncludeAdditionalRPAssets, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_version: 0 + m_IncludeReferencedInScenes: 0 + m_IncludeAssetsByLabel: 0 + m_LabelToInclude: + - rid: 6852985685364965392 + type: {class: ShaderStrippingSetting, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 0 + m_ExportShaderVariants: 1 + m_ShaderVariantLogLevel: 0 + m_StripRuntimeDebugShaders: 1 + - rid: 6852985685364965393 + type: {class: ProbeVolumeRuntimeResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 1 + probeVolumeBlendStatesCS: {fileID: 7200000, guid: a3f7b8c99de28a94684cb1daebeccf5d, type: 3} + probeVolumeUploadDataCS: {fileID: 7200000, guid: 0951de5992461754fa73650732c4954c, type: 3} + probeVolumeUploadDataL2CS: {fileID: 7200000, guid: 6196f34ed825db14b81fb3eb0ea8d931, type: 3} + - rid: 6852985685364965394 + type: {class: RenderGraphGlobalSettings, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_version: 0 + m_EnableCompilationCaching: 1 + m_EnableValidityChecks: 1 + - rid: 8712630790384254976 + type: {class: RenderGraphUtilsResources, ns: UnityEngine.Rendering.RenderGraphModule.Util, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 0 + m_CoreCopyPS: {fileID: 4800000, guid: 12dc59547ea167a4ab435097dd0f9add, type: 3} diff --git a/Assets/Settings/UniversalRenderPipelineGlobalSettings.asset.meta b/Assets/Settings/UniversalRenderPipelineGlobalSettings.asset.meta new file mode 100644 index 0000000..81b84f2 --- /dev/null +++ b/Assets/Settings/UniversalRenderPipelineGlobalSettings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 18dc0cd2c080841dea60987a38ce93fa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo.meta b/Assets/TutorialInfo.meta new file mode 100644 index 0000000..a700bca --- /dev/null +++ b/Assets/TutorialInfo.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ba062aa6c92b140379dbc06b43dd3b9b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Icons.meta b/Assets/TutorialInfo/Icons.meta new file mode 100644 index 0000000..1d19fb9 --- /dev/null +++ b/Assets/TutorialInfo/Icons.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 8a0c9218a650547d98138cd835033977 +folderAsset: yes +timeCreated: 1484670163 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Icons/URP.png b/Assets/TutorialInfo/Icons/URP.png new file mode 100644 index 0000000..bdbf408 --- /dev/null +++ b/Assets/TutorialInfo/Icons/URP.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d17a9ff3537859abe2c008603d29d90cf43191ae77aa386167cc65e53ba03d9 +size 24069 diff --git a/Assets/TutorialInfo/Icons/URP.png.meta b/Assets/TutorialInfo/Icons/URP.png.meta new file mode 100644 index 0000000..0f2cab0 --- /dev/null +++ b/Assets/TutorialInfo/Icons/URP.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: 727a75301c3d24613a3ebcec4a24c2c8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Layout.wlt b/Assets/TutorialInfo/Layout.wlt new file mode 100644 index 0000000..7b50a25 --- /dev/null +++ b/Assets/TutorialInfo/Layout.wlt @@ -0,0 +1,654 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_PixelRect: + serializedVersion: 2 + x: 0 + y: 45 + width: 1666 + height: 958 + m_ShowMode: 4 + m_Title: + m_RootView: {fileID: 6} + m_MinSize: {x: 950, y: 542} + m_MaxSize: {x: 10000, y: 10000} +--- !u!114 &2 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 466 + width: 290 + height: 442 + m_MinSize: {x: 234, y: 271} + m_MaxSize: {x: 10004, y: 10021} + m_ActualView: {fileID: 14} + m_Panes: + - {fileID: 14} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &3 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 4} + - {fileID: 2} + m_Position: + serializedVersion: 2 + x: 973 + y: 0 + width: 290 + height: 908 + m_MinSize: {x: 234, y: 492} + m_MaxSize: {x: 10004, y: 14042} + vertical: 1 + controlID: 226 +--- !u!114 &4 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 290 + height: 466 + m_MinSize: {x: 204, y: 221} + m_MaxSize: {x: 4004, y: 4021} + m_ActualView: {fileID: 17} + m_Panes: + - {fileID: 17} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &5 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 466 + width: 973 + height: 442 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 15} + m_Panes: + - {fileID: 15} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &6 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12008, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 7} + - {fileID: 8} + - {fileID: 9} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1666 + height: 958 + m_MinSize: {x: 950, y: 542} + m_MaxSize: {x: 10000, y: 10000} +--- !u!114 &7 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12011, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1666 + height: 30 + m_MinSize: {x: 0, y: 0} + m_MaxSize: {x: 0, y: 0} + m_LastLoadedLayoutName: Tutorial +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 10} + - {fileID: 3} + - {fileID: 11} + m_Position: + serializedVersion: 2 + x: 0 + y: 30 + width: 1666 + height: 908 + m_MinSize: {x: 713, y: 492} + m_MaxSize: {x: 18008, y: 14042} + vertical: 0 + controlID: 74 +--- !u!114 &9 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12042, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 938 + width: 1666 + height: 20 + m_MinSize: {x: 0, y: 0} + m_MaxSize: {x: 0, y: 0} +--- !u!114 &10 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 12} + - {fileID: 5} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 973 + height: 908 + m_MinSize: {x: 202, y: 442} + m_MaxSize: {x: 4002, y: 8042} + vertical: 1 + controlID: 75 +--- !u!114 &11 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 1263 + y: 0 + width: 403 + height: 908 + m_MinSize: {x: 277, y: 71} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 13} + m_Panes: + - {fileID: 13} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &12 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 973 + height: 466 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 16} + m_Panes: + - {fileID: 16} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &13 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 0 + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Inspector + m_Image: {fileID: -6905738622615590433, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 0 + m_Pos: + serializedVersion: 2 + x: 2 + y: 19 + width: 401 + height: 887 + m_ScrollPosition: {x: 0, y: 0} + m_InspectorMode: 0 + m_PreviewResizer: + m_CachedPref: -160 + m_ControlHash: -371814159 + m_PrefName: Preview_InspectorPreview + m_PreviewWindow: {fileID: 0} +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 0 + m_MinSize: {x: 230, y: 250} + m_MaxSize: {x: 10000, y: 10000} + m_TitleContent: + m_Text: Project + m_Image: {fileID: -7501376956915960154, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 0 + m_Pos: + serializedVersion: 2 + x: 2 + y: 19 + width: 286 + height: 421 + m_SearchFilter: + m_NameFilter: + m_ClassNames: [] + m_AssetLabels: [] + m_AssetBundleNames: [] + m_VersionControlStates: [] + m_ReferencingInstanceIDs: + m_ScenePaths: [] + m_ShowAllHits: 0 + m_SearchArea: 0 + m_Folders: + - Assets + m_ViewMode: 0 + m_StartGridSize: 64 + m_LastFolders: + - Assets + m_LastFoldersGridSize: -1 + m_LastProjectPath: /Users/danielbrauer/Unity Projects/New Unity Project 47 + m_IsLocked: 0 + m_FolderTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: ee240000 + m_LastClickedID: 9454 + m_ExpandedIDs: ee24000000ca9a3bffffff7f + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_AssetTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: 68fbffff + m_LastClickedID: 0 + m_ExpandedIDs: ee240000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_ListAreaState: + m_SelectedInstanceIDs: 68fbffff + m_LastClickedInstanceID: -1176 + m_HadKeyboardFocusLastEvent: 0 + m_ExpandedInstanceIDs: c6230000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 0} + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_NewAssetIndexInList: -1 + m_ScrollPosition: {x: 0, y: 0} + m_GridSize: 64 + m_DirectoriesAreaWidth: 110 +--- !u!114 &15 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 1 + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Game + m_Image: {fileID: -2087823869225018852, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 32 + m_Pos: + serializedVersion: 2 + x: 0 + y: 19 + width: 971 + height: 421 + m_MaximizeOnPlay: 0 + m_Gizmos: 0 + m_Stats: 0 + m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_TargetDisplay: 0 + m_ZoomArea: + m_HRangeLocked: 0 + m_VRangeLocked: 0 + m_HBaseRangeMin: -242.75 + m_HBaseRangeMax: 242.75 + m_VBaseRangeMin: -101 + m_VBaseRangeMax: 101 + m_HAllowExceedBaseRangeMin: 1 + m_HAllowExceedBaseRangeMax: 1 + m_VAllowExceedBaseRangeMin: 1 + m_VAllowExceedBaseRangeMax: 1 + m_ScaleWithWindow: 0 + m_HSlider: 0 + m_VSlider: 0 + m_IgnoreScrollWheelUntilClicked: 0 + m_EnableMouseInput: 1 + m_EnableSliderZoom: 0 + m_UniformScale: 1 + m_UpDirection: 1 + m_DrawArea: + serializedVersion: 2 + x: 0 + y: 17 + width: 971 + height: 404 + m_Scale: {x: 2, y: 2} + m_Translation: {x: 485.5, y: 202} + m_MarginLeft: 0 + m_MarginRight: 0 + m_MarginTop: 0 + m_MarginBottom: 0 + m_LastShownAreaInsideMargins: + serializedVersion: 2 + x: -242.75 + y: -101 + width: 485.5 + height: 202 + m_MinimalGUI: 1 + m_defaultScale: 2 + m_TargetTexture: {fileID: 0} + m_CurrentColorSpace: 0 + m_LastWindowPixelSize: {x: 1942, y: 842} + m_ClearInEditMode: 1 + m_NoCameraWarning: 1 + m_LowResolutionForAspectRatios: 01000000000100000100 +--- !u!114 &16 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12013, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 1 + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Scene + m_Image: {fileID: 2318424515335265636, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 32 + m_Pos: + serializedVersion: 2 + x: 0 + y: 19 + width: 971 + height: 445 + m_SceneLighting: 1 + lastFramingTime: 0 + m_2DMode: 0 + m_isRotationLocked: 0 + m_AudioPlay: 0 + m_Position: + m_Target: {x: 0, y: 0, z: 0} + speed: 2 + m_Value: {x: 0, y: 0, z: 0} + m_RenderMode: 0 + m_ValidateTrueMetals: 0 + m_SceneViewState: + showFog: 1 + showMaterialUpdate: 0 + showSkybox: 1 + showFlares: 1 + showImageEffects: 1 + grid: + xGrid: + m_Target: 0 + speed: 2 + m_Value: 0 + yGrid: + m_Target: 1 + speed: 2 + m_Value: 1 + zGrid: + m_Target: 0 + speed: 2 + m_Value: 0 + m_Rotation: + m_Target: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} + speed: 2 + m_Value: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} + m_Size: + m_Target: 10 + speed: 2 + m_Value: 10 + m_Ortho: + m_Target: 0 + speed: 2 + m_Value: 0 + m_LastSceneViewRotation: {x: 0, y: 0, z: 0, w: 0} + m_LastSceneViewOrtho: 0 + m_ReplacementShader: {fileID: 0} + m_ReplacementString: + m_LastLockedObject: {fileID: 0} + m_ViewIsLockedToObject: 0 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 0 + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Hierarchy + m_Image: {fileID: -590624980919486359, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 0 + m_Pos: + serializedVersion: 2 + x: 2 + y: 19 + width: 286 + height: 445 + m_TreeViewState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: 68fbffff + m_LastClickedID: -1176 + m_ExpandedIDs: 7efbffff00000000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 0 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_ExpandedScenes: + - + m_CurrenRootInstanceID: 0 + m_Locked: 0 + m_CurrentSortingName: TransformSorting diff --git a/Assets/TutorialInfo/Layout.wlt.meta b/Assets/TutorialInfo/Layout.wlt.meta new file mode 100644 index 0000000..c0c8c77 --- /dev/null +++ b/Assets/TutorialInfo/Layout.wlt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eabc9546105bf4accac1fd62a63e88e6 +timeCreated: 1487337779 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Scripts.meta b/Assets/TutorialInfo/Scripts.meta new file mode 100644 index 0000000..02da605 --- /dev/null +++ b/Assets/TutorialInfo/Scripts.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 5a9bcd70e6a4b4b05badaa72e827d8e0 +folderAsset: yes +timeCreated: 1475835190 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Scripts/Editor.meta b/Assets/TutorialInfo/Scripts/Editor.meta new file mode 100644 index 0000000..f59f099 --- /dev/null +++ b/Assets/TutorialInfo/Scripts/Editor.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 3ad9b87dffba344c89909c6d1b1c17e1 +folderAsset: yes +timeCreated: 1475593892 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs b/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs new file mode 100644 index 0000000..ad55eca --- /dev/null +++ b/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs @@ -0,0 +1,242 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; +using System; +using System.IO; +using System.Reflection; + +[CustomEditor(typeof(Readme))] +[InitializeOnLoad] +public class ReadmeEditor : Editor +{ + static string s_ShowedReadmeSessionStateName = "ReadmeEditor.showedReadme"; + + static string s_ReadmeSourceDirectory = "Assets/TutorialInfo"; + + const float k_Space = 16f; + + static ReadmeEditor() + { + EditorApplication.delayCall += SelectReadmeAutomatically; + } + + static void RemoveTutorial() + { + if (EditorUtility.DisplayDialog("Remove Readme Assets", + + $"All contents under {s_ReadmeSourceDirectory} will be removed, are you sure you want to proceed?", + "Proceed", + "Cancel")) + { + if (Directory.Exists(s_ReadmeSourceDirectory)) + { + FileUtil.DeleteFileOrDirectory(s_ReadmeSourceDirectory); + FileUtil.DeleteFileOrDirectory(s_ReadmeSourceDirectory + ".meta"); + } + else + { + Debug.Log($"Could not find the Readme folder at {s_ReadmeSourceDirectory}"); + } + + var readmeAsset = SelectReadme(); + if (readmeAsset != null) + { + var path = AssetDatabase.GetAssetPath(readmeAsset); + FileUtil.DeleteFileOrDirectory(path + ".meta"); + FileUtil.DeleteFileOrDirectory(path); + } + + AssetDatabase.Refresh(); + } + } + + static void SelectReadmeAutomatically() + { + if (!SessionState.GetBool(s_ShowedReadmeSessionStateName, false)) + { + var readme = SelectReadme(); + SessionState.SetBool(s_ShowedReadmeSessionStateName, true); + + if (readme && !readme.loadedLayout) + { + LoadLayout(); + readme.loadedLayout = true; + } + } + } + + static void LoadLayout() + { + var assembly = typeof(EditorApplication).Assembly; + var windowLayoutType = assembly.GetType("UnityEditor.WindowLayout", true); + var method = windowLayoutType.GetMethod("LoadWindowLayout", BindingFlags.Public | BindingFlags.Static); + method.Invoke(null, new object[] { Path.Combine(Application.dataPath, "TutorialInfo/Layout.wlt"), false }); + } + + static Readme SelectReadme() + { + var ids = AssetDatabase.FindAssets("Readme t:Readme"); + if (ids.Length == 1) + { + var readmeObject = AssetDatabase.LoadMainAssetAtPath(AssetDatabase.GUIDToAssetPath(ids[0])); + + Selection.objects = new UnityEngine.Object[] { readmeObject }; + + return (Readme)readmeObject; + } + else + { + Debug.Log("Couldn't find a readme"); + return null; + } + } + + protected override void OnHeaderGUI() + { + var readme = (Readme)target; + Init(); + + var iconWidth = Mathf.Min(EditorGUIUtility.currentViewWidth / 3f - 20f, 128f); + + GUILayout.BeginHorizontal("In BigTitle"); + { + if (readme.icon != null) + { + GUILayout.Space(k_Space); + GUILayout.Label(readme.icon, GUILayout.Width(iconWidth), GUILayout.Height(iconWidth)); + } + GUILayout.Space(k_Space); + GUILayout.BeginVertical(); + { + + GUILayout.FlexibleSpace(); + GUILayout.Label(readme.title, TitleStyle); + GUILayout.FlexibleSpace(); + } + GUILayout.EndVertical(); + GUILayout.FlexibleSpace(); + } + GUILayout.EndHorizontal(); + } + + public override void OnInspectorGUI() + { + var readme = (Readme)target; + Init(); + + foreach (var section in readme.sections) + { + if (!string.IsNullOrEmpty(section.heading)) + { + GUILayout.Label(section.heading, HeadingStyle); + } + + if (!string.IsNullOrEmpty(section.text)) + { + GUILayout.Label(section.text, BodyStyle); + } + + if (!string.IsNullOrEmpty(section.linkText)) + { + if (LinkLabel(new GUIContent(section.linkText))) + { + Application.OpenURL(section.url); + } + } + + GUILayout.Space(k_Space); + } + + if (GUILayout.Button("Remove Readme Assets", ButtonStyle)) + { + RemoveTutorial(); + } + } + + bool m_Initialized; + + GUIStyle LinkStyle + { + get { return m_LinkStyle; } + } + + [SerializeField] + GUIStyle m_LinkStyle; + + GUIStyle TitleStyle + { + get { return m_TitleStyle; } + } + + [SerializeField] + GUIStyle m_TitleStyle; + + GUIStyle HeadingStyle + { + get { return m_HeadingStyle; } + } + + [SerializeField] + GUIStyle m_HeadingStyle; + + GUIStyle BodyStyle + { + get { return m_BodyStyle; } + } + + [SerializeField] + GUIStyle m_BodyStyle; + + GUIStyle ButtonStyle + { + get { return m_ButtonStyle; } + } + + [SerializeField] + GUIStyle m_ButtonStyle; + + void Init() + { + if (m_Initialized) + return; + m_BodyStyle = new GUIStyle(EditorStyles.label); + m_BodyStyle.wordWrap = true; + m_BodyStyle.fontSize = 14; + m_BodyStyle.richText = true; + + m_TitleStyle = new GUIStyle(m_BodyStyle); + m_TitleStyle.fontSize = 26; + + m_HeadingStyle = new GUIStyle(m_BodyStyle); + m_HeadingStyle.fontStyle = FontStyle.Bold; + m_HeadingStyle.fontSize = 18; + + m_LinkStyle = new GUIStyle(m_BodyStyle); + m_LinkStyle.wordWrap = false; + + // Match selection color which works nicely for both light and dark skins + m_LinkStyle.normal.textColor = new Color(0x00 / 255f, 0x78 / 255f, 0xDA / 255f, 1f); + m_LinkStyle.stretchWidth = false; + + m_ButtonStyle = new GUIStyle(EditorStyles.miniButton); + m_ButtonStyle.fontStyle = FontStyle.Bold; + + m_Initialized = true; + } + + bool LinkLabel(GUIContent label, params GUILayoutOption[] options) + { + var position = GUILayoutUtility.GetRect(label, LinkStyle, options); + + Handles.BeginGUI(); + Handles.color = LinkStyle.normal.textColor; + Handles.DrawLine(new Vector3(position.xMin, position.yMax), new Vector3(position.xMax, position.yMax)); + Handles.color = Color.white; + Handles.EndGUI(); + + EditorGUIUtility.AddCursorRect(position, MouseCursor.Link); + + return GUI.Button(position, label, LinkStyle); + } +} diff --git a/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta b/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta new file mode 100644 index 0000000..f038618 --- /dev/null +++ b/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 476cc7d7cd9874016adc216baab94a0a +timeCreated: 1484146680 +licenseType: Store +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Scripts/Readme.cs b/Assets/TutorialInfo/Scripts/Readme.cs new file mode 100644 index 0000000..95f6269 --- /dev/null +++ b/Assets/TutorialInfo/Scripts/Readme.cs @@ -0,0 +1,16 @@ +using System; +using UnityEngine; + +public class Readme : ScriptableObject +{ + public Texture2D icon; + public string title; + public Section[] sections; + public bool loadedLayout; + + [Serializable] + public class Section + { + public string heading, text, linkText, url; + } +} diff --git a/Assets/TutorialInfo/Scripts/Readme.cs.meta b/Assets/TutorialInfo/Scripts/Readme.cs.meta new file mode 100644 index 0000000..935153f --- /dev/null +++ b/Assets/TutorialInfo/Scripts/Readme.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fcf7219bab7fe46a1ad266029b2fee19 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: + - icon: {instanceID: 0} + executionOrder: 0 + icon: {fileID: 2800000, guid: a186f8a87ca4f4d3aa864638ad5dfb65, type: 3} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Packages/manifest.json b/Packages/manifest.json new file mode 100644 index 0000000..e73c7ce --- /dev/null +++ b/Packages/manifest.json @@ -0,0 +1,59 @@ +{ + "dependencies": { + "com.spoiledcat.git": "1.0.44", + "com.unity.ai.navigation": "2.0.5", + "com.unity.collab-proxy": "2.7.1", + "com.unity.ide.rider": "3.0.31", + "com.unity.ide.visualstudio": "2.0.22", + "com.unity.inputsystem": "1.11.2", + "com.unity.multiplayer.center": "1.0.0", + "com.unity.render-pipelines.universal": "17.0.3", + "com.unity.test-framework": "1.4.5", + "com.unity.timeline": "1.8.7", + "com.unity.toolchain.win-x86_64-linux-x86_64": "2.0.10", + "com.unity.ugui": "2.0.0", + "com.unity.visualscripting": "1.9.5", + "com.unity.modules.accessibility": "1.0.0", + "com.unity.modules.ai": "1.0.0", + "com.unity.modules.androidjni": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.cloth": "1.0.0", + "com.unity.modules.director": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.physics2d": "1.0.0", + "com.unity.modules.screencapture": "1.0.0", + "com.unity.modules.terrain": "1.0.0", + "com.unity.modules.terrainphysics": "1.0.0", + "com.unity.modules.tilemap": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.uielements": "1.0.0", + "com.unity.modules.umbra": "1.0.0", + "com.unity.modules.unityanalytics": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.unitywebrequesttexture": "1.0.0", + "com.unity.modules.unitywebrequestwww": "1.0.0", + "com.unity.modules.vehicles": "1.0.0", + "com.unity.modules.video": "1.0.0", + "com.unity.modules.vr": "1.0.0", + "com.unity.modules.wind": "1.0.0", + "com.unity.modules.xr": "1.0.0" + }, + "scopedRegistries": [ + { + "name": "spoiledcat", + "url": "https://registry.spoiledcat.com", + "scopes": [ + "com.spoiledcat" + ], + "overrideBuiltIns": false + } + ] +} diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json new file mode 100644 index 0000000..4207f64 --- /dev/null +++ b/Packages/packages-lock.json @@ -0,0 +1,498 @@ +{ + "dependencies": { + "com.spoiledcat.git": { + "version": "1.0.44", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://registry.spoiledcat.com" + }, + "com.unity.ai.navigation": { + "version": "2.0.5", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.ai": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.burst": { + "version": "1.8.18", + "depth": 2, + "source": "registry", + "dependencies": { + "com.unity.mathematics": "1.2.1", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.collab-proxy": { + "version": "2.7.1", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.collections": { + "version": "2.5.1", + "depth": 2, + "source": "registry", + "dependencies": { + "com.unity.burst": "1.8.17", + "com.unity.test-framework": "1.4.5", + "com.unity.nuget.mono-cecil": "1.11.4", + "com.unity.test-framework.performance": "3.0.3" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ext.nunit": { + "version": "2.0.5", + "depth": 1, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.ide.rider": { + "version": "3.0.31", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ext.nunit": "1.0.6" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ide.visualstudio": { + "version": "2.0.22", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.test-framework": "1.1.9" + }, + "url": "https://packages.unity.com" + }, + "com.unity.inputsystem": { + "version": "1.11.2", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.uielements": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.mathematics": { + "version": "1.3.2", + "depth": 2, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.multiplayer.center": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.uielements": "1.0.0" + } + }, + "com.unity.nuget.mono-cecil": { + "version": "1.11.4", + "depth": 3, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.render-pipelines.core": { + "version": "17.0.3", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.burst": "1.8.14", + "com.unity.mathematics": "1.3.2", + "com.unity.ugui": "2.0.0", + "com.unity.collections": "2.4.3", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.terrain": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.rendering.light-transport": "1.0.1" + } + }, + "com.unity.render-pipelines.universal": { + "version": "17.0.3", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.render-pipelines.core": "17.0.3", + "com.unity.shadergraph": "17.0.3", + "com.unity.render-pipelines.universal-config": "17.0.3" + } + }, + "com.unity.render-pipelines.universal-config": { + "version": "17.0.3", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.render-pipelines.core": "17.0.3" + } + }, + "com.unity.rendering.light-transport": { + "version": "1.0.1", + "depth": 2, + "source": "builtin", + "dependencies": { + "com.unity.collections": "2.2.0", + "com.unity.mathematics": "1.2.4", + "com.unity.modules.terrain": "1.0.0" + } + }, + "com.unity.searcher": { + "version": "4.9.2", + "depth": 2, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.shadergraph": { + "version": "17.0.3", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.render-pipelines.core": "17.0.3", + "com.unity.searcher": "4.9.2" + } + }, + "com.unity.sysroot": { + "version": "2.0.10", + "depth": 1, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.sysroot.linux-x86_64": { + "version": "2.0.9", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.sysroot": "2.0.10" + }, + "url": "https://packages.unity.com" + }, + "com.unity.test-framework": { + "version": "1.4.5", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ext.nunit": "2.0.3", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.test-framework.performance": { + "version": "3.0.3", + "depth": 3, + "source": "registry", + "dependencies": { + "com.unity.test-framework": "1.1.31", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.timeline": { + "version": "1.8.7", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.director": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.toolchain.win-x86_64-linux-x86_64": { + "version": "2.0.10", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.sysroot": "2.0.10", + "com.unity.sysroot.linux-x86_64": "2.0.9" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ugui": { + "version": "2.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0" + } + }, + "com.unity.visualscripting": { + "version": "1.9.5", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ugui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.modules.accessibility": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.ai": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.androidjni": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.animation": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.assetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.audio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.cloth": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.director": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.animation": "1.0.0" + } + }, + "com.unity.modules.hierarchycore": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.imageconversion": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.imgui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.jsonserialize": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.particlesystem": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics2d": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.screencapture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.subsystems": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.terrain": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.terrainphysics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.terrain": "1.0.0" + } + }, + "com.unity.modules.tilemap": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics2d": "1.0.0" + } + }, + "com.unity.modules.ui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.uielements": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.hierarchycore": "1.0.0" + } + }, + "com.unity.modules.umbra": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unityanalytics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.unitywebrequest": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unitywebrequestassetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestaudio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.audio": "1.0.0" + } + }, + "com.unity.modules.unitywebrequesttexture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestwww": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.vehicles": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.video": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.vr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.xr": "1.0.0" + } + }, + "com.unity.modules.wind": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.xr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.subsystems": "1.0.0" + } + } + } +} diff --git a/ProjectSettings/AudioManager.asset b/ProjectSettings/AudioManager.asset new file mode 100644 index 0000000..27287fe --- /dev/null +++ b/ProjectSettings/AudioManager.asset @@ -0,0 +1,19 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!11 &1 +AudioManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Volume: 1 + Rolloff Scale: 1 + Doppler Factor: 1 + Default Speaker Mode: 2 + m_SampleRate: 0 + m_DSPBufferSize: 1024 + m_VirtualVoiceCount: 512 + m_RealVoiceCount: 32 + m_SpatializerPlugin: + m_AmbisonicDecoderPlugin: + m_DisableAudio: 0 + m_VirtualizeEffects: 1 + m_RequestedDSPBufferSize: 0 diff --git a/ProjectSettings/ClusterInputManager.asset b/ProjectSettings/ClusterInputManager.asset new file mode 100644 index 0000000..e7886b2 --- /dev/null +++ b/ProjectSettings/ClusterInputManager.asset @@ -0,0 +1,6 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!236 &1 +ClusterInputManager: + m_ObjectHideFlags: 0 + m_Inputs: [] diff --git a/ProjectSettings/DynamicsManager.asset b/ProjectSettings/DynamicsManager.asset new file mode 100644 index 0000000..fc90ab9 --- /dev/null +++ b/ProjectSettings/DynamicsManager.asset @@ -0,0 +1,36 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!55 &1 +PhysicsManager: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_Gravity: {x: 0, y: -9.81, z: 0} + m_DefaultMaterial: {fileID: 0} + m_BounceThreshold: 2 + m_SleepThreshold: 0.005 + m_DefaultContactOffset: 0.01 + m_DefaultSolverIterations: 6 + m_DefaultSolverVelocityIterations: 1 + m_QueriesHitBackfaces: 0 + m_QueriesHitTriggers: 1 + m_EnableAdaptiveForce: 0 + m_ClothInterCollisionDistance: 0.1 + m_ClothInterCollisionStiffness: 0.2 + m_ContactsGeneration: 1 + m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff + m_AutoSimulation: 1 + m_AutoSyncTransforms: 0 + m_ReuseCollisionCallbacks: 1 + m_ClothInterCollisionSettingsToggle: 0 + m_ClothGravity: {x: 0, y: -9.81, z: 0} + m_ContactPairsMode: 0 + m_BroadphaseType: 0 + m_WorldBounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 250, y: 250, z: 250} + m_WorldSubdivisions: 8 + m_FrictionType: 0 + m_EnableEnhancedDeterminism: 0 + m_EnableUnifiedHeightmaps: 1 + m_SolverType: 0 + m_DefaultMaxAngularSpeed: 50 diff --git a/ProjectSettings/EditorBuildSettings.asset b/ProjectSettings/EditorBuildSettings.asset new file mode 100644 index 0000000..d057ba3 --- /dev/null +++ b/ProjectSettings/EditorBuildSettings.asset @@ -0,0 +1,13 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1045 &1 +EditorBuildSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Scenes: + - enabled: 1 + path: Assets/Scenes/SampleScene.unity + guid: 99c9720ab356a0642a771bea13969a05 + m_configObjects: + com.unity.input.settings.actions: {fileID: -944628639613478452, guid: 052faaac586de48259a63d0c4782560b, type: 3} + m_UseUCBPForAssetBundles: 0 diff --git a/ProjectSettings/EditorSettings.asset b/ProjectSettings/EditorSettings.asset new file mode 100644 index 0000000..d85f86b --- /dev/null +++ b/ProjectSettings/EditorSettings.asset @@ -0,0 +1,48 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!159 &1 +EditorSettings: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_SerializationMode: 2 + m_LineEndingsForNewScripts: 0 + m_DefaultBehaviorMode: 0 + m_PrefabRegularEnvironment: {fileID: 0} + m_PrefabUIEnvironment: {fileID: 0} + m_SpritePackerMode: 0 + m_SpritePackerCacheSize: 10 + m_SpritePackerPaddingPower: 1 + m_Bc7TextureCompressor: 0 + m_EtcTextureCompressorBehavior: 1 + m_EtcTextureFastCompressor: 1 + m_EtcTextureNormalCompressor: 2 + m_EtcTextureBestCompressor: 4 + m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp;asmref + m_ProjectGenerationRootNamespace: + m_EnableTextureStreamingInEditMode: 1 + m_EnableTextureStreamingInPlayMode: 1 + m_EnableEditorAsyncCPUTextureLoading: 0 + m_AsyncShaderCompilation: 1 + m_PrefabModeAllowAutoSave: 1 + m_EnterPlayModeOptionsEnabled: 1 + m_EnterPlayModeOptions: 0 + m_GameObjectNamingDigits: 1 + m_GameObjectNamingScheme: 0 + m_AssetNamingUsesSpace: 1 + m_InspectorUseIMGUIDefaultInspector: 0 + m_UseLegacyProbeSampleCount: 0 + m_SerializeInlineMappingsOnOneLine: 1 + m_DisableCookiesInLightmapper: 0 + m_AssetPipelineMode: 1 + m_RefreshImportMode: 0 + m_CacheServerMode: 0 + m_CacheServerEndpoint: + m_CacheServerNamespacePrefix: default + m_CacheServerEnableDownload: 1 + m_CacheServerEnableUpload: 1 + m_CacheServerEnableAuth: 0 + m_CacheServerEnableTls: 0 + m_CacheServerValidationMode: 2 + m_CacheServerDownloadBatchSize: 128 + m_EnableEnlightenBakedGI: 0 + m_ReferencedClipsExactNaming: 1 diff --git a/ProjectSettings/GraphicsSettings.asset b/ProjectSettings/GraphicsSettings.asset new file mode 100644 index 0000000..aa5a1c3 --- /dev/null +++ b/ProjectSettings/GraphicsSettings.asset @@ -0,0 +1,70 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!30 &1 +GraphicsSettings: + m_ObjectHideFlags: 0 + serializedVersion: 16 + m_Deferred: + m_Mode: 1 + m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} + m_DeferredReflections: + m_Mode: 1 + m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} + m_ScreenSpaceShadows: + m_Mode: 1 + m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} + m_DepthNormals: + m_Mode: 1 + m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} + m_MotionVectors: + m_Mode: 1 + m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} + m_LightHalo: + m_Mode: 1 + m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} + m_LensFlare: + m_Mode: 1 + m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} + m_VideoShadersIncludeMode: 2 + m_AlwaysIncludedShaders: + - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10783, guid: 0000000000000000f000000000000000, type: 0} + m_PreloadedShaders: [] + m_PreloadShadersBatchTimeLimit: -1 + m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, + type: 0} + m_CustomRenderPipeline: {fileID: 11400000, guid: 4b83569d67af61e458304325a23e5dfd, + type: 2} + m_TransparencySortMode: 0 + m_TransparencySortAxis: {x: 0, y: 0, z: 1} + m_DefaultRenderingPath: 1 + m_DefaultMobileRenderingPath: 1 + m_TierSettings: [] + m_LightmapStripping: 0 + m_FogStripping: 0 + m_InstancingStripping: 0 + m_BrgStripping: 0 + m_LightmapKeepPlain: 1 + m_LightmapKeepDirCombined: 1 + m_LightmapKeepDynamicPlain: 1 + m_LightmapKeepDynamicDirCombined: 1 + m_LightmapKeepShadowMask: 1 + m_LightmapKeepSubtractive: 1 + m_FogKeepLinear: 1 + m_FogKeepExp: 1 + m_FogKeepExp2: 1 + m_AlbedoSwatchInfos: [] + m_RenderPipelineGlobalSettingsMap: + UnityEngine.Rendering.Universal.UniversalRenderPipeline: {fileID: 11400000, guid: 18dc0cd2c080841dea60987a38ce93fa, + type: 2} + m_LightsUseLinearIntensity: 1 + m_LightsUseColorTemperature: 1 + m_LogWhenShaderIsCompiled: 0 + m_LightProbeOutsideHullStrategy: 0 + m_CameraRelativeLightCulling: 0 + m_CameraRelativeShadowCulling: 0 diff --git a/ProjectSettings/InputManager.asset b/ProjectSettings/InputManager.asset new file mode 100644 index 0000000..b16147e --- /dev/null +++ b/ProjectSettings/InputManager.asset @@ -0,0 +1,487 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!13 &1 +InputManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Axes: + - serializedVersion: 3 + m_Name: Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: a + altPositiveButton: d + gravity: 3 + dead: 0.001 + sensitivity: 3 + snap: 1 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: s + altPositiveButton: w + gravity: 3 + dead: 0.001 + sensitivity: 3 + snap: 1 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left ctrl + altNegativeButton: + altPositiveButton: mouse 0 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left alt + altNegativeButton: + altPositiveButton: mouse 1 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire3 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left shift + altNegativeButton: + altPositiveButton: mouse 2 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Jump + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: space + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse X + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse Y + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 1 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse ScrollWheel + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 2 + joyNum: 0 + - serializedVersion: 3 + m_Name: Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0.19 + sensitivity: 1 + snap: 0 + invert: 0 + type: 2 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0.19 + sensitivity: 1 + snap: 0 + invert: 1 + type: 2 + axis: 1 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 0 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 1 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire3 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 2 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Jump + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 3 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Submit + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: return + altNegativeButton: + altPositiveButton: joystick button 0 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Submit + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: enter + altNegativeButton: + altPositiveButton: space + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Cancel + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: escape + altNegativeButton: + altPositiveButton: joystick button 1 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Enable Debug Button 1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left ctrl + altNegativeButton: + altPositiveButton: joystick button 8 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Enable Debug Button 2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: backspace + altNegativeButton: + altPositiveButton: joystick button 9 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Reset + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left alt + altNegativeButton: + altPositiveButton: joystick button 1 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Next + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: page down + altNegativeButton: + altPositiveButton: joystick button 5 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Previous + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: page up + altNegativeButton: + altPositiveButton: joystick button 4 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Validate + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: return + altNegativeButton: + altPositiveButton: joystick button 0 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Persistent + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: right shift + altNegativeButton: + altPositiveButton: joystick button 2 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Multiplier + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left shift + altNegativeButton: + altPositiveButton: joystick button 3 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 2 + axis: 6 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 2 + axis: 5 + joyNum: 0 diff --git a/ProjectSettings/MemorySettings.asset b/ProjectSettings/MemorySettings.asset new file mode 100644 index 0000000..5b5face --- /dev/null +++ b/ProjectSettings/MemorySettings.asset @@ -0,0 +1,35 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!387306366 &1 +MemorySettings: + m_ObjectHideFlags: 0 + m_EditorMemorySettings: + m_MainAllocatorBlockSize: -1 + m_ThreadAllocatorBlockSize: -1 + m_MainGfxBlockSize: -1 + m_ThreadGfxBlockSize: -1 + m_CacheBlockSize: -1 + m_TypetreeBlockSize: -1 + m_ProfilerBlockSize: -1 + m_ProfilerEditorBlockSize: -1 + m_BucketAllocatorGranularity: -1 + m_BucketAllocatorBucketsCount: -1 + m_BucketAllocatorBlockSize: -1 + m_BucketAllocatorBlockCount: -1 + m_ProfilerBucketAllocatorGranularity: -1 + m_ProfilerBucketAllocatorBucketsCount: -1 + m_ProfilerBucketAllocatorBlockSize: -1 + m_ProfilerBucketAllocatorBlockCount: -1 + m_TempAllocatorSizeMain: -1 + m_JobTempAllocatorBlockSize: -1 + m_BackgroundJobTempAllocatorBlockSize: -1 + m_JobTempAllocatorReducedBlockSize: -1 + m_TempAllocatorSizeGIBakingWorker: -1 + m_TempAllocatorSizeNavMeshWorker: -1 + m_TempAllocatorSizeAudioWorker: -1 + m_TempAllocatorSizeCloudWorker: -1 + m_TempAllocatorSizeGfx: -1 + m_TempAllocatorSizeJobWorker: -1 + m_TempAllocatorSizeBackgroundWorker: -1 + m_TempAllocatorSizePreloadManager: -1 + m_PlatformMemorySettings: {} diff --git a/ProjectSettings/MultiplayerManager.asset b/ProjectSettings/MultiplayerManager.asset new file mode 100644 index 0000000..2a93664 --- /dev/null +++ b/ProjectSettings/MultiplayerManager.asset @@ -0,0 +1,7 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!655991488 &1 +MultiplayerManager: + m_ObjectHideFlags: 0 + m_EnableMultiplayerRoles: 0 + m_StrippingTypes: {} diff --git a/ProjectSettings/NavMeshAreas.asset b/ProjectSettings/NavMeshAreas.asset new file mode 100644 index 0000000..3b0b7c3 --- /dev/null +++ b/ProjectSettings/NavMeshAreas.asset @@ -0,0 +1,91 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!126 &1 +NavMeshProjectSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + areas: + - name: Walkable + cost: 1 + - name: Not Walkable + cost: 1 + - name: Jump + cost: 2 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + m_LastAgentTypeID: -887442657 + m_Settings: + - serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.75 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_SettingNames: + - Humanoid diff --git a/ProjectSettings/PackageManagerSettings.asset b/ProjectSettings/PackageManagerSettings.asset new file mode 100644 index 0000000..0e84d52 --- /dev/null +++ b/ProjectSettings/PackageManagerSettings.asset @@ -0,0 +1,45 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 61 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_EnablePreReleasePackages: 0 + m_AdvancedSettingsExpanded: 1 + m_ScopedRegistriesSettingsExpanded: 1 + m_SeeAllPackageVersions: 0 + m_DismissPreviewPackagesInUse: 0 + oneTimeWarningShown: 0 + oneTimeDeprecatedPopUpShown: 0 + m_Registries: + - m_Id: main + m_Name: + m_Url: https://packages.unity.com + m_Scopes: [] + m_IsDefault: 1 + m_Capabilities: 7 + m_ConfigSource: 0 + - m_Id: scoped:project:spoiledcat + m_Name: spoiledcat + m_Url: https://registry.spoiledcat.com + m_Scopes: + - com.spoiledcat + m_IsDefault: 0 + m_Capabilities: 0 + m_ConfigSource: 4 + m_UserSelectedRegistryName: spoiledcat + m_UserAddingNewScopedRegistry: 0 + m_RegistryInfoDraft: + m_Modified: 0 + m_ErrorMessage: + m_UserModificationsInstanceId: -886 + m_OriginalInstanceId: -888 + m_LoadAssets: 0 diff --git a/ProjectSettings/Physics2DSettings.asset b/ProjectSettings/Physics2DSettings.asset new file mode 100644 index 0000000..6c5cf8a --- /dev/null +++ b/ProjectSettings/Physics2DSettings.asset @@ -0,0 +1,56 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!19 &1 +Physics2DSettings: + m_ObjectHideFlags: 0 + serializedVersion: 4 + m_Gravity: {x: 0, y: -9.81} + m_DefaultMaterial: {fileID: 0} + m_VelocityIterations: 8 + m_PositionIterations: 3 + m_VelocityThreshold: 1 + m_MaxLinearCorrection: 0.2 + m_MaxAngularCorrection: 8 + m_MaxTranslationSpeed: 100 + m_MaxRotationSpeed: 360 + m_BaumgarteScale: 0.2 + m_BaumgarteTimeOfImpactScale: 0.75 + m_TimeToSleep: 0.5 + m_LinearSleepTolerance: 0.01 + m_AngularSleepTolerance: 2 + m_DefaultContactOffset: 0.01 + m_JobOptions: + serializedVersion: 2 + useMultithreading: 0 + useConsistencySorting: 0 + m_InterpolationPosesPerJob: 100 + m_NewContactsPerJob: 30 + m_CollideContactsPerJob: 100 + m_ClearFlagsPerJob: 200 + m_ClearBodyForcesPerJob: 200 + m_SyncDiscreteFixturesPerJob: 50 + m_SyncContinuousFixturesPerJob: 50 + m_FindNearestContactsPerJob: 100 + m_UpdateTriggerContactsPerJob: 100 + m_IslandSolverCostThreshold: 100 + m_IslandSolverBodyCostScale: 1 + m_IslandSolverContactCostScale: 10 + m_IslandSolverJointCostScale: 10 + m_IslandSolverBodiesPerJob: 50 + m_IslandSolverContactsPerJob: 50 + m_AutoSimulation: 1 + m_QueriesHitTriggers: 1 + m_QueriesStartInColliders: 1 + m_CallbacksOnDisable: 1 + m_ReuseCollisionCallbacks: 0 + m_AutoSyncTransforms: 0 + m_AlwaysShowColliders: 0 + m_ShowColliderSleep: 1 + m_ShowColliderContacts: 0 + m_ShowColliderAABB: 0 + m_ContactArrowScale: 0.2 + m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} + m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} + m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} + m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} + m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff diff --git a/ProjectSettings/PresetManager.asset b/ProjectSettings/PresetManager.asset new file mode 100644 index 0000000..67a94da --- /dev/null +++ b/ProjectSettings/PresetManager.asset @@ -0,0 +1,7 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1386491679 &1 +PresetManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_DefaultPresets: {} diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset new file mode 100644 index 0000000..eb4a3d7 --- /dev/null +++ b/ProjectSettings/ProjectSettings.asset @@ -0,0 +1,930 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!129 &1 +PlayerSettings: + m_ObjectHideFlags: 0 + serializedVersion: 28 + productGUID: 221a8c45ede6f4a4da51dd0e39147e10 + AndroidProfiler: 0 + AndroidFilterTouchesWhenObscured: 0 + AndroidEnableSustainedPerformanceMode: 0 + defaultScreenOrientation: 4 + targetDevice: 2 + useOnDemandResources: 0 + accelerometerFrequency: 60 + companyName: DefaultCompany + productName: No Time To Rest + defaultCursor: {fileID: 0} + cursorHotspot: {x: 0, y: 0} + m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} + m_ShowUnitySplashScreen: 1 + m_ShowUnitySplashLogo: 1 + m_SplashScreenOverlayOpacity: 1 + m_SplashScreenAnimation: 1 + m_SplashScreenLogoStyle: 1 + m_SplashScreenDrawMode: 0 + m_SplashScreenBackgroundAnimationZoom: 1 + m_SplashScreenLogoAnimationZoom: 1 + m_SplashScreenBackgroundLandscapeAspect: 1 + m_SplashScreenBackgroundPortraitAspect: 1 + m_SplashScreenBackgroundLandscapeUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenBackgroundPortraitUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenLogos: [] + m_VirtualRealitySplashScreen: {fileID: 0} + m_HolographicTrackingLossScreen: {fileID: 0} + defaultScreenWidth: 1024 + defaultScreenHeight: 768 + defaultScreenWidthWeb: 960 + defaultScreenHeightWeb: 600 + m_StereoRenderingPath: 0 + m_ActiveColorSpace: 1 + unsupportedMSAAFallback: 0 + m_SpriteBatchMaxVertexCount: 65535 + m_SpriteBatchVertexThreshold: 300 + m_MTRendering: 1 + mipStripping: 0 + numberOfMipsStripped: 0 + numberOfMipsStrippedPerMipmapLimitGroup: {} + m_StackTraceTypes: 010000000100000001000000010000000100000001000000 + iosShowActivityIndicatorOnLoading: -1 + androidShowActivityIndicatorOnLoading: -1 + iosUseCustomAppBackgroundBehavior: 0 + allowedAutorotateToPortrait: 1 + allowedAutorotateToPortraitUpsideDown: 1 + allowedAutorotateToLandscapeRight: 1 + allowedAutorotateToLandscapeLeft: 1 + useOSAutorotation: 1 + use32BitDisplayBuffer: 1 + preserveFramebufferAlpha: 0 + disableDepthAndStencilBuffers: 0 + androidStartInFullscreen: 1 + androidRenderOutsideSafeArea: 1 + androidUseSwappy: 0 + androidBlitType: 0 + androidResizeableActivity: 1 + androidDefaultWindowWidth: 1920 + androidDefaultWindowHeight: 1080 + androidMinimumWindowWidth: 400 + androidMinimumWindowHeight: 300 + androidFullscreenMode: 1 + androidAutoRotationBehavior: 1 + androidPredictiveBackSupport: 0 + androidApplicationEntry: 2 + defaultIsNativeResolution: 1 + macRetinaSupport: 1 + runInBackground: 0 + muteOtherAudioSources: 0 + Prepare IOS For Recording: 0 + Force IOS Speakers When Recording: 0 + deferSystemGesturesMode: 0 + hideHomeButton: 0 + submitAnalytics: 1 + usePlayerLog: 1 + dedicatedServerOptimizations: 1 + bakeCollisionMeshes: 0 + forceSingleInstance: 0 + useFlipModelSwapchain: 1 + resizableWindow: 0 + useMacAppStoreValidation: 0 + macAppStoreCategory: public.app-category.games + gpuSkinning: 1 + meshDeformation: 2 + xboxPIXTextureCapture: 0 + xboxEnableAvatar: 0 + xboxEnableKinect: 0 + xboxEnableKinectAutoTracking: 0 + xboxEnableFitness: 0 + visibleInBackground: 1 + allowFullscreenSwitch: 1 + fullscreenMode: 1 + xboxSpeechDB: 0 + xboxEnableHeadOrientation: 0 + xboxEnableGuest: 0 + xboxEnablePIXSampling: 0 + metalFramebufferOnly: 0 + xboxOneResolution: 0 + xboxOneSResolution: 0 + xboxOneXResolution: 3 + xboxOneMonoLoggingLevel: 0 + xboxOneLoggingLevel: 1 + xboxOneDisableEsram: 0 + xboxOneEnableTypeOptimization: 0 + xboxOnePresentImmediateThreshold: 0 + switchQueueCommandMemory: 1048576 + switchQueueControlMemory: 16384 + switchQueueComputeMemory: 262144 + switchNVNShaderPoolsGranularity: 33554432 + switchNVNDefaultPoolsGranularity: 16777216 + switchNVNOtherPoolsGranularity: 16777216 + switchGpuScratchPoolGranularity: 2097152 + switchAllowGpuScratchShrinking: 0 + switchNVNMaxPublicTextureIDCount: 0 + switchNVNMaxPublicSamplerIDCount: 0 + switchMaxWorkerMultiple: 8 + switchNVNGraphicsFirmwareMemory: 32 + vulkanNumSwapchainBuffers: 3 + vulkanEnableSetSRGBWrite: 0 + vulkanEnablePreTransform: 1 + vulkanEnableLateAcquireNextImage: 0 + vulkanEnableCommandBufferRecycling: 1 + loadStoreDebugModeEnabled: 0 + visionOSBundleVersion: 1.0 + tvOSBundleVersion: 1.0 + bundleVersion: 0.1.0 + preloadedAssets: [] + metroInputSource: 0 + wsaTransparentSwapchain: 0 + m_HolographicPauseOnTrackingLoss: 1 + xboxOneDisableKinectGpuReservation: 1 + xboxOneEnable7thCore: 1 + vrSettings: + enable360StereoCapture: 0 + isWsaHolographicRemotingEnabled: 0 + enableFrameTimingStats: 0 + enableOpenGLProfilerGPURecorders: 1 + allowHDRDisplaySupport: 0 + useHDRDisplay: 0 + hdrBitDepth: 0 + m_ColorGamuts: 00000000 + targetPixelDensity: 30 + resolutionScalingMode: 0 + resetResolutionOnWindowResize: 0 + androidSupportedAspectRatio: 1 + androidMaxAspectRatio: 2.4 + androidMinAspectRatio: 1 + applicationIdentifier: + Android: com.UnityTechnologies.com.unity.template.urpblank + Standalone: com.Unity-Technologies.com.unity.template.urp-blank + iPhone: com.Unity-Technologies.com.unity.template.urp-blank + buildNumber: + Standalone: 0 + VisionOS: 0 + iPhone: 0 + tvOS: 0 + overrideDefaultApplicationIdentifier: 1 + AndroidBundleVersionCode: 1 + AndroidMinSdkVersion: 23 + AndroidTargetSdkVersion: 0 + AndroidPreferredInstallLocation: 1 + aotOptions: + stripEngineCode: 1 + iPhoneStrippingLevel: 0 + iPhoneScriptCallOptimization: 0 + ForceInternetPermission: 0 + ForceSDCardPermission: 0 + CreateWallpaper: 0 + androidSplitApplicationBinary: 0 + keepLoadedShadersAlive: 0 + StripUnusedMeshComponents: 0 + strictShaderVariantMatching: 0 + VertexChannelCompressionMask: 4054 + iPhoneSdkVersion: 988 + iOSSimulatorArchitecture: 0 + iOSTargetOSVersionString: 13.0 + tvOSSdkVersion: 0 + tvOSSimulatorArchitecture: 0 + tvOSRequireExtendedGameController: 0 + tvOSTargetOSVersionString: 13.0 + VisionOSSdkVersion: 0 + VisionOSTargetOSVersionString: 1.0 + uIPrerenderedIcon: 0 + uIRequiresPersistentWiFi: 0 + uIRequiresFullScreen: 1 + uIStatusBarHidden: 1 + uIExitOnSuspend: 0 + uIStatusBarStyle: 0 + appleTVSplashScreen: {fileID: 0} + appleTVSplashScreen2x: {fileID: 0} + tvOSSmallIconLayers: [] + tvOSSmallIconLayers2x: [] + tvOSLargeIconLayers: [] + tvOSLargeIconLayers2x: [] + tvOSTopShelfImageLayers: [] + tvOSTopShelfImageLayers2x: [] + tvOSTopShelfImageWideLayers: [] + tvOSTopShelfImageWideLayers2x: [] + iOSLaunchScreenType: 0 + iOSLaunchScreenPortrait: {fileID: 0} + iOSLaunchScreenLandscape: {fileID: 0} + iOSLaunchScreenBackgroundColor: + serializedVersion: 2 + rgba: 0 + iOSLaunchScreenFillPct: 100 + iOSLaunchScreenSize: 100 + iOSLaunchScreeniPadType: 0 + iOSLaunchScreeniPadImage: {fileID: 0} + iOSLaunchScreeniPadBackgroundColor: + serializedVersion: 2 + rgba: 0 + iOSLaunchScreeniPadFillPct: 100 + iOSLaunchScreeniPadSize: 100 + iOSLaunchScreenCustomStoryboardPath: + iOSLaunchScreeniPadCustomStoryboardPath: + iOSDeviceRequirements: [] + iOSURLSchemes: [] + macOSURLSchemes: [] + iOSBackgroundModes: 0 + iOSMetalForceHardShadows: 0 + metalEditorSupport: 1 + metalAPIValidation: 1 + metalCompileShaderBinary: 0 + iOSRenderExtraFrameOnPause: 0 + iosCopyPluginsCodeInsteadOfSymlink: 0 + appleDeveloperTeamID: + iOSManualSigningProvisioningProfileID: + tvOSManualSigningProvisioningProfileID: + VisionOSManualSigningProvisioningProfileID: + iOSManualSigningProvisioningProfileType: 0 + tvOSManualSigningProvisioningProfileType: 0 + VisionOSManualSigningProvisioningProfileType: 0 + appleEnableAutomaticSigning: 0 + iOSRequireARKit: 0 + iOSAutomaticallyDetectAndAddCapabilities: 1 + appleEnableProMotion: 0 + shaderPrecisionModel: 0 + clonedFromGUID: 3c72c65a16f0acb438eed22b8b16c24a + templatePackageId: com.unity.template.urp-blank@17.0.11 + templateDefaultScene: Assets/Scenes/SampleScene.unity + useCustomMainManifest: 0 + useCustomLauncherManifest: 0 + useCustomMainGradleTemplate: 0 + useCustomLauncherGradleManifest: 0 + useCustomBaseGradleTemplate: 0 + useCustomGradlePropertiesTemplate: 0 + useCustomGradleSettingsTemplate: 0 + useCustomProguardFile: 0 + AndroidTargetArchitectures: 2 + AndroidSplashScreenScale: 0 + androidSplashScreen: {fileID: 0} + AndroidKeystoreName: + AndroidKeyaliasName: + AndroidEnableArmv9SecurityFeatures: 0 + AndroidEnableArm64MTE: 0 + AndroidBuildApkPerCpuArchitecture: 0 + AndroidTVCompatibility: 0 + AndroidIsGame: 1 + AndroidEnableTango: 0 + androidEnableBanner: 1 + androidUseLowAccuracyLocation: 0 + androidUseCustomKeystore: 0 + m_AndroidBanners: + - width: 320 + height: 180 + banner: {fileID: 0} + androidGamepadSupportLevel: 0 + AndroidMinifyRelease: 0 + AndroidMinifyDebug: 0 + AndroidValidateAppBundleSize: 1 + AndroidAppBundleSizeToValidate: 150 + AndroidReportGooglePlayAppDependencies: 1 + androidSymbolsSizeThreshold: 800 + m_BuildTargetIcons: [] + m_BuildTargetPlatformIcons: + - m_BuildTarget: iPhone + m_Icons: + - m_Textures: [] + m_Width: 180 + m_Height: 180 + m_Kind: 0 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 120 + m_Height: 120 + m_Kind: 0 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 167 + m_Height: 167 + m_Kind: 0 + m_SubKind: iPad + - m_Textures: [] + m_Width: 152 + m_Height: 152 + m_Kind: 0 + m_SubKind: iPad + - m_Textures: [] + m_Width: 76 + m_Height: 76 + m_Kind: 0 + m_SubKind: iPad + - m_Textures: [] + m_Width: 120 + m_Height: 120 + m_Kind: 3 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 80 + m_Height: 80 + m_Kind: 3 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 80 + m_Height: 80 + m_Kind: 3 + m_SubKind: iPad + - m_Textures: [] + m_Width: 40 + m_Height: 40 + m_Kind: 3 + m_SubKind: iPad + - m_Textures: [] + m_Width: 87 + m_Height: 87 + m_Kind: 1 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 58 + m_Height: 58 + m_Kind: 1 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 29 + m_Height: 29 + m_Kind: 1 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 58 + m_Height: 58 + m_Kind: 1 + m_SubKind: iPad + - m_Textures: [] + m_Width: 29 + m_Height: 29 + m_Kind: 1 + m_SubKind: iPad + - m_Textures: [] + m_Width: 60 + m_Height: 60 + m_Kind: 2 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 40 + m_Height: 40 + m_Kind: 2 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 40 + m_Height: 40 + m_Kind: 2 + m_SubKind: iPad + - m_Textures: [] + m_Width: 20 + m_Height: 20 + m_Kind: 2 + m_SubKind: iPad + - m_Textures: [] + m_Width: 1024 + m_Height: 1024 + m_Kind: 4 + m_SubKind: App Store + - m_BuildTarget: Android + m_Icons: + - m_Textures: [] + m_Width: 432 + m_Height: 432 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 324 + m_Height: 324 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 216 + m_Height: 216 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 162 + m_Height: 162 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 108 + m_Height: 108 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 81 + m_Height: 81 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 192 + m_Height: 192 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 144 + m_Height: 144 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 96 + m_Height: 96 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 72 + m_Height: 72 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 48 + m_Height: 48 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 36 + m_Height: 36 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 192 + m_Height: 192 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 144 + m_Height: 144 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 96 + m_Height: 96 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 72 + m_Height: 72 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 48 + m_Height: 48 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 36 + m_Height: 36 + m_Kind: 0 + m_SubKind: + - m_BuildTarget: tvOS + m_Icons: + - m_Textures: [] + m_Width: 1280 + m_Height: 768 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 800 + m_Height: 480 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 400 + m_Height: 240 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 4640 + m_Height: 1440 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 2320 + m_Height: 720 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 3840 + m_Height: 1440 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 1920 + m_Height: 720 + m_Kind: 1 + m_SubKind: + m_BuildTargetBatching: [] + m_BuildTargetShaderSettings: [] + m_BuildTargetGraphicsJobs: [] + m_BuildTargetGraphicsJobMode: [] + m_BuildTargetGraphicsAPIs: + - m_BuildTarget: iOSSupport + m_APIs: 10000000 + m_Automatic: 1 + - m_BuildTarget: AndroidPlayer + m_APIs: 150000000b000000 + m_Automatic: 0 + m_BuildTargetVRSettings: [] + m_DefaultShaderChunkSizeInMB: 16 + m_DefaultShaderChunkCount: 0 + openGLRequireES31: 0 + openGLRequireES31AEP: 0 + openGLRequireES32: 0 + m_TemplateCustomTags: {} + mobileMTRendering: + Android: 1 + iPhone: 1 + tvOS: 1 + m_BuildTargetGroupLightmapEncodingQuality: + - serializedVersion: 2 + m_BuildTarget: Android + m_EncodingQuality: 1 + m_BuildTargetGroupLightmapSettings: [] + m_BuildTargetGroupLoadStoreDebugModeSettings: [] + m_BuildTargetNormalMapEncoding: + - m_BuildTarget: Android + m_Encoding: 1 + m_BuildTargetDefaultTextureCompressionFormat: + - serializedVersion: 3 + m_BuildTarget: Android + m_Formats: 03000000 + playModeTestRunnerEnabled: 0 + runPlayModeTestAsEditModeTest: 0 + actionOnDotNetUnhandledException: 1 + editorGfxJobOverride: 1 + enableInternalProfiler: 0 + logObjCUncaughtExceptions: 1 + enableCrashReportAPI: 0 + cameraUsageDescription: + locationUsageDescription: + microphoneUsageDescription: + bluetoothUsageDescription: + macOSTargetOSVersion: 11.0 + switchNMETAOverride: + switchNetLibKey: + switchSocketMemoryPoolSize: 6144 + switchSocketAllocatorPoolSize: 128 + switchSocketConcurrencyLimit: 14 + switchScreenResolutionBehavior: 2 + switchUseCPUProfiler: 0 + switchEnableFileSystemTrace: 0 + switchLTOSetting: 0 + switchApplicationID: 0x01004b9000490000 + switchNSODependencies: + switchCompilerFlags: + switchTitleNames_0: + switchTitleNames_1: + switchTitleNames_2: + switchTitleNames_3: + switchTitleNames_4: + switchTitleNames_5: + switchTitleNames_6: + switchTitleNames_7: + switchTitleNames_8: + switchTitleNames_9: + switchTitleNames_10: + switchTitleNames_11: + switchTitleNames_12: + switchTitleNames_13: + switchTitleNames_14: + switchTitleNames_15: + switchPublisherNames_0: + switchPublisherNames_1: + switchPublisherNames_2: + switchPublisherNames_3: + switchPublisherNames_4: + switchPublisherNames_5: + switchPublisherNames_6: + switchPublisherNames_7: + switchPublisherNames_8: + switchPublisherNames_9: + switchPublisherNames_10: + switchPublisherNames_11: + switchPublisherNames_12: + switchPublisherNames_13: + switchPublisherNames_14: + switchPublisherNames_15: + switchIcons_0: {fileID: 0} + switchIcons_1: {fileID: 0} + switchIcons_2: {fileID: 0} + switchIcons_3: {fileID: 0} + switchIcons_4: {fileID: 0} + switchIcons_5: {fileID: 0} + switchIcons_6: {fileID: 0} + switchIcons_7: {fileID: 0} + switchIcons_8: {fileID: 0} + switchIcons_9: {fileID: 0} + switchIcons_10: {fileID: 0} + switchIcons_11: {fileID: 0} + switchIcons_12: {fileID: 0} + switchIcons_13: {fileID: 0} + switchIcons_14: {fileID: 0} + switchIcons_15: {fileID: 0} + switchSmallIcons_0: {fileID: 0} + switchSmallIcons_1: {fileID: 0} + switchSmallIcons_2: {fileID: 0} + switchSmallIcons_3: {fileID: 0} + switchSmallIcons_4: {fileID: 0} + switchSmallIcons_5: {fileID: 0} + switchSmallIcons_6: {fileID: 0} + switchSmallIcons_7: {fileID: 0} + switchSmallIcons_8: {fileID: 0} + switchSmallIcons_9: {fileID: 0} + switchSmallIcons_10: {fileID: 0} + switchSmallIcons_11: {fileID: 0} + switchSmallIcons_12: {fileID: 0} + switchSmallIcons_13: {fileID: 0} + switchSmallIcons_14: {fileID: 0} + switchSmallIcons_15: {fileID: 0} + switchManualHTML: + switchAccessibleURLs: + switchLegalInformation: + switchMainThreadStackSize: 1048576 + switchPresenceGroupId: + switchLogoHandling: 0 + switchReleaseVersion: 0 + switchDisplayVersion: 1.0.0 + switchStartupUserAccount: 0 + switchSupportedLanguagesMask: 0 + switchLogoType: 0 + switchApplicationErrorCodeCategory: + switchUserAccountSaveDataSize: 0 + switchUserAccountSaveDataJournalSize: 0 + switchApplicationAttribute: 0 + switchCardSpecSize: -1 + switchCardSpecClock: -1 + switchRatingsMask: 0 + switchRatingsInt_0: 0 + switchRatingsInt_1: 0 + switchRatingsInt_2: 0 + switchRatingsInt_3: 0 + switchRatingsInt_4: 0 + switchRatingsInt_5: 0 + switchRatingsInt_6: 0 + switchRatingsInt_7: 0 + switchRatingsInt_8: 0 + switchRatingsInt_9: 0 + switchRatingsInt_10: 0 + switchRatingsInt_11: 0 + switchRatingsInt_12: 0 + switchLocalCommunicationIds_0: + switchLocalCommunicationIds_1: + switchLocalCommunicationIds_2: + switchLocalCommunicationIds_3: + switchLocalCommunicationIds_4: + switchLocalCommunicationIds_5: + switchLocalCommunicationIds_6: + switchLocalCommunicationIds_7: + switchParentalControl: 0 + switchAllowsScreenshot: 1 + switchAllowsVideoCapturing: 1 + switchAllowsRuntimeAddOnContentInstall: 0 + switchDataLossConfirmation: 0 + switchUserAccountLockEnabled: 0 + switchSystemResourceMemory: 16777216 + switchSupportedNpadStyles: 22 + switchNativeFsCacheSize: 32 + switchIsHoldTypeHorizontal: 0 + switchSupportedNpadCount: 8 + switchEnableTouchScreen: 1 + switchSocketConfigEnabled: 0 + switchTcpInitialSendBufferSize: 32 + switchTcpInitialReceiveBufferSize: 64 + switchTcpAutoSendBufferSizeMax: 256 + switchTcpAutoReceiveBufferSizeMax: 256 + switchUdpSendBufferSize: 9 + switchUdpReceiveBufferSize: 42 + switchSocketBufferEfficiency: 4 + switchSocketInitializeEnabled: 1 + switchNetworkInterfaceManagerInitializeEnabled: 1 + switchDisableHTCSPlayerConnection: 0 + switchUseNewStyleFilepaths: 0 + switchUseLegacyFmodPriorities: 0 + switchUseMicroSleepForYield: 1 + switchEnableRamDiskSupport: 0 + switchMicroSleepForYieldTime: 25 + switchRamDiskSpaceSize: 12 + switchUpgradedPlayerSettingsToNMETA: 0 + ps4NPAgeRating: 12 + ps4NPTitleSecret: + ps4NPTrophyPackPath: + ps4ParentalLevel: 11 + ps4ContentID: ED1633-NPXX51362_00-0000000000000000 + ps4Category: 0 + ps4MasterVersion: 01.00 + ps4AppVersion: 01.00 + ps4AppType: 0 + ps4ParamSfxPath: + ps4VideoOutPixelFormat: 0 + ps4VideoOutInitialWidth: 1920 + ps4VideoOutBaseModeInitialWidth: 1920 + ps4VideoOutReprojectionRate: 60 + ps4PronunciationXMLPath: + ps4PronunciationSIGPath: + ps4BackgroundImagePath: + ps4StartupImagePath: + ps4StartupImagesFolder: + ps4IconImagesFolder: + ps4SaveDataImagePath: + ps4SdkOverride: + ps4BGMPath: + ps4ShareFilePath: + ps4ShareOverlayImagePath: + ps4PrivacyGuardImagePath: + ps4ExtraSceSysFile: + ps4NPtitleDatPath: + ps4RemotePlayKeyAssignment: -1 + ps4RemotePlayKeyMappingDir: + ps4PlayTogetherPlayerCount: 0 + ps4EnterButtonAssignment: 2 + ps4ApplicationParam1: 0 + ps4ApplicationParam2: 0 + ps4ApplicationParam3: 0 + ps4ApplicationParam4: 0 + ps4DownloadDataSize: 0 + ps4GarlicHeapSize: 2048 + ps4ProGarlicHeapSize: 2560 + playerPrefsMaxSize: 32768 + ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ + ps4pnSessions: 1 + ps4pnPresence: 1 + ps4pnFriends: 1 + ps4pnGameCustomData: 1 + playerPrefsSupport: 0 + enableApplicationExit: 0 + resetTempFolder: 1 + restrictedAudioUsageRights: 0 + ps4UseResolutionFallback: 0 + ps4ReprojectionSupport: 0 + ps4UseAudio3dBackend: 0 + ps4UseLowGarlicFragmentationMode: 1 + ps4SocialScreenEnabled: 0 + ps4ScriptOptimizationLevel: 2 + ps4Audio3dVirtualSpeakerCount: 14 + ps4attribCpuUsage: 0 + ps4PatchPkgPath: + ps4PatchLatestPkgPath: + ps4PatchChangeinfoPath: + ps4PatchDayOne: 0 + ps4attribUserManagement: 0 + ps4attribMoveSupport: 0 + ps4attrib3DSupport: 0 + ps4attribShareSupport: 0 + ps4attribExclusiveVR: 0 + ps4disableAutoHideSplash: 0 + ps4videoRecordingFeaturesUsed: 0 + ps4contentSearchFeaturesUsed: 0 + ps4CompatibilityPS5: 0 + ps4AllowPS5Detection: 0 + ps4GPU800MHz: 1 + ps4attribEyeToEyeDistanceSettingVR: 0 + ps4IncludedModules: [] + ps4attribVROutputEnabled: 0 + monoEnv: + splashScreenBackgroundSourceLandscape: {fileID: 0} + splashScreenBackgroundSourcePortrait: {fileID: 0} + blurSplashScreenBackground: 1 + spritePackerPolicy: + webGLMemorySize: 32 + webGLExceptionSupport: 1 + webGLNameFilesAsHashes: 0 + webGLShowDiagnostics: 0 + webGLDataCaching: 1 + webGLDebugSymbols: 0 + webGLEmscriptenArgs: + webGLModulesDirectory: + webGLTemplate: APPLICATION:Default + webGLAnalyzeBuildSize: 0 + webGLUseEmbeddedResources: 0 + webGLCompressionFormat: 0 + webGLWasmArithmeticExceptions: 0 + webGLLinkerTarget: 1 + webGLThreadsSupport: 0 + webGLDecompressionFallback: 0 + webGLInitialMemorySize: 32 + webGLMaximumMemorySize: 2048 + webGLMemoryGrowthMode: 2 + webGLMemoryLinearGrowthStep: 16 + webGLMemoryGeometricGrowthStep: 0.2 + webGLMemoryGeometricGrowthCap: 96 + webGLEnableWebGPU: 0 + webGLPowerPreference: 2 + webGLWebAssemblyTable: 0 + webGLWebAssemblyBigInt: 0 + webGLCloseOnQuit: 0 + webWasm2023: 0 + scriptingDefineSymbols: {} + additionalCompilerArguments: {} + platformArchitecture: {} + scriptingBackend: + Android: 1 + il2cppCompilerConfiguration: {} + il2cppCodeGeneration: {} + il2cppStacktraceInformation: {} + managedStrippingLevel: {} + incrementalIl2cppBuild: {} + suppressCommonWarnings: 1 + allowUnsafeCode: 0 + useDeterministicCompilation: 1 + additionalIl2CppArgs: + scriptingRuntimeVersion: 1 + gcIncremental: 1 + gcWBarrierValidation: 0 + apiCompatibilityLevelPerPlatform: {} + editorAssembliesCompatibilityLevel: 1 + m_RenderingPath: 1 + m_MobileRenderingPath: 1 + metroPackageName: No Time To Rest + metroPackageVersion: + metroCertificatePath: + metroCertificatePassword: + metroCertificateSubject: + metroCertificateIssuer: + metroCertificateNotAfter: 0000000000000000 + metroApplicationDescription: No Time To Rest + wsaImages: {} + metroTileShortName: + metroTileShowName: 0 + metroMediumTileShowName: 0 + metroLargeTileShowName: 0 + metroWideTileShowName: 0 + metroSupportStreamingInstall: 0 + metroLastRequiredScene: 0 + metroDefaultTileSize: 1 + metroTileForegroundText: 2 + metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} + metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1} + metroSplashScreenUseBackgroundColor: 0 + syncCapabilities: 0 + platformCapabilities: {} + metroTargetDeviceFamilies: {} + metroFTAName: + metroFTAFileTypes: [] + metroProtocolName: + vcxProjDefaultLanguage: + XboxOneProductId: + XboxOneUpdateKey: + XboxOneSandboxId: + XboxOneContentId: + XboxOneTitleId: + XboxOneSCId: + XboxOneGameOsOverridePath: + XboxOnePackagingOverridePath: + XboxOneAppManifestOverridePath: + XboxOneVersion: 1.0.0.0 + XboxOnePackageEncryption: 0 + XboxOnePackageUpdateGranularity: 2 + XboxOneDescription: + XboxOneLanguage: + - enus + XboxOneCapability: [] + XboxOneGameRating: {} + XboxOneIsContentPackage: 0 + XboxOneEnhancedXboxCompatibilityMode: 0 + XboxOneEnableGPUVariability: 1 + XboxOneSockets: {} + XboxOneSplashScreen: {fileID: 0} + XboxOneAllowedProductIds: [] + XboxOnePersistentLocalStorageSize: 0 + XboxOneXTitleMemory: 8 + XboxOneOverrideIdentityName: + XboxOneOverrideIdentityPublisher: + vrEditorSettings: {} + cloudServicesEnabled: {} + luminIcon: + m_Name: + m_ModelFolderPath: + m_PortalFolderPath: + luminCert: + m_CertPath: + m_SignPackage: 1 + luminIsChannelApp: 0 + luminVersion: + m_VersionCode: 1 + m_VersionName: + hmiPlayerDataPath: + hmiForceSRGBBlit: 1 + embeddedLinuxEnableGamepadInput: 0 + hmiCpuConfiguration: + hmiLogStartupTiming: 0 + qnxGraphicConfPath: + apiCompatibilityLevel: 6 + captureStartupLogs: {} + activeInputHandler: 2 + windowsGamepadBackendHint: 0 + cloudProjectId: + framebufferDepthMemorylessMode: 0 + qualitySettingsNames: [] + projectName: + organizationId: + cloudEnabled: 0 + legacyClampBlendShapeWeights: 0 + hmiLoadingImage: {fileID: 0} + platformRequiresReadableAssets: 0 + virtualTexturingSupportEnabled: 0 + insecureHttpOption: 0 + androidVulkanDenyFilterList: [] + androidVulkanAllowFilterList: [] diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt new file mode 100644 index 0000000..7c88263 --- /dev/null +++ b/ProjectSettings/ProjectVersion.txt @@ -0,0 +1,2 @@ +m_EditorVersion: 6000.0.34f1 +m_EditorVersionWithRevision: 6000.0.34f1 (5ab2d9ed9190) diff --git a/ProjectSettings/QualitySettings.asset b/ProjectSettings/QualitySettings.asset new file mode 100644 index 0000000..f55198a --- /dev/null +++ b/ProjectSettings/QualitySettings.asset @@ -0,0 +1,134 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!47 &1 +QualitySettings: + m_ObjectHideFlags: 0 + serializedVersion: 5 + m_CurrentQuality: 1 + m_QualitySettings: + - serializedVersion: 4 + name: Mobile + pixelLightCount: 2 + shadows: 2 + shadowResolution: 1 + shadowProjection: 1 + shadowCascades: 2 + shadowDistance: 40 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + skinWeights: 2 + globalTextureMipmapLimit: 0 + textureMipmapLimitSettings: [] + anisotropicTextures: 1 + antiAliasing: 0 + softParticles: 0 + softVegetation: 1 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 1 + useLegacyDetailDistribution: 1 + adaptiveVsync: 0 + vSyncCount: 0 + realtimeGICPUUsage: 100 + adaptiveVsyncExtraA: 0 + adaptiveVsyncExtraB: 0 + lodBias: 1 + maximumLODLevel: 0 + enableLODCrossFade: 1 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 256 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 11400000, guid: 5e6cbd92db86f4b18aec3ed561671858, + type: 2} + terrainQualityOverrides: 0 + terrainPixelError: 1 + terrainDetailDensityScale: 1 + terrainBasemapDistance: 1000 + terrainDetailDistance: 80 + terrainTreeDistance: 5000 + terrainBillboardStart: 50 + terrainFadeLength: 5 + terrainMaxTrees: 50 + excludedTargetPlatforms: + - Standalone + - serializedVersion: 4 + name: PC + pixelLightCount: 2 + shadows: 2 + shadowResolution: 1 + shadowProjection: 1 + shadowCascades: 2 + shadowDistance: 40 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + skinWeights: 4 + globalTextureMipmapLimit: 0 + textureMipmapLimitSettings: [] + anisotropicTextures: 2 + antiAliasing: 0 + softParticles: 0 + softVegetation: 1 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 1 + useLegacyDetailDistribution: 1 + adaptiveVsync: 0 + vSyncCount: 0 + realtimeGICPUUsage: 100 + adaptiveVsyncExtraA: 0 + adaptiveVsyncExtraB: 0 + lodBias: 2 + maximumLODLevel: 0 + enableLODCrossFade: 1 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 256 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 11400000, guid: 4b83569d67af61e458304325a23e5dfd, + type: 2} + terrainQualityOverrides: 0 + terrainPixelError: 1 + terrainDetailDensityScale: 1 + terrainBasemapDistance: 1000 + terrainDetailDistance: 80 + terrainTreeDistance: 5000 + terrainBillboardStart: 50 + terrainFadeLength: 5 + terrainMaxTrees: 50 + excludedTargetPlatforms: + - Android + - iPhone + m_TextureMipmapLimitGroupNames: [] + m_PerPlatformDefaultQuality: + Android: 0 + GameCoreScarlett: 1 + GameCoreXboxOne: 1 + Lumin: 0 + Nintendo Switch: 1 + PS4: 1 + PS5: 1 + Server: 0 + Stadia: 0 + Standalone: 1 + WebGL: 0 + Windows Store Apps: 0 + XboxOne: 0 + iPhone: 0 + tvOS: 0 diff --git a/ProjectSettings/ShaderGraphSettings.asset b/ProjectSettings/ShaderGraphSettings.asset new file mode 100644 index 0000000..e66042a --- /dev/null +++ b/ProjectSettings/ShaderGraphSettings.asset @@ -0,0 +1,18 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 61 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: de02f9e1d18f588468e474319d09a723, type: 3} + m_Name: + m_EditorClassIdentifier: + shaderVariantLimit: 128 + customInterpolatorErrorThreshold: 32 + customInterpolatorWarningThreshold: 16 + customHeatmapValues: {fileID: 0} diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset new file mode 100644 index 0000000..6413d11 --- /dev/null +++ b/ProjectSettings/TagManager.asset @@ -0,0 +1,76 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!78 &1 +TagManager: + serializedVersion: 2 + tags: [] + layers: + - Default + - TransparentFX + - Ignore Raycast + - + - Water + - UI + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + m_SortingLayers: + - name: Default + uniqueID: 0 + locked: 0 + m_RenderingLayers: + - Default + - Light Layer 1 + - Light Layer 2 + - Light Layer 3 + - Light Layer 4 + - Light Layer 5 + - Light Layer 6 + - Light Layer 7 + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - diff --git a/ProjectSettings/TimeManager.asset b/ProjectSettings/TimeManager.asset new file mode 100644 index 0000000..558a017 --- /dev/null +++ b/ProjectSettings/TimeManager.asset @@ -0,0 +1,9 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!5 &1 +TimeManager: + m_ObjectHideFlags: 0 + Fixed Timestep: 0.02 + Maximum Allowed Timestep: 0.33333334 + m_TimeScale: 1 + Maximum Particle Timestep: 0.03 diff --git a/ProjectSettings/URPProjectSettings.asset b/ProjectSettings/URPProjectSettings.asset new file mode 100644 index 0000000..08faf03 --- /dev/null +++ b/ProjectSettings/URPProjectSettings.asset @@ -0,0 +1,15 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 61 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 247994e1f5a72c2419c26a37e9334c01, type: 3} + m_Name: + m_EditorClassIdentifier: + m_LastMaterialVersion: 9 diff --git a/ProjectSettings/UnityConnectSettings.asset b/ProjectSettings/UnityConnectSettings.asset new file mode 100644 index 0000000..a88bee0 --- /dev/null +++ b/ProjectSettings/UnityConnectSettings.asset @@ -0,0 +1,36 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!310 &1 +UnityConnectSettings: + m_ObjectHideFlags: 0 + serializedVersion: 1 + m_Enabled: 0 + m_TestMode: 0 + m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events + m_EventUrl: https://cdp.cloud.unity3d.com/v1/events + m_ConfigUrl: https://config.uca.cloud.unity3d.com + m_DashboardUrl: https://dashboard.unity3d.com + m_TestInitMode: 0 + CrashReportingSettings: + m_EventUrl: https://perf-events.cloud.unity3d.com + m_Enabled: 0 + m_LogBufferSize: 10 + m_CaptureEditorExceptions: 1 + UnityPurchasingSettings: + m_Enabled: 0 + m_TestMode: 0 + UnityAnalyticsSettings: + m_Enabled: 0 + m_TestMode: 0 + m_InitializeOnStartup: 1 + m_PackageRequiringCoreStatsPresent: 0 + UnityAdsSettings: + m_Enabled: 0 + m_InitializeOnStartup: 1 + m_TestMode: 0 + m_IosGameId: + m_AndroidGameId: + m_GameIds: {} + m_GameId: + PerformanceReportingSettings: + m_Enabled: 0 diff --git a/ProjectSettings/VFXManager.asset b/ProjectSettings/VFXManager.asset new file mode 100644 index 0000000..3a95c98 --- /dev/null +++ b/ProjectSettings/VFXManager.asset @@ -0,0 +1,12 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!937362698 &1 +VFXManager: + m_ObjectHideFlags: 0 + m_IndirectShader: {fileID: 0} + m_CopyBufferShader: {fileID: 0} + m_SortShader: {fileID: 0} + m_StripUpdateShader: {fileID: 0} + m_RenderPipeSettingsPath: + m_FixedTimeStep: 0.016666668 + m_MaxDeltaTime: 0.05 diff --git a/ProjectSettings/VersionControlSettings.asset b/ProjectSettings/VersionControlSettings.asset new file mode 100644 index 0000000..dca2881 --- /dev/null +++ b/ProjectSettings/VersionControlSettings.asset @@ -0,0 +1,8 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!890905787 &1 +VersionControlSettings: + m_ObjectHideFlags: 0 + m_Mode: Visible Meta Files + m_CollabEditorSettings: + inProgressEnabled: 1 diff --git a/ProjectSettings/XRSettings.asset b/ProjectSettings/XRSettings.asset new file mode 100644 index 0000000..482590c --- /dev/null +++ b/ProjectSettings/XRSettings.asset @@ -0,0 +1,10 @@ +{ + "m_SettingKeys": [ + "VR Device Disabled", + "VR Device User Alert" + ], + "m_SettingValues": [ + "False", + "False" + ] +} \ No newline at end of file diff --git a/UserSettings/EditorUserSettings.asset b/UserSettings/EditorUserSettings.asset new file mode 100644 index 0000000..36c363e --- /dev/null +++ b/UserSettings/EditorUserSettings.asset @@ -0,0 +1,33 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!162 &1 +EditorUserSettings: + m_ObjectHideFlags: 0 + serializedVersion: 4 + m_ConfigSettings: + GraphicsSettingsInspector_UserSettings: + value: 18134705175a055722080a3115371d4a0d55006876786860616b0471b8b07a68ffab74f9ee2a3a30300cea1a11320d0beb1a0c25f7060f494b4cc80018eb09361fc211cb1f862d19c51d19dcc413d6ade0d8ddfcddf9f4d9d29195fcfde6ebeae6f0a9c9afa6f8c5b89ff7a1aacececac4eba4d7c9d28bda + flags: 0 + RecentlyUsedSceneGuid-0: + value: 5a08575f5207595a0f5d59741173094444164f7d7d2a23317c7a4465bbe1646d + flags: 0 + vcSharedLogLevel: + value: 0d5e400f0650 + flags: 0 + m_VCAutomaticAdd: 1 + m_VCDebugCom: 0 + m_VCDebugCmd: 0 + m_VCDebugOut: 0 + m_SemanticMergeMode: 2 + m_DesiredImportWorkerCount: 4 + m_StandbyImportWorkerCount: 2 + m_IdleImportWorkerShutdownDelay: 60000 + m_VCShowFailedCheckout: 1 + m_VCOverwriteFailedCheckoutAssets: 1 + m_VCProjectOverlayIcons: 1 + m_VCHierarchyOverlayIcons: 1 + m_VCOtherOverlayIcons: 1 + m_VCAllowAsyncUpdate: 1 + m_VCScanLocalPackagesOnConnect: 1 + m_ArtifactGarbageCollection: 1 + m_CompressAssetsOnImport: 1 diff --git a/UserSettings/Layouts/default-6000.dwlt b/UserSettings/Layouts/default-6000.dwlt new file mode 100644 index 0000000..8aef71a --- /dev/null +++ b/UserSettings/Layouts/default-6000.dwlt @@ -0,0 +1,8569 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_PixelRect: + serializedVersion: 2 + x: 0 + y: 43.2 + width: 1536 + height: 772.8 + m_ShowMode: 4 + m_Title: Git for Unity + m_RootView: {fileID: 2} + m_MinSize: {x: 875, y: 306} + m_MaxSize: {x: 10000, y: 10000} + m_Maximized: 1 +--- !u!114 &2 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12008, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 3} + - {fileID: 5} + - {fileID: 4} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1536 + height: 772.8 + m_MinSize: {x: 875, y: 300} + m_MaxSize: {x: 10000, y: 10000} + m_UseTopView: 1 + m_TopViewHeight: 36 + m_UseBottomView: 1 + m_BottomViewHeight: 20 +--- !u!114 &3 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12011, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1536 + height: 36 + m_MinSize: {x: 0, y: 0} + m_MaxSize: {x: 0, y: 0} + m_LastLoadedLayoutName: +--- !u!114 &4 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12042, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 752.8 + width: 1536 + height: 20 + m_MinSize: {x: 0, y: 0} + m_MaxSize: {x: 0, y: 0} +--- !u!114 &5 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 6} + - {fileID: 14} + m_Position: + serializedVersion: 2 + x: 0 + y: 36 + width: 1536 + height: 716.8 + m_MinSize: {x: 400, y: 100} + m_MaxSize: {x: 32384, y: 16192} + vertical: 0 + controlID: 48 + draggingID: 0 +--- !u!114 &6 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 7} + - {fileID: 11} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1183.2 + height: 716.8 + m_MinSize: {x: 300, y: 100} + m_MaxSize: {x: 24288, y: 16192} + vertical: 1 + controlID: 49 + draggingID: 0 +--- !u!114 &7 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 8} + - {fileID: 9} + - {fileID: 10} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1183.2 + height: 543.2 + m_MinSize: {x: 300, y: 50} + m_MaxSize: {x: 24288, y: 8096} + vertical: 0 + controlID: 50 + draggingID: 0 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 168.8 + height: 543.2 + m_MinSize: {x: 201, y: 226} + m_MaxSize: {x: 4001, y: 4026} + m_ActualView: {fileID: 17} + m_Panes: + - {fileID: 17} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &9 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: SceneView + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 168.8 + y: 0 + width: 438.40002 + height: 543.2 + m_MinSize: {x: 202, y: 226} + m_MaxSize: {x: 4002, y: 4026} + m_ActualView: {fileID: 18} + m_Panes: + - {fileID: 18} + - {fileID: 19} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &10 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: GameView + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 607.2 + y: 0 + width: 575.99994 + height: 543.2 + m_MinSize: {x: 202, y: 226} + m_MaxSize: {x: 4002, y: 4026} + m_ActualView: {fileID: 16} + m_Panes: + - {fileID: 16} + - {fileID: 21} + - {fileID: 22} + - {fileID: 23} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &11 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 12} + - {fileID: 13} + m_Position: + serializedVersion: 2 + x: 0 + y: 543.2 + width: 1183.2 + height: 173.59998 + m_MinSize: {x: 200, y: 50} + m_MaxSize: {x: 16192, y: 8096} + vertical: 0 + controlID: 107 + draggingID: 0 +--- !u!114 &12 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: ConsoleWindow + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 708.8 + height: 173.59998 + m_MinSize: {x: 101, y: 126} + m_MaxSize: {x: 4001, y: 4026} + m_ActualView: {fileID: 25} + m_Panes: + - {fileID: 24} + - {fileID: 25} + - {fileID: 26} + - {fileID: 20} + m_Selected: 1 + m_LastSelected: 2 +--- !u!114 &13 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: ProjectBrowser + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 708.8 + y: 0 + width: 474.39996 + height: 173.59998 + m_MinSize: {x: 232, y: 276} + m_MaxSize: {x: 10002, y: 10026} + m_ActualView: {fileID: 27} + m_Panes: + - {fileID: 27} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: Window + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 1183.2 + y: 0 + width: 352.80005 + height: 716.8 + m_MinSize: {x: 51, y: 76} + m_MaxSize: {x: 4001, y: 4026} + m_ActualView: {fileID: 15} + m_Panes: + - {fileID: 28} + - {fileID: 29} + - {fileID: 15} + m_Selected: 2 + m_LastSelected: 0 +--- !u!114 &15 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ffb9ccd5681bd841ae77e9e5571f770, type: 3} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 50, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Git for Unity + m_Image: {fileID: 0} + m_Tooltip: + m_TextWithWhitespace: "Git for Unity\u200B" + m_Pos: + serializedVersion: 2 + x: 1184.2 + y: 24 + width: 351.80005 + height: 690.8 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + progressMessageClearTime: -1 + notificationClearTime: -1 + timeSinceLastRotation: -1 + currentBranchAndRemoteHasUpdate: 0 + currentTrackingStatusHasUpdate: 0 + currentStatusEntriesHasUpdate: 0 + repositoryProgressHasUpdate: 0 + appManagerProgressHasUpdate: 0 + changeTab: 5 + activeTab: 5 + initProjectView: + hasCompletedInitialCheck: 1 + isUserDataPresent: 1 + lastCheckUserChangedEvent: + updatedTimeString: 2025-03-01T16:24:57.621+03:00 + cacheType: 8 + branchesView: + treeLocals: + IsRemote: 0 + folders: + keys: + - Local branches + values: + - path: Local branches + label: Local branches + level: 0 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 0 + checkState: 0 + checkedFileNodes: + keys: [] + values: [] + title: Local branches + pathSeparator: / + displayRootNode: 1 + isSelectable: 1 + isCheckable: 0 + nodes: + - path: Local branches + label: Local branches + level: 0 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 0 + checkState: 0 + selectedNode: + path: + label: + level: 0 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 0 + checkState: 0 + treeRemotes: + IsRemote: 1 + folders: + keys: + - Remote branches + values: + - path: Remote branches + label: Remote branches + level: 0 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 0 + checkState: 0 + checkedFileNodes: + keys: [] + values: [] + title: Remote branches + pathSeparator: / + displayRootNode: 1 + isSelectable: 1 + isCheckable: 0 + nodes: + - path: Remote branches + label: Remote branches + level: 0 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 0 + checkState: 0 + selectedNode: + path: + label: + level: 0 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 0 + checkState: 0 + mode: 0 + newBranchName: + scroll: {x: 0, y: 0} + disableDelete: 1 + disableCreate: 1 + lastLocalAndRemoteBranchListChangedEvent: + updatedTimeString: 0001-01-01T00:00:00.000+00:00 + cacheType: 2 + lastCurrentBranchAndRemoteChange: + updatedTimeString: 2025-03-01T16:25:06.380+03:00 + cacheType: 1 + currentBranch: + name: master + tracking: + currentRemote: + name: + url: + login: + user: + host: + function: 0 + token: + localBranches: [] + remoteBranches: [] + changesView: + currentBranchHasUpdate: 0 + currentStatusEntriesHasUpdate: 0 + currentLocksHasUpdate: 0 + commitBody: + commitMessage: second initial commit + currentBranch: master + treeScroll: {x: 0, y: 1132} + treeChanges: + assets: + keys: + - 00000000000000001000000000000000 + - 052faaac586de48259a63d0c4782560b + - 8105016687592461f977c054a80ce2f2 + - 9c53962885c2c4f449125a979d6ad240 + - 99c9720ab356a0642a771bea13969a05 + - 709f11a7f3c4041caa4ef136ea32d874 + - ab09877e2e707104187f6f83e2f62510 + - 65bc7dbf4170f435aa868c779acfb082 + - 5e6cbd92db86f4b18aec3ed561671858 + - f288ae1f4751b564a96ac7587541f7a2 + - 4b83569d67af61e458304325a23e5dfd + - 10fc4df2da32a41aaa32d77bc913491c + - 18dc0cd2c080841dea60987a38ce93fa + - ba062aa6c92b140379dbc06b43dd3b9b + - 8a0c9218a650547d98138cd835033977 + - 727a75301c3d24613a3ebcec4a24c2c8 + - eabc9546105bf4accac1fd62a63e88e6 + - 5a9bcd70e6a4b4b05badaa72e827d8e0 + - 3ad9b87dffba344c89909c6d1b1c17e1 + - 476cc7d7cd9874016adc216baab94a0a + - fcf7219bab7fe46a1ad266029b2fee19 + - 00000000000000006000000000000000 + - 00000000000000007100000000000000 + - 00000000000000008000000000000000 + - 0000000000000000b000000000000000 + - 0000000000000000c000000000000000 + - 00000000000000006100000000000000 + - 00000000000000002000000000000000 + - 0000000000000000f100000000000000 + - 00000000000000000200000000000000 + - 00000000000000004100000000000000 + - 00000000000000005100000000000000 + - 0000000000000000b100000000000000 + - 00000000000000004000000000000000 + - 0000000000000000e100000000000000 + - 00000000000000009000000000000000 + - 00000000000000003000000000000000 + - 00000000000000007000000000000000 + - 0000000000000000a100000000000000 + - 0000000000000000d100000000000000 + - 0000000000000000c100000000000000 + values: + - path: Assets + label: Assets + level: 0 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\InputSystem_Actions.inputactions + label: InputSystem_Actions.inputactions + level: 1 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\InputSystem_Actions.inputactions + fullPath: C:\Users\emil2\No Time To Rest\Assets\InputSystem_Actions.inputactions + projectPath: Assets\InputSystem_Actions.inputactions + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Readme.asset + label: Readme.asset + level: 1 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Readme.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Readme.asset + projectPath: Assets\Readme.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Scenes + label: Scenes + level: 1 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\Scenes\SampleScene.unity + label: SampleScene.unity + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Scenes\SampleScene.unity + fullPath: C:\Users\emil2\No Time To Rest\Assets\Scenes\SampleScene.unity + projectPath: Assets\Scenes\SampleScene.unity + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings + label: Settings + level: 1 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\Settings\DefaultVolumeProfile.asset + label: DefaultVolumeProfile.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\DefaultVolumeProfile.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\DefaultVolumeProfile.asset + projectPath: Assets\Settings\DefaultVolumeProfile.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_Renderer.asset + label: Mobile_Renderer.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\Mobile_Renderer.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_Renderer.asset + projectPath: Assets\Settings\Mobile_Renderer.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_RPAsset.asset + label: Mobile_RPAsset.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\Mobile_RPAsset.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_RPAsset.asset + projectPath: Assets\Settings\Mobile_RPAsset.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_Renderer.asset + label: PC_Renderer.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\PC_Renderer.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_Renderer.asset + projectPath: Assets\Settings\PC_Renderer.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_RPAsset.asset + label: PC_RPAsset.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\PC_RPAsset.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_RPAsset.asset + projectPath: Assets\Settings\PC_RPAsset.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\SampleSceneProfile.asset + label: SampleSceneProfile.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\SampleSceneProfile.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\SampleSceneProfile.asset + projectPath: Assets\Settings\SampleSceneProfile.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + label: UniversalRenderPipelineGlobalSettings.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + projectPath: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo + label: TutorialInfo + level: 1 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\TutorialInfo\Icons + label: Icons + level: 2 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\TutorialInfo\Icons\URP.png + label: URP.png + level: 3 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Icons\URP.png + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Icons\URP.png + projectPath: Assets\TutorialInfo\Icons\URP.png + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Layout.wlt + label: Layout.wlt + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Layout.wlt + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Layout.wlt + projectPath: Assets\TutorialInfo\Layout.wlt + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts + label: Scripts + level: 2 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\TutorialInfo\Scripts\Editor + label: Editor + level: 3 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + label: ReadmeEditor.cs + level: 4 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + projectPath: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Readme.cs + label: Readme.cs + level: 3 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Scripts\Readme.cs + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Readme.cs + projectPath: Assets\TutorialInfo\Scripts\Readme.cs + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\AudioManager.asset + label: AudioManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\AudioManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\AudioManager.asset + projectPath: ProjectSettings\AudioManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ClusterInputManager.asset + label: ClusterInputManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\ClusterInputManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ClusterInputManager.asset + projectPath: ProjectSettings\ClusterInputManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\DynamicsManager.asset + label: DynamicsManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\DynamicsManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\DynamicsManager.asset + projectPath: ProjectSettings\DynamicsManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\EditorBuildSettings.asset + label: EditorBuildSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\EditorBuildSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\EditorBuildSettings.asset + projectPath: ProjectSettings\EditorBuildSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\EditorSettings.asset + label: EditorSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\EditorSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\EditorSettings.asset + projectPath: ProjectSettings\EditorSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\GraphicsSettings.asset + label: GraphicsSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\GraphicsSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\GraphicsSettings.asset + projectPath: ProjectSettings\GraphicsSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\InputManager.asset + label: InputManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\InputManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\InputManager.asset + projectPath: ProjectSettings\InputManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\MemorySettings.asset + label: MemorySettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\MemorySettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\MemorySettings.asset + projectPath: ProjectSettings\MemorySettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\MultiplayerManager.asset + label: MultiplayerManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\MultiplayerManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\MultiplayerManager.asset + projectPath: ProjectSettings\MultiplayerManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\NavMeshAreas.asset + label: NavMeshAreas.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\NavMeshAreas.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\NavMeshAreas.asset + projectPath: ProjectSettings\NavMeshAreas.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\Physics2DSettings.asset + label: Physics2DSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\Physics2DSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\Physics2DSettings.asset + projectPath: ProjectSettings\Physics2DSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\PresetManager.asset + label: PresetManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\PresetManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\PresetManager.asset + projectPath: ProjectSettings\PresetManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ProjectSettings.asset + label: ProjectSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\ProjectSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ProjectSettings.asset + projectPath: ProjectSettings\ProjectSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ProjectVersion.txt + label: ProjectVersion.txt + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\ProjectVersion.txt + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ProjectVersion.txt + projectPath: ProjectSettings\ProjectVersion.txt + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\QualitySettings.asset + label: QualitySettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\QualitySettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\QualitySettings.asset + projectPath: ProjectSettings\QualitySettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\TagManager.asset + label: TagManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\TagManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\TagManager.asset + projectPath: ProjectSettings\TagManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\TimeManager.asset + label: TimeManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\TimeManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\TimeManager.asset + projectPath: ProjectSettings\TimeManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\UnityConnectSettings.asset + label: UnityConnectSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\UnityConnectSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\UnityConnectSettings.asset + projectPath: ProjectSettings\UnityConnectSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\VersionControlSettings.asset + label: VersionControlSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\VersionControlSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\VersionControlSettings.asset + projectPath: ProjectSettings\VersionControlSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\VFXManager.asset + label: VFXManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\VFXManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\VFXManager.asset + projectPath: ProjectSettings\VFXManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + folders: + keys: + - Assets + - Assets\Scenes + - Assets\Settings + - Assets\TutorialInfo + - Assets\TutorialInfo\Icons + - Assets\TutorialInfo\Scripts + - Assets\TutorialInfo\Scripts\Editor + - Packages + - ProjectSettings + - UserSettings + - UserSettings\Layouts + values: + - path: Assets + label: Assets + level: 0 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\Scenes + label: Scenes + level: 1 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\Settings + label: Settings + level: 1 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\TutorialInfo + label: TutorialInfo + level: 1 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\TutorialInfo\Icons + label: Icons + level: 2 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\TutorialInfo\Scripts + label: Scripts + level: 2 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\TutorialInfo\Scripts\Editor + label: Editor + level: 3 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Packages + label: Packages + level: 0 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: ProjectSettings + label: ProjectSettings + level: 0 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: UserSettings + label: UserSettings + level: 0 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: UserSettings\Layouts + label: Layouts + level: 1 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + checkedFileNodes: + keys: + - Assets\InputSystem_Actions.inputactions + - Assets\InputSystem_Actions.inputactions.meta + - Assets\Readme.asset + - Assets\Readme.asset.meta + - Assets\Scenes.meta + - Assets\Scenes\SampleScene.unity + - Assets\Scenes\SampleScene.unity.meta + - Assets\Settings.meta + - Assets\Settings\DefaultVolumeProfile.asset + - Assets\Settings\DefaultVolumeProfile.asset.meta + - Assets\Settings\Mobile_Renderer.asset + - Assets\Settings\Mobile_Renderer.asset.meta + - Assets\Settings\Mobile_RPAsset.asset + - Assets\Settings\Mobile_RPAsset.asset.meta + - Assets\Settings\PC_Renderer.asset + - Assets\Settings\PC_Renderer.asset.meta + - Assets\Settings\PC_RPAsset.asset + - Assets\Settings\PC_RPAsset.asset.meta + - Assets\Settings\SampleSceneProfile.asset + - Assets\Settings\SampleSceneProfile.asset.meta + - Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + - Assets\Settings\UniversalRenderPipelineGlobalSettings.asset.meta + - Assets\TutorialInfo.meta + - Assets\TutorialInfo\Icons.meta + - Assets\TutorialInfo\Icons\URP.png + - Assets\TutorialInfo\Icons\URP.png.meta + - Assets\TutorialInfo\Layout.wlt + - Assets\TutorialInfo\Layout.wlt.meta + - Assets\TutorialInfo\Scripts.meta + - Assets\TutorialInfo\Scripts\Editor.meta + - Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + - Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs.meta + - Assets\TutorialInfo\Scripts\Readme.cs + - Assets\TutorialInfo\Scripts\Readme.cs.meta + - Packages\manifest.json + - Packages\packages-lock.json + - ProjectSettings\AudioManager.asset + - ProjectSettings\ClusterInputManager.asset + - ProjectSettings\DynamicsManager.asset + - ProjectSettings\EditorBuildSettings.asset + - ProjectSettings\EditorSettings.asset + - ProjectSettings\GraphicsSettings.asset + - ProjectSettings\InputManager.asset + - ProjectSettings\MemorySettings.asset + - ProjectSettings\MultiplayerManager.asset + - ProjectSettings\NavMeshAreas.asset + - ProjectSettings\PackageManagerSettings.asset + - ProjectSettings\Physics2DSettings.asset + - ProjectSettings\PresetManager.asset + - ProjectSettings\ProjectSettings.asset + - ProjectSettings\ProjectVersion.txt + - ProjectSettings\QualitySettings.asset + - ProjectSettings\ShaderGraphSettings.asset + - ProjectSettings\TagManager.asset + - ProjectSettings\TimeManager.asset + - ProjectSettings\UnityConnectSettings.asset + - ProjectSettings\URPProjectSettings.asset + - ProjectSettings\VersionControlSettings.asset + - ProjectSettings\VFXManager.asset + - ProjectSettings\XRSettings.asset + - UserSettings\EditorUserSettings.asset + - UserSettings\Layouts\default-6000.dwlt + - UserSettings\Search.index + - UserSettings\Search.settings + values: + - path: Assets\InputSystem_Actions.inputactions + label: InputSystem_Actions.inputactions + level: 1 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\InputSystem_Actions.inputactions + fullPath: C:\Users\emil2\No Time To Rest\Assets\InputSystem_Actions.inputactions + projectPath: Assets\InputSystem_Actions.inputactions + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\InputSystem_Actions.inputactions.meta + label: InputSystem_Actions.inputactions.meta + level: 2 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\InputSystem_Actions.inputactions.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\InputSystem_Actions.inputactions.meta + projectPath: Assets\InputSystem_Actions.inputactions.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Readme.asset + label: Readme.asset + level: 1 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Readme.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Readme.asset + projectPath: Assets\Readme.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Readme.asset.meta + label: Readme.asset.meta + level: 2 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Readme.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Readme.asset.meta + projectPath: Assets\Readme.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Scenes.meta + label: Scenes.meta + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Scenes.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Scenes.meta + projectPath: Assets\Scenes.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Scenes\SampleScene.unity + label: SampleScene.unity + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Scenes\SampleScene.unity + fullPath: C:\Users\emil2\No Time To Rest\Assets\Scenes\SampleScene.unity + projectPath: Assets\Scenes\SampleScene.unity + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Scenes\SampleScene.unity.meta + label: SampleScene.unity.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Scenes\SampleScene.unity.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Scenes\SampleScene.unity.meta + projectPath: Assets\Scenes\SampleScene.unity.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings.meta + label: Settings.meta + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings.meta + projectPath: Assets\Settings.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\DefaultVolumeProfile.asset + label: DefaultVolumeProfile.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\DefaultVolumeProfile.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\DefaultVolumeProfile.asset + projectPath: Assets\Settings\DefaultVolumeProfile.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\DefaultVolumeProfile.asset.meta + label: DefaultVolumeProfile.asset.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\DefaultVolumeProfile.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\DefaultVolumeProfile.asset.meta + projectPath: Assets\Settings\DefaultVolumeProfile.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_Renderer.asset + label: Mobile_Renderer.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\Mobile_Renderer.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_Renderer.asset + projectPath: Assets\Settings\Mobile_Renderer.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_Renderer.asset.meta + label: Mobile_Renderer.asset.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\Mobile_Renderer.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_Renderer.asset.meta + projectPath: Assets\Settings\Mobile_Renderer.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_RPAsset.asset + label: Mobile_RPAsset.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\Mobile_RPAsset.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_RPAsset.asset + projectPath: Assets\Settings\Mobile_RPAsset.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_RPAsset.asset.meta + label: Mobile_RPAsset.asset.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\Mobile_RPAsset.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_RPAsset.asset.meta + projectPath: Assets\Settings\Mobile_RPAsset.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_Renderer.asset + label: PC_Renderer.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\PC_Renderer.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_Renderer.asset + projectPath: Assets\Settings\PC_Renderer.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_Renderer.asset.meta + label: PC_Renderer.asset.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\PC_Renderer.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_Renderer.asset.meta + projectPath: Assets\Settings\PC_Renderer.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_RPAsset.asset + label: PC_RPAsset.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\PC_RPAsset.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_RPAsset.asset + projectPath: Assets\Settings\PC_RPAsset.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_RPAsset.asset.meta + label: PC_RPAsset.asset.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\PC_RPAsset.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_RPAsset.asset.meta + projectPath: Assets\Settings\PC_RPAsset.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\SampleSceneProfile.asset + label: SampleSceneProfile.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\SampleSceneProfile.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\SampleSceneProfile.asset + projectPath: Assets\Settings\SampleSceneProfile.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\SampleSceneProfile.asset.meta + label: SampleSceneProfile.asset.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\SampleSceneProfile.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\SampleSceneProfile.asset.meta + projectPath: Assets\Settings\SampleSceneProfile.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + label: UniversalRenderPipelineGlobalSettings.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + projectPath: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset.meta + label: UniversalRenderPipelineGlobalSettings.asset.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\UniversalRenderPipelineGlobalSettings.asset.meta + projectPath: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo.meta + label: TutorialInfo.meta + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo.meta + projectPath: Assets\TutorialInfo.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Icons.meta + label: Icons.meta + level: 2 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Icons.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Icons.meta + projectPath: Assets\TutorialInfo\Icons.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Icons\URP.png + label: URP.png + level: 3 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Icons\URP.png + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Icons\URP.png + projectPath: Assets\TutorialInfo\Icons\URP.png + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Icons\URP.png.meta + label: URP.png.meta + level: 4 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Icons\URP.png.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Icons\URP.png.meta + projectPath: Assets\TutorialInfo\Icons\URP.png.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Layout.wlt + label: Layout.wlt + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Layout.wlt + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Layout.wlt + projectPath: Assets\TutorialInfo\Layout.wlt + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Layout.wlt.meta + label: Layout.wlt.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Layout.wlt.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Layout.wlt.meta + projectPath: Assets\TutorialInfo\Layout.wlt.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts.meta + label: Scripts.meta + level: 2 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Scripts.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts.meta + projectPath: Assets\TutorialInfo\Scripts.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Editor.meta + label: Editor.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Scripts\Editor.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Editor.meta + projectPath: Assets\TutorialInfo\Scripts\Editor.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + label: ReadmeEditor.cs + level: 4 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + projectPath: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs.meta + label: ReadmeEditor.cs.meta + level: 5 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs.meta + projectPath: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Readme.cs + label: Readme.cs + level: 3 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Scripts\Readme.cs + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Readme.cs + projectPath: Assets\TutorialInfo\Scripts\Readme.cs + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Readme.cs.meta + label: Readme.cs.meta + level: 4 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Scripts\Readme.cs.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Readme.cs.meta + projectPath: Assets\TutorialInfo\Scripts\Readme.cs.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Packages\manifest.json + label: manifest.json + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Packages\manifest.json + fullPath: C:\Users\emil2\No Time To Rest\Packages\manifest.json + projectPath: Packages\manifest.json + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Packages\packages-lock.json + label: packages-lock.json + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Packages\packages-lock.json + fullPath: C:\Users\emil2\No Time To Rest\Packages\packages-lock.json + projectPath: Packages\packages-lock.json + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\AudioManager.asset + label: AudioManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\AudioManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\AudioManager.asset + projectPath: ProjectSettings\AudioManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ClusterInputManager.asset + label: ClusterInputManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\ClusterInputManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ClusterInputManager.asset + projectPath: ProjectSettings\ClusterInputManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\DynamicsManager.asset + label: DynamicsManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\DynamicsManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\DynamicsManager.asset + projectPath: ProjectSettings\DynamicsManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\EditorBuildSettings.asset + label: EditorBuildSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\EditorBuildSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\EditorBuildSettings.asset + projectPath: ProjectSettings\EditorBuildSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\EditorSettings.asset + label: EditorSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\EditorSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\EditorSettings.asset + projectPath: ProjectSettings\EditorSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\GraphicsSettings.asset + label: GraphicsSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\GraphicsSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\GraphicsSettings.asset + projectPath: ProjectSettings\GraphicsSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\InputManager.asset + label: InputManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\InputManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\InputManager.asset + projectPath: ProjectSettings\InputManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\MemorySettings.asset + label: MemorySettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\MemorySettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\MemorySettings.asset + projectPath: ProjectSettings\MemorySettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\MultiplayerManager.asset + label: MultiplayerManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\MultiplayerManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\MultiplayerManager.asset + projectPath: ProjectSettings\MultiplayerManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\NavMeshAreas.asset + label: NavMeshAreas.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\NavMeshAreas.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\NavMeshAreas.asset + projectPath: ProjectSettings\NavMeshAreas.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\PackageManagerSettings.asset + label: PackageManagerSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\PackageManagerSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\PackageManagerSettings.asset + projectPath: ProjectSettings\PackageManagerSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\Physics2DSettings.asset + label: Physics2DSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\Physics2DSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\Physics2DSettings.asset + projectPath: ProjectSettings\Physics2DSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\PresetManager.asset + label: PresetManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\PresetManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\PresetManager.asset + projectPath: ProjectSettings\PresetManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ProjectSettings.asset + label: ProjectSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\ProjectSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ProjectSettings.asset + projectPath: ProjectSettings\ProjectSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ProjectVersion.txt + label: ProjectVersion.txt + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\ProjectVersion.txt + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ProjectVersion.txt + projectPath: ProjectSettings\ProjectVersion.txt + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\QualitySettings.asset + label: QualitySettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\QualitySettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\QualitySettings.asset + projectPath: ProjectSettings\QualitySettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ShaderGraphSettings.asset + label: ShaderGraphSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\ShaderGraphSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ShaderGraphSettings.asset + projectPath: ProjectSettings\ShaderGraphSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\TagManager.asset + label: TagManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\TagManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\TagManager.asset + projectPath: ProjectSettings\TagManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\TimeManager.asset + label: TimeManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\TimeManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\TimeManager.asset + projectPath: ProjectSettings\TimeManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\UnityConnectSettings.asset + label: UnityConnectSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\UnityConnectSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\UnityConnectSettings.asset + projectPath: ProjectSettings\UnityConnectSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\URPProjectSettings.asset + label: URPProjectSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\URPProjectSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\URPProjectSettings.asset + projectPath: ProjectSettings\URPProjectSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\VersionControlSettings.asset + label: VersionControlSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\VersionControlSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\VersionControlSettings.asset + projectPath: ProjectSettings\VersionControlSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\VFXManager.asset + label: VFXManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\VFXManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\VFXManager.asset + projectPath: ProjectSettings\VFXManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\XRSettings.asset + label: XRSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\XRSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\XRSettings.asset + projectPath: ProjectSettings\XRSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: UserSettings\EditorUserSettings.asset + label: EditorUserSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: UserSettings\EditorUserSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\UserSettings\EditorUserSettings.asset + projectPath: UserSettings\EditorUserSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: UserSettings\Layouts\default-6000.dwlt + label: default-6000.dwlt + level: 2 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: UserSettings\Layouts\default-6000.dwlt + fullPath: C:\Users\emil2\No Time To Rest\UserSettings\Layouts\default-6000.dwlt + projectPath: UserSettings\Layouts\default-6000.dwlt + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: UserSettings\Search.index + label: Search.index + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: UserSettings\Search.index + fullPath: C:\Users\emil2\No Time To Rest\UserSettings\Search.index + projectPath: UserSettings\Search.index + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: UserSettings\Search.settings + label: Search.settings + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: UserSettings\Search.settings + fullPath: C:\Users\emil2\No Time To Rest\UserSettings\Search.settings + projectPath: UserSettings\Search.settings + originalPath: + indexStatus: 1 + workTreeStatus: 1 + title: + pathSeparator: \ + displayRootNode: 0 + isSelectable: 1 + isCheckable: 1 + isUsingGlobalSelection: 1 + nodes: + - path: + label: + level: -1 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets + label: Assets + level: 0 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\InputSystem_Actions.inputactions + label: InputSystem_Actions.inputactions + level: 1 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\InputSystem_Actions.inputactions + fullPath: C:\Users\emil2\No Time To Rest\Assets\InputSystem_Actions.inputactions + projectPath: Assets\InputSystem_Actions.inputactions + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\InputSystem_Actions.inputactions.meta + label: InputSystem_Actions.inputactions.meta + level: 2 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\InputSystem_Actions.inputactions.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\InputSystem_Actions.inputactions.meta + projectPath: Assets\InputSystem_Actions.inputactions.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Readme.asset + label: Readme.asset + level: 1 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Readme.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Readme.asset + projectPath: Assets\Readme.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Readme.asset.meta + label: Readme.asset.meta + level: 2 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Readme.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Readme.asset.meta + projectPath: Assets\Readme.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Scenes.meta + label: Scenes.meta + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Scenes.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Scenes.meta + projectPath: Assets\Scenes.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Scenes + label: Scenes + level: 1 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\Scenes\SampleScene.unity + label: SampleScene.unity + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Scenes\SampleScene.unity + fullPath: C:\Users\emil2\No Time To Rest\Assets\Scenes\SampleScene.unity + projectPath: Assets\Scenes\SampleScene.unity + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Scenes\SampleScene.unity.meta + label: SampleScene.unity.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Scenes\SampleScene.unity.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Scenes\SampleScene.unity.meta + projectPath: Assets\Scenes\SampleScene.unity.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings.meta + label: Settings.meta + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings.meta + projectPath: Assets\Settings.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings + label: Settings + level: 1 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\Settings\DefaultVolumeProfile.asset + label: DefaultVolumeProfile.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\DefaultVolumeProfile.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\DefaultVolumeProfile.asset + projectPath: Assets\Settings\DefaultVolumeProfile.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\DefaultVolumeProfile.asset.meta + label: DefaultVolumeProfile.asset.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\DefaultVolumeProfile.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\DefaultVolumeProfile.asset.meta + projectPath: Assets\Settings\DefaultVolumeProfile.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_Renderer.asset + label: Mobile_Renderer.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\Mobile_Renderer.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_Renderer.asset + projectPath: Assets\Settings\Mobile_Renderer.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_Renderer.asset.meta + label: Mobile_Renderer.asset.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\Mobile_Renderer.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_Renderer.asset.meta + projectPath: Assets\Settings\Mobile_Renderer.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_RPAsset.asset + label: Mobile_RPAsset.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\Mobile_RPAsset.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_RPAsset.asset + projectPath: Assets\Settings\Mobile_RPAsset.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_RPAsset.asset.meta + label: Mobile_RPAsset.asset.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\Mobile_RPAsset.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_RPAsset.asset.meta + projectPath: Assets\Settings\Mobile_RPAsset.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_Renderer.asset + label: PC_Renderer.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\PC_Renderer.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_Renderer.asset + projectPath: Assets\Settings\PC_Renderer.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_Renderer.asset.meta + label: PC_Renderer.asset.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\PC_Renderer.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_Renderer.asset.meta + projectPath: Assets\Settings\PC_Renderer.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_RPAsset.asset + label: PC_RPAsset.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\PC_RPAsset.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_RPAsset.asset + projectPath: Assets\Settings\PC_RPAsset.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_RPAsset.asset.meta + label: PC_RPAsset.asset.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\PC_RPAsset.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_RPAsset.asset.meta + projectPath: Assets\Settings\PC_RPAsset.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\SampleSceneProfile.asset + label: SampleSceneProfile.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\SampleSceneProfile.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\SampleSceneProfile.asset + projectPath: Assets\Settings\SampleSceneProfile.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\SampleSceneProfile.asset.meta + label: SampleSceneProfile.asset.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\SampleSceneProfile.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\SampleSceneProfile.asset.meta + projectPath: Assets\Settings\SampleSceneProfile.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + label: UniversalRenderPipelineGlobalSettings.asset + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + projectPath: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset.meta + label: UniversalRenderPipelineGlobalSettings.asset.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\UniversalRenderPipelineGlobalSettings.asset.meta + projectPath: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo.meta + label: TutorialInfo.meta + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo.meta + projectPath: Assets\TutorialInfo.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo + label: TutorialInfo + level: 1 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\TutorialInfo\Icons.meta + label: Icons.meta + level: 2 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Icons.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Icons.meta + projectPath: Assets\TutorialInfo\Icons.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Icons + label: Icons + level: 2 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\TutorialInfo\Icons\URP.png + label: URP.png + level: 3 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Icons\URP.png + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Icons\URP.png + projectPath: Assets\TutorialInfo\Icons\URP.png + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Icons\URP.png.meta + label: URP.png.meta + level: 4 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Icons\URP.png.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Icons\URP.png.meta + projectPath: Assets\TutorialInfo\Icons\URP.png.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Layout.wlt + label: Layout.wlt + level: 2 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Layout.wlt + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Layout.wlt + projectPath: Assets\TutorialInfo\Layout.wlt + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Layout.wlt.meta + label: Layout.wlt.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Layout.wlt.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Layout.wlt.meta + projectPath: Assets\TutorialInfo\Layout.wlt.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts.meta + label: Scripts.meta + level: 2 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Scripts.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts.meta + projectPath: Assets\TutorialInfo\Scripts.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts + label: Scripts + level: 2 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\TutorialInfo\Scripts\Editor.meta + label: Editor.meta + level: 3 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Scripts\Editor.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Editor.meta + projectPath: Assets\TutorialInfo\Scripts\Editor.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Editor + label: Editor + level: 3 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + label: ReadmeEditor.cs + level: 4 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + projectPath: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs.meta + label: ReadmeEditor.cs.meta + level: 5 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs.meta + projectPath: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Readme.cs + label: Readme.cs + level: 3 + isFolder: 0 + isContainer: 1 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Scripts\Readme.cs + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Readme.cs + projectPath: Assets\TutorialInfo\Scripts\Readme.cs + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Readme.cs.meta + label: Readme.cs.meta + level: 4 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Assets\TutorialInfo\Scripts\Readme.cs.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Readme.cs.meta + projectPath: Assets\TutorialInfo\Scripts\Readme.cs.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Packages + label: Packages + level: 0 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Packages\manifest.json + label: manifest.json + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Packages\manifest.json + fullPath: C:\Users\emil2\No Time To Rest\Packages\manifest.json + projectPath: Packages\manifest.json + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Packages\packages-lock.json + label: packages-lock.json + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: Packages\packages-lock.json + fullPath: C:\Users\emil2\No Time To Rest\Packages\packages-lock.json + projectPath: Packages\packages-lock.json + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings + label: ProjectSettings + level: 0 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: ProjectSettings\AudioManager.asset + label: AudioManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\AudioManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\AudioManager.asset + projectPath: ProjectSettings\AudioManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ClusterInputManager.asset + label: ClusterInputManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\ClusterInputManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ClusterInputManager.asset + projectPath: ProjectSettings\ClusterInputManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\DynamicsManager.asset + label: DynamicsManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\DynamicsManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\DynamicsManager.asset + projectPath: ProjectSettings\DynamicsManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\EditorBuildSettings.asset + label: EditorBuildSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\EditorBuildSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\EditorBuildSettings.asset + projectPath: ProjectSettings\EditorBuildSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\EditorSettings.asset + label: EditorSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\EditorSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\EditorSettings.asset + projectPath: ProjectSettings\EditorSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\GraphicsSettings.asset + label: GraphicsSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\GraphicsSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\GraphicsSettings.asset + projectPath: ProjectSettings\GraphicsSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\InputManager.asset + label: InputManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\InputManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\InputManager.asset + projectPath: ProjectSettings\InputManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\MemorySettings.asset + label: MemorySettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\MemorySettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\MemorySettings.asset + projectPath: ProjectSettings\MemorySettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\MultiplayerManager.asset + label: MultiplayerManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\MultiplayerManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\MultiplayerManager.asset + projectPath: ProjectSettings\MultiplayerManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\NavMeshAreas.asset + label: NavMeshAreas.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\NavMeshAreas.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\NavMeshAreas.asset + projectPath: ProjectSettings\NavMeshAreas.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\PackageManagerSettings.asset + label: PackageManagerSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\PackageManagerSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\PackageManagerSettings.asset + projectPath: ProjectSettings\PackageManagerSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\Physics2DSettings.asset + label: Physics2DSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\Physics2DSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\Physics2DSettings.asset + projectPath: ProjectSettings\Physics2DSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\PresetManager.asset + label: PresetManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\PresetManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\PresetManager.asset + projectPath: ProjectSettings\PresetManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ProjectSettings.asset + label: ProjectSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\ProjectSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ProjectSettings.asset + projectPath: ProjectSettings\ProjectSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ProjectVersion.txt + label: ProjectVersion.txt + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\ProjectVersion.txt + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ProjectVersion.txt + projectPath: ProjectSettings\ProjectVersion.txt + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\QualitySettings.asset + label: QualitySettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\QualitySettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\QualitySettings.asset + projectPath: ProjectSettings\QualitySettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ShaderGraphSettings.asset + label: ShaderGraphSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\ShaderGraphSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ShaderGraphSettings.asset + projectPath: ProjectSettings\ShaderGraphSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\TagManager.asset + label: TagManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\TagManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\TagManager.asset + projectPath: ProjectSettings\TagManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\TimeManager.asset + label: TimeManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\TimeManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\TimeManager.asset + projectPath: ProjectSettings\TimeManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\UnityConnectSettings.asset + label: UnityConnectSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\UnityConnectSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\UnityConnectSettings.asset + projectPath: ProjectSettings\UnityConnectSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\URPProjectSettings.asset + label: URPProjectSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\URPProjectSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\URPProjectSettings.asset + projectPath: ProjectSettings\URPProjectSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\VersionControlSettings.asset + label: VersionControlSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\VersionControlSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\VersionControlSettings.asset + projectPath: ProjectSettings\VersionControlSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\VFXManager.asset + label: VFXManager.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\VFXManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\VFXManager.asset + projectPath: ProjectSettings\VFXManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\XRSettings.asset + label: XRSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: ProjectSettings\XRSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\XRSettings.asset + projectPath: ProjectSettings\XRSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: UserSettings + label: UserSettings + level: 0 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: UserSettings\EditorUserSettings.asset + label: EditorUserSettings.asset + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: UserSettings\EditorUserSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\UserSettings\EditorUserSettings.asset + projectPath: UserSettings\EditorUserSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: UserSettings\Layouts + label: Layouts + level: 1 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: UserSettings\Layouts\default-6000.dwlt + label: default-6000.dwlt + level: 2 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: UserSettings\Layouts\default-6000.dwlt + fullPath: C:\Users\emil2\No Time To Rest\UserSettings\Layouts\default-6000.dwlt + projectPath: UserSettings\Layouts\default-6000.dwlt + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: UserSettings\Search.index + label: Search.index + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: UserSettings\Search.index + fullPath: C:\Users\emil2\No Time To Rest\UserSettings\Search.index + projectPath: UserSettings\Search.index + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: UserSettings\Search.settings + label: Search.settings + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 1 + checkState: 1 + isLocked: 0 + gitStatusEntry: + path: UserSettings\Search.settings + fullPath: C:\Users\emil2\No Time To Rest\UserSettings\Search.settings + projectPath: UserSettings\Search.settings + originalPath: + indexStatus: 1 + workTreeStatus: 1 + selectedNode: + path: + label: + level: 0 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 0 + checkState: 0 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + gitStatusEntries: + - path: Assets\InputSystem_Actions.inputactions + fullPath: C:\Users\emil2\No Time To Rest\Assets\InputSystem_Actions.inputactions + projectPath: Assets\InputSystem_Actions.inputactions + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\InputSystem_Actions.inputactions.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\InputSystem_Actions.inputactions.meta + projectPath: Assets\InputSystem_Actions.inputactions.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Readme.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Readme.asset + projectPath: Assets\Readme.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Readme.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Readme.asset.meta + projectPath: Assets\Readme.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Scenes.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Scenes.meta + projectPath: Assets\Scenes.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Scenes\SampleScene.unity + fullPath: C:\Users\emil2\No Time To Rest\Assets\Scenes\SampleScene.unity + projectPath: Assets\Scenes\SampleScene.unity + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Scenes\SampleScene.unity.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Scenes\SampleScene.unity.meta + projectPath: Assets\Scenes\SampleScene.unity.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings.meta + projectPath: Assets\Settings.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\DefaultVolumeProfile.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\DefaultVolumeProfile.asset + projectPath: Assets\Settings\DefaultVolumeProfile.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\DefaultVolumeProfile.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\DefaultVolumeProfile.asset.meta + projectPath: Assets\Settings\DefaultVolumeProfile.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_Renderer.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_Renderer.asset + projectPath: Assets\Settings\Mobile_Renderer.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_Renderer.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_Renderer.asset.meta + projectPath: Assets\Settings\Mobile_Renderer.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_RPAsset.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_RPAsset.asset + projectPath: Assets\Settings\Mobile_RPAsset.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_RPAsset.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_RPAsset.asset.meta + projectPath: Assets\Settings\Mobile_RPAsset.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_Renderer.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_Renderer.asset + projectPath: Assets\Settings\PC_Renderer.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_Renderer.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_Renderer.asset.meta + projectPath: Assets\Settings\PC_Renderer.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_RPAsset.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_RPAsset.asset + projectPath: Assets\Settings\PC_RPAsset.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_RPAsset.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_RPAsset.asset.meta + projectPath: Assets\Settings\PC_RPAsset.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\SampleSceneProfile.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\SampleSceneProfile.asset + projectPath: Assets\Settings\SampleSceneProfile.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\SampleSceneProfile.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\SampleSceneProfile.asset.meta + projectPath: Assets\Settings\SampleSceneProfile.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + projectPath: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\UniversalRenderPipelineGlobalSettings.asset.meta + projectPath: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo.meta + projectPath: Assets\TutorialInfo.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Icons.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Icons.meta + projectPath: Assets\TutorialInfo\Icons.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Icons\URP.png + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Icons\URP.png + projectPath: Assets\TutorialInfo\Icons\URP.png + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Icons\URP.png.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Icons\URP.png.meta + projectPath: Assets\TutorialInfo\Icons\URP.png.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Layout.wlt + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Layout.wlt + projectPath: Assets\TutorialInfo\Layout.wlt + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Layout.wlt.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Layout.wlt.meta + projectPath: Assets\TutorialInfo\Layout.wlt.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts.meta + projectPath: Assets\TutorialInfo\Scripts.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Editor.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Editor.meta + projectPath: Assets\TutorialInfo\Scripts\Editor.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + projectPath: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs.meta + projectPath: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Readme.cs + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Readme.cs + projectPath: Assets\TutorialInfo\Scripts\Readme.cs + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Readme.cs.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Readme.cs.meta + projectPath: Assets\TutorialInfo\Scripts\Readme.cs.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Packages\manifest.json + fullPath: C:\Users\emil2\No Time To Rest\Packages\manifest.json + projectPath: Packages\manifest.json + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Packages\packages-lock.json + fullPath: C:\Users\emil2\No Time To Rest\Packages\packages-lock.json + projectPath: Packages\packages-lock.json + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\AudioManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\AudioManager.asset + projectPath: ProjectSettings\AudioManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ClusterInputManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ClusterInputManager.asset + projectPath: ProjectSettings\ClusterInputManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\DynamicsManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\DynamicsManager.asset + projectPath: ProjectSettings\DynamicsManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\EditorBuildSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\EditorBuildSettings.asset + projectPath: ProjectSettings\EditorBuildSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\EditorSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\EditorSettings.asset + projectPath: ProjectSettings\EditorSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\GraphicsSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\GraphicsSettings.asset + projectPath: ProjectSettings\GraphicsSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\InputManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\InputManager.asset + projectPath: ProjectSettings\InputManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\MemorySettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\MemorySettings.asset + projectPath: ProjectSettings\MemorySettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\MultiplayerManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\MultiplayerManager.asset + projectPath: ProjectSettings\MultiplayerManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\NavMeshAreas.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\NavMeshAreas.asset + projectPath: ProjectSettings\NavMeshAreas.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\PackageManagerSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\PackageManagerSettings.asset + projectPath: ProjectSettings\PackageManagerSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\Physics2DSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\Physics2DSettings.asset + projectPath: ProjectSettings\Physics2DSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\PresetManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\PresetManager.asset + projectPath: ProjectSettings\PresetManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ProjectSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ProjectSettings.asset + projectPath: ProjectSettings\ProjectSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ProjectVersion.txt + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ProjectVersion.txt + projectPath: ProjectSettings\ProjectVersion.txt + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\QualitySettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\QualitySettings.asset + projectPath: ProjectSettings\QualitySettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ShaderGraphSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ShaderGraphSettings.asset + projectPath: ProjectSettings\ShaderGraphSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\TagManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\TagManager.asset + projectPath: ProjectSettings\TagManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\TimeManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\TimeManager.asset + projectPath: ProjectSettings\TimeManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\UnityConnectSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\UnityConnectSettings.asset + projectPath: ProjectSettings\UnityConnectSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\URPProjectSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\URPProjectSettings.asset + projectPath: ProjectSettings\URPProjectSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\VersionControlSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\VersionControlSettings.asset + projectPath: ProjectSettings\VersionControlSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\VFXManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\VFXManager.asset + projectPath: ProjectSettings\VFXManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\XRSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\XRSettings.asset + projectPath: ProjectSettings\XRSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: UserSettings\EditorUserSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\UserSettings\EditorUserSettings.asset + projectPath: UserSettings\EditorUserSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: UserSettings\Layouts\default-6000.dwlt + fullPath: C:\Users\emil2\No Time To Rest\UserSettings\Layouts\default-6000.dwlt + projectPath: UserSettings\Layouts\default-6000.dwlt + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: UserSettings\Search.index + fullPath: C:\Users\emil2\No Time To Rest\UserSettings\Search.index + projectPath: UserSettings\Search.index + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: UserSettings\Search.settings + fullPath: C:\Users\emil2\No Time To Rest\UserSettings\Search.settings + projectPath: UserSettings\Search.settings + originalPath: + indexStatus: 1 + workTreeStatus: 1 + changedFilesText: 64 changed files + lastCurrentBranchChangedEvent: + updatedTimeString: 2025-03-01T16:25:06.380+03:00 + cacheType: 1 + lastStatusEntriesChangedEvent: + updatedTimeString: 0001-01-01T00:00:00.000+00:00 + cacheType: 6 + lastLocksChangedEvent: + updatedTimeString: 0001-01-01T00:00:00.000+00:00 + cacheType: 7 + historyView: + currentLogHasUpdate: 0 + currentTrackingStatusHasUpdate: 0 + logEntries: + - commitID: f61cc34001d7411f09b47f5d5555bb449f058d39 + mergeA: + mergeB: + authorName: Emil Shanaty + authorEmail: emil28092005@gmail.com + commitEmail: emil28092005@gmail.com + commitName: Emil Shanaty + summary: Initial commit + description: + timeString: 2025-03-01T16:25:05.000+03:00 + commitTimeString: 2025-03-01T16:25:05.000+03:00 + changes: + - path: .gitattributes + fullPath: C:\Users\emil2\No Time To Rest\.gitattributes + projectPath: .gitattributes + originalPath: + indexStatus: 4 + workTreeStatus: 0 + - path: .gitignore + fullPath: C:\Users\emil2\No Time To Rest\.gitignore + projectPath: .gitignore + originalPath: + indexStatus: 4 + workTreeStatus: 0 + - path: Assets\.gitignore + fullPath: C:\Users\emil2\No Time To Rest\Assets\.gitignore + projectPath: Assets\.gitignore + originalPath: + indexStatus: 4 + workTreeStatus: 0 + statusAhead: 0 + lastLogChangedEvent: + updatedTimeString: 0001-01-01T00:00:00.000+00:00 + cacheType: 3 + lastTrackingStatusChangedEvent: + updatedTimeString: 0001-01-01T00:00:00.000+00:00 + cacheType: 5 + historyControl: + scroll: {x: 0, y: 0} + entries: + - commitID: f61cc34001d7411f09b47f5d5555bb449f058d39 + mergeA: + mergeB: + authorName: Emil Shanaty + authorEmail: emil28092005@gmail.com + commitEmail: emil28092005@gmail.com + commitName: Emil Shanaty + summary: Initial commit + description: + timeString: 2025-03-01T16:25:05.000+03:00 + commitTimeString: 2025-03-01T16:25:05.000+03:00 + changes: + - path: .gitattributes + fullPath: C:\Users\emil2\No Time To Rest\.gitattributes + projectPath: .gitattributes + originalPath: + indexStatus: 4 + workTreeStatus: 0 + - path: .gitignore + fullPath: C:\Users\emil2\No Time To Rest\.gitignore + projectPath: .gitignore + originalPath: + indexStatus: 4 + workTreeStatus: 0 + - path: Assets\.gitignore + fullPath: C:\Users\emil2\No Time To Rest\Assets\.gitignore + projectPath: Assets\.gitignore + originalPath: + indexStatus: 4 + workTreeStatus: 0 + statusAhead: 0 + selectedIndex: 0 + selectedEntry: + commitID: f61cc34001d7411f09b47f5d5555bb449f058d39 + mergeA: + mergeB: + authorName: Emil Shanaty + authorEmail: emil28092005@gmail.com + commitEmail: emil28092005@gmail.com + commitName: Emil Shanaty + summary: Initial commit + description: + timeString: 2025-03-01T16:25:05.000+03:00 + commitTimeString: 2025-03-01T16:25:05.000+03:00 + changes: + - path: .gitattributes + fullPath: C:\Users\emil2\No Time To Rest\.gitattributes + projectPath: .gitattributes + originalPath: + indexStatus: 4 + workTreeStatus: 0 + - path: .gitignore + fullPath: C:\Users\emil2\No Time To Rest\.gitignore + projectPath: .gitignore + originalPath: + indexStatus: 4 + workTreeStatus: 0 + - path: Assets\.gitignore + fullPath: C:\Users\emil2\No Time To Rest\Assets\.gitignore + projectPath: Assets\.gitignore + originalPath: + indexStatus: 4 + workTreeStatus: 0 + treeChanges: + assets: + keys: [] + values: [] + folders: + keys: + - Assets + values: + - path: Assets + label: Assets + level: 0 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 0 + checkState: 0 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + checkedFileNodes: + keys: [] + values: [] + title: + pathSeparator: \ + displayRootNode: 0 + isSelectable: 1 + isCheckable: 0 + isUsingGlobalSelection: 0 + nodes: + - path: + label: + level: -1 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 0 + checkState: 0 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: .gitattributes + label: .gitattributes + level: 0 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 0 + checkState: 0 + isLocked: 0 + gitStatusEntry: + path: .gitattributes + fullPath: C:\Users\emil2\No Time To Rest\.gitattributes + projectPath: .gitattributes + originalPath: + indexStatus: 4 + workTreeStatus: 0 + - path: .gitignore + label: .gitignore + level: 0 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 0 + checkState: 0 + isLocked: 0 + gitStatusEntry: + path: .gitignore + fullPath: C:\Users\emil2\No Time To Rest\.gitignore + projectPath: .gitignore + originalPath: + indexStatus: 4 + workTreeStatus: 0 + - path: Assets + label: Assets + level: 0 + isFolder: 1 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 0 + checkState: 0 + isLocked: 0 + gitStatusEntry: + path: + fullPath: + projectPath: + originalPath: + indexStatus: 0 + workTreeStatus: 0 + - path: Assets\.gitignore + label: .gitignore + level: 1 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 0 + checkState: 0 + isLocked: 0 + gitStatusEntry: + path: Assets\.gitignore + fullPath: C:\Users\emil2\No Time To Rest\Assets\.gitignore + projectPath: Assets\.gitignore + originalPath: + indexStatus: 4 + workTreeStatus: 0 + selectedNode: + path: .gitignore + label: .gitignore + level: 0 + isFolder: 0 + isContainer: 0 + isCollapsed: 0 + isHidden: 0 + isActive: 0 + treeIsCheckable: 0 + checkState: 0 + isLocked: 0 + gitStatusEntry: + path: .gitignore + fullPath: C:\Users\emil2\No Time To Rest\.gitignore + projectPath: .gitignore + originalPath: + indexStatus: 4 + workTreeStatus: 0 + detailsScroll: {x: 0, y: 0} + settingsView: + gitPathView: + gitPath: C:\Users\emil2\AppData\Local\GitForUnity\git\cmd\git.exe + gitLfsPath: C:\Users\emil2\AppData\Local\GitForUnity\git\mingw64\libexec\git-core\git-lfs.exe + errorMessage: + resetToBundled: 0 + resetToSystem: 0 + changingManually: 0 + installSettingsHidden: 0 + hasRemote: 0 + lastCurrentRemoteChangedEvent: + updatedTimeString: 0001-01-01T00:00:00.000+00:00 + cacheType: 1 + newRepositoryRemoteUrl: https://github.com/emil28092005/No-Time-To-Rest + repositoryRemoteName: origin + repositoryRemoteUrl: + scroll: {x: 0, y: 19} + userSettingsView: + gitName: Emil Shanaty + gitEmail: emil28092005@gmail.com + newGitName: Emil Shanaty + newGitEmail: emil28092005@gmail.com + needsSaving: 0 + lastCheckUserChangedEvent: + updatedTimeString: 0001-01-01T00:00:00.000+00:00 + cacheType: 8 + configSettingsHidden: 0 + repositorySettingsHidden: 0 + generalSettingsHidden: 0 + debugSettingsHidden: 0 + uiSceneSettingsHidden: 0 + uiProjectSettingsHidden: 0 + locksView: + currentRemoteHasUpdate: 1 + currentStatusEntriesHasUpdate: 0 + currentLocksHasUpdate: 0 + keychainHasUpdate: 1 + locksControl: + scroll: {x: 0, y: 0} + gitLockEntries: [] + assets: + keys: [] + values: [] + gitStatusDictionary: + keys: [] + values: [] + selectedEntry: + gitLock: + id: + path: + owner: + name: + email: + lockedAtString: + gitFileStatus: 0 + lockedAt: "1 \u044F\u043D\u0432. 0001, 03:00" + lastCurrentRemoteChangedEvent: + updatedTimeString: 2025-03-01T16:25:06.380+03:00 + cacheType: 1 + lastLocksChangedEvent: + updatedTimeString: 0001-01-01T00:00:00.000+00:00 + cacheType: 7 + lastStatusEntriesChangedEvent: + updatedTimeString: 0001-01-01T00:00:00.000+00:00 + cacheType: 6 + lockedFiles: [] + gitStatusEntries: + - path: Assets\InputSystem_Actions.inputactions + fullPath: C:\Users\emil2\No Time To Rest\Assets\InputSystem_Actions.inputactions + projectPath: Assets\InputSystem_Actions.inputactions + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\InputSystem_Actions.inputactions.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\InputSystem_Actions.inputactions.meta + projectPath: Assets\InputSystem_Actions.inputactions.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Readme.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Readme.asset + projectPath: Assets\Readme.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Readme.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Readme.asset.meta + projectPath: Assets\Readme.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Scenes.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Scenes.meta + projectPath: Assets\Scenes.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Scenes\SampleScene.unity + fullPath: C:\Users\emil2\No Time To Rest\Assets\Scenes\SampleScene.unity + projectPath: Assets\Scenes\SampleScene.unity + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Scenes\SampleScene.unity.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Scenes\SampleScene.unity.meta + projectPath: Assets\Scenes\SampleScene.unity.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings.meta + projectPath: Assets\Settings.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\DefaultVolumeProfile.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\DefaultVolumeProfile.asset + projectPath: Assets\Settings\DefaultVolumeProfile.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\DefaultVolumeProfile.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\DefaultVolumeProfile.asset.meta + projectPath: Assets\Settings\DefaultVolumeProfile.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_Renderer.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_Renderer.asset + projectPath: Assets\Settings\Mobile_Renderer.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_Renderer.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_Renderer.asset.meta + projectPath: Assets\Settings\Mobile_Renderer.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_RPAsset.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_RPAsset.asset + projectPath: Assets\Settings\Mobile_RPAsset.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\Mobile_RPAsset.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\Mobile_RPAsset.asset.meta + projectPath: Assets\Settings\Mobile_RPAsset.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_Renderer.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_Renderer.asset + projectPath: Assets\Settings\PC_Renderer.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_Renderer.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_Renderer.asset.meta + projectPath: Assets\Settings\PC_Renderer.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_RPAsset.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_RPAsset.asset + projectPath: Assets\Settings\PC_RPAsset.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\PC_RPAsset.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\PC_RPAsset.asset.meta + projectPath: Assets\Settings\PC_RPAsset.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\SampleSceneProfile.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\SampleSceneProfile.asset + projectPath: Assets\Settings\SampleSceneProfile.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\SampleSceneProfile.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\SampleSceneProfile.asset.meta + projectPath: Assets\Settings\SampleSceneProfile.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + projectPath: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\Settings\UniversalRenderPipelineGlobalSettings.asset.meta + projectPath: Assets\Settings\UniversalRenderPipelineGlobalSettings.asset.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo.meta + projectPath: Assets\TutorialInfo.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Icons.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Icons.meta + projectPath: Assets\TutorialInfo\Icons.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Icons\URP.png + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Icons\URP.png + projectPath: Assets\TutorialInfo\Icons\URP.png + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Icons\URP.png.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Icons\URP.png.meta + projectPath: Assets\TutorialInfo\Icons\URP.png.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Layout.wlt + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Layout.wlt + projectPath: Assets\TutorialInfo\Layout.wlt + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Layout.wlt.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Layout.wlt.meta + projectPath: Assets\TutorialInfo\Layout.wlt.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts.meta + projectPath: Assets\TutorialInfo\Scripts.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Editor.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Editor.meta + projectPath: Assets\TutorialInfo\Scripts\Editor.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + projectPath: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs.meta + projectPath: Assets\TutorialInfo\Scripts\Editor\ReadmeEditor.cs.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Readme.cs + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Readme.cs + projectPath: Assets\TutorialInfo\Scripts\Readme.cs + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Assets\TutorialInfo\Scripts\Readme.cs.meta + fullPath: C:\Users\emil2\No Time To Rest\Assets\TutorialInfo\Scripts\Readme.cs.meta + projectPath: Assets\TutorialInfo\Scripts\Readme.cs.meta + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Packages\manifest.json + fullPath: C:\Users\emil2\No Time To Rest\Packages\manifest.json + projectPath: Packages\manifest.json + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: Packages\packages-lock.json + fullPath: C:\Users\emil2\No Time To Rest\Packages\packages-lock.json + projectPath: Packages\packages-lock.json + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\AudioManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\AudioManager.asset + projectPath: ProjectSettings\AudioManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ClusterInputManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ClusterInputManager.asset + projectPath: ProjectSettings\ClusterInputManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\DynamicsManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\DynamicsManager.asset + projectPath: ProjectSettings\DynamicsManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\EditorBuildSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\EditorBuildSettings.asset + projectPath: ProjectSettings\EditorBuildSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\EditorSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\EditorSettings.asset + projectPath: ProjectSettings\EditorSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\GraphicsSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\GraphicsSettings.asset + projectPath: ProjectSettings\GraphicsSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\InputManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\InputManager.asset + projectPath: ProjectSettings\InputManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\MemorySettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\MemorySettings.asset + projectPath: ProjectSettings\MemorySettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\MultiplayerManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\MultiplayerManager.asset + projectPath: ProjectSettings\MultiplayerManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\NavMeshAreas.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\NavMeshAreas.asset + projectPath: ProjectSettings\NavMeshAreas.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\PackageManagerSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\PackageManagerSettings.asset + projectPath: ProjectSettings\PackageManagerSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\Physics2DSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\Physics2DSettings.asset + projectPath: ProjectSettings\Physics2DSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\PresetManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\PresetManager.asset + projectPath: ProjectSettings\PresetManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ProjectSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ProjectSettings.asset + projectPath: ProjectSettings\ProjectSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ProjectVersion.txt + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ProjectVersion.txt + projectPath: ProjectSettings\ProjectVersion.txt + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\QualitySettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\QualitySettings.asset + projectPath: ProjectSettings\QualitySettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\ShaderGraphSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\ShaderGraphSettings.asset + projectPath: ProjectSettings\ShaderGraphSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\TagManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\TagManager.asset + projectPath: ProjectSettings\TagManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\TimeManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\TimeManager.asset + projectPath: ProjectSettings\TimeManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\UnityConnectSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\UnityConnectSettings.asset + projectPath: ProjectSettings\UnityConnectSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\URPProjectSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\URPProjectSettings.asset + projectPath: ProjectSettings\URPProjectSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\VersionControlSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\VersionControlSettings.asset + projectPath: ProjectSettings\VersionControlSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\VFXManager.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\VFXManager.asset + projectPath: ProjectSettings\VFXManager.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: ProjectSettings\XRSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\ProjectSettings\XRSettings.asset + projectPath: ProjectSettings\XRSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: UserSettings\EditorUserSettings.asset + fullPath: C:\Users\emil2\No Time To Rest\UserSettings\EditorUserSettings.asset + projectPath: UserSettings\EditorUserSettings.asset + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: UserSettings\Layouts\default-6000.dwlt + fullPath: C:\Users\emil2\No Time To Rest\UserSettings\Layouts\default-6000.dwlt + projectPath: UserSettings\Layouts\default-6000.dwlt + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: UserSettings\Search.index + fullPath: C:\Users\emil2\No Time To Rest\UserSettings\Search.index + projectPath: UserSettings\Search.index + originalPath: + indexStatus: 1 + workTreeStatus: 1 + - path: UserSettings\Search.settings + fullPath: C:\Users\emil2\No Time To Rest\UserSettings\Search.settings + projectPath: UserSettings\Search.settings + originalPath: + indexStatus: 1 + workTreeStatus: 1 + currentUsername: + unlockFileMenuContent: + m_Text: Release Lock + m_Image: {fileID: 0} + m_Tooltip: + m_TextWithWhitespace: "Release Lock\u200B" + forceUnlockFileMenuContent: + m_Text: Release Lock (forced) + m_Image: {fileID: 0} + m_Tooltip: + m_TextWithWhitespace: "Release Lock (forced)\u200B" + hasRemote: 0 + currentRemoteName: + currentBranch: master + currentRemoteUrl: No remote configured + statusAhead: 0 + statusBehind: 0 + hasItemsToCommit: 1 + isTrackingRemoteBranch: 0 + currentBranchContent: + m_Text: master + m_Image: {fileID: 0} + m_Tooltip: Active branch + m_TextWithWhitespace: "master\u200B" + currentRemoteUrlContent: + m_Text: No remote configured + m_Image: {fileID: 0} + m_Tooltip: Add a remote in the Settings tab + m_TextWithWhitespace: "No remote configured\u200B" + lastCurrentBranchAndRemoteChangedEvent: + updatedTimeString: 2025-03-01T16:25:06.380+03:00 + cacheType: 1 + lastTrackingStatusChangedEvent: + updatedTimeString: 0001-01-01T00:00:00.000+00:00 + cacheType: 5 + lastStatusEntriesChangedEvent: + updatedTimeString: 0001-01-01T00:00:00.000+00:00 + cacheType: 6 + pullButtonContent: + m_Text: Pull + m_Image: {fileID: 0} + m_Tooltip: + m_TextWithWhitespace: "Pull\u200B" + pushButtonContent: + m_Text: Push + m_Image: {fileID: 0} + m_Tooltip: + m_TextWithWhitespace: "Push\u200B" + refreshButtonContent: + m_Text: Refresh + m_Image: {fileID: 0} + m_Tooltip: + m_TextWithWhitespace: "Refresh\u200B" + fetchButtonContent: + m_Text: Fetch + m_Image: {fileID: 0} + m_Tooltip: + m_TextWithWhitespace: "Fetch\u200B" + repositoryProgressValue: 0 + repositoryProgressMessage: + appManagerProgressValue: 1 + appManagerProgressMessage: + primaryConnectionUsername: +--- !u!114 &16 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Game + m_Image: {fileID: 4621777727084837110, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Game\u200B" + m_Pos: + serializedVersion: 2 + x: 608.2 + y: 24 + width: 573.99994 + height: 517.2 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_SerializedViewNames: [] + m_SerializedViewValues: [] + m_PlayModeViewName: GameView + m_ShowGizmos: 0 + m_TargetDisplay: 0 + m_ClearColor: {r: 0, g: 0, b: 0, a: 0} + m_TargetSize: {x: 573.99994, y: 496.2} + m_TextureFilterMode: 0 + m_TextureHideFlags: 61 + m_RenderIMGUI: 1 + m_EnterPlayModeBehavior: 0 + m_UseMipMap: 0 + m_VSyncEnabled: 0 + m_Gizmos: 0 + m_Stats: 0 + m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_ZoomArea: + m_HRangeLocked: 0 + m_VRangeLocked: 0 + hZoomLockedByDefault: 0 + vZoomLockedByDefault: 0 + m_HBaseRangeMin: -229.59998 + m_HBaseRangeMax: 229.59998 + m_VBaseRangeMin: -198.48001 + m_VBaseRangeMax: 198.48001 + m_HAllowExceedBaseRangeMin: 1 + m_HAllowExceedBaseRangeMax: 1 + m_VAllowExceedBaseRangeMin: 1 + m_VAllowExceedBaseRangeMax: 1 + m_ScaleWithWindow: 0 + m_HSlider: 0 + m_VSlider: 0 + m_IgnoreScrollWheelUntilClicked: 0 + m_EnableMouseInput: 1 + m_EnableSliderZoomHorizontal: 0 + m_EnableSliderZoomVertical: 0 + m_UniformScale: 1 + m_UpDirection: 1 + m_DrawArea: + serializedVersion: 2 + x: 0 + y: 21 + width: 573.99994 + height: 496.2 + m_Scale: {x: 1.25, y: 1.25} + m_Translation: {x: 286.99997, y: 248.1} + m_MarginLeft: 0 + m_MarginRight: 0 + m_MarginTop: 0 + m_MarginBottom: 0 + m_LastShownAreaInsideMargins: + serializedVersion: 2 + x: -229.59998 + y: -198.48001 + width: 459.19995 + height: 396.96002 + m_MinimalGUI: 1 + m_defaultScale: 1 + m_LastWindowPixelSize: {x: 717.49994, y: 646.5} + m_ClearInEditMode: 1 + m_NoCameraWarning: 1 + m_LowResolutionForAspectRatios: 01000000000000000000 + m_XRRenderMode: 0 + m_RenderTexture: {fileID: 0} + m_showToolbar: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Hierarchy + m_Image: {fileID: -3734745235275155857, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Hierarchy\u200B" + m_Pos: + serializedVersion: 2 + x: 0 + y: 24 + width: 167.8 + height: 517.2 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_SceneHierarchy: + m_TreeViewState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: + m_LastClickedID: 0 + m_ExpandedIDs: 8cf1ffff + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 0 + m_TrimLeadingAndTrailingWhitespace: 0 + m_ClientGUIView: {fileID: 8} + m_SearchString: + m_ExpandedScenes: [] + m_CurrenRootInstanceID: 0 + m_LockTracker: + m_IsLocked: 0 + m_CurrentSortingName: TransformSorting + m_WindowGUID: 4c969a2b90040154d917609493e03593 +--- !u!114 &18 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12013, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Scene + m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Scene\u200B" + m_Pos: + serializedVersion: 2 + x: 169.8 + y: 24 + width: 436.40002 + height: 517.2 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: + - dockPosition: 0 + containerId: overlay-toolbar__top + displayed: 1 + id: Tool Settings + index: 0 + contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":-24.0,"y":-24.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":3,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: -24, y: -24} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 3 + layout: 1 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 0 + containerId: overlay-toolbar__top + displayed: 1 + id: unity-grid-and-snap-toolbar + index: 1 + contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":-141.0,"y":149.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":1,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: -141, y: 149} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 1 + layout: 1 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-toolbar__top + displayed: 1 + id: unity-scene-view-toolbar + index: 0 + contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 24, y: 25} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 1 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-toolbar__top + displayed: 1 + id: unity-scene-view-camera-mode-toolbar + index: 1 + contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 24, y: 25} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 1 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-toolbar__top + displayed: 0 + id: unity-search-toolbar + index: 2 + contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":-24.0,"y":0.0},"m_FloatingSnapCorner":1,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: -24, y: 0} + snapCorner: 1 + layout: 1 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 0 + containerId: overlay-container--left + displayed: 1 + id: unity-transform-toolbar + index: 0 + contents: '{"m_Layout":2,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 24, y: 25} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 2 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 0 + containerId: overlay-container--left + displayed: 1 + id: unity-component-tools + index: 1 + contents: + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 197} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 2 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 0 + containerId: overlay-container--right + displayed: 1 + id: Orientation + index: 0 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":-112.0,"y":26.400001525878908},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":1,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: -112, y: 26.400002} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 1 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Light Settings + index: 0 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Camera + index: 1 + contents: + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Cloth Constraints + index: 1 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Cloth Collisions + index: 2 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Navmesh Display + index: 4 + contents: + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Agent Display + index: 5 + contents: + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Obstacle Display + index: 6 + contents: + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Occlusion Culling + index: 3 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Physics Debugger + index: 4 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Scene Visibility + index: 5 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Particles + index: 6 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 24, y: 25} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Tilemap + index: 11 + contents: + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Tilemap Palette Helper + index: 12 + contents: + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 0 + containerId: overlay-toolbar__top + displayed: 0 + id: Brush Attributes + index: 2 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 0 + containerId: overlay-toolbar__left + displayed: 0 + id: Terrain Tools + index: 0 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 0 + containerId: overlay-toolbar__left + displayed: 0 + id: Brush Masks + index: 1 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--left + displayed: 0 + id: Scene View/Lighting Visualization Colors + index: 0 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--left + displayed: 1 + id: Overlays/OverlayMenu + index: 1 + contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 24, y: 25} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 1 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Visual Effect Event Tester + index: 7 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Visual Effect Timeline Control + index: 8 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Visual Effect + index: 9 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Visual Effect Model + index: 10 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: APV Overlay + index: 7 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: SceneView/CamerasOverlay + index: 8 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 24, y: 0} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/PBR Validation Settings + index: 9 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/TrailRenderer + index: 10 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 1 + id: AINavigationOverlay + index: 11 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 24, y: 0} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + m_ContainerData: + - containerId: overlay-toolbar__top + scrollOffset: 0 + - containerId: overlay-toolbar__left + scrollOffset: 0 + - containerId: overlay-container--left + scrollOffset: 0 + - containerId: overlay-container--right + scrollOffset: 0 + - containerId: overlay-toolbar__right + scrollOffset: 0 + - containerId: overlay-toolbar__bottom + scrollOffset: 0 + - containerId: Floating + scrollOffset: 0 + m_OverlaysVisible: 1 + m_WindowGUID: cc27987af1a868c49b0894db9c0f5429 + m_Gizmos: 1 + m_OverrideSceneCullingMask: 6917529027641081856 + m_SceneIsLit: 1 + m_SceneLighting: 1 + m_2DMode: 0 + m_isRotationLocked: 0 + m_PlayAudio: 0 + m_AudioPlay: 0 + m_DebugDrawModesUseInteractiveLightBakingData: 0 + m_Position: + m_Target: {x: 0, y: 0, z: 0} + speed: 2 + m_Value: {x: 0, y: 0, z: 0} + m_RenderMode: 0 + m_CameraMode: + drawMode: 0 + name: Shaded + section: Shading Mode + m_ValidateTrueMetals: 0 + m_DoValidateTrueMetals: 0 + m_SceneViewState: + m_AlwaysRefresh: 0 + showFog: 1 + showSkybox: 1 + showFlares: 1 + showImageEffects: 1 + showParticleSystems: 1 + showVisualEffectGraphs: 1 + m_FxEnabled: 1 + m_Grid: + xGrid: + m_Fade: + m_Target: 0 + speed: 2 + m_Value: 0 + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} + m_Pivot: {x: 0, y: 0, z: 0} + m_Size: {x: 0, y: 0} + yGrid: + m_Fade: + m_Target: 1 + speed: 2 + m_Value: 1 + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} + m_Pivot: {x: 0, y: 0, z: 0} + m_Size: {x: 1, y: 1} + zGrid: + m_Fade: + m_Target: 0 + speed: 2 + m_Value: 0 + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} + m_Pivot: {x: 0, y: 0, z: 0} + m_Size: {x: 1, y: 1} + m_ShowGrid: 1 + m_GridAxis: 1 + m_gridOpacity: 0.5 + m_Rotation: + m_Target: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} + speed: 2 + m_Value: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} + m_Size: + m_Target: 10 + speed: 2 + m_Value: 10 + m_Ortho: + m_Target: 0 + speed: 2 + m_Value: 0 + m_CameraSettings: + m_Speed: 2 + m_SpeedNormalized: 1 + m_SpeedMin: 0.001 + m_SpeedMax: 2 + m_EasingEnabled: 1 + m_EasingDuration: 0.4 + m_AccelerationEnabled: 1 + m_FieldOfViewHorizontalOrVertical: 60 + m_NearClip: 0.03 + m_FarClip: 10000 + m_DynamicClip: 1 + m_OcclusionCulling: 0 + m_LastSceneViewRotation: {x: -0.0683191, y: -0.9244242, z: 0.19417857, w: -0.32149518} + m_LastSceneViewOrtho: 0 + m_Viewpoint: + m_SceneView: {fileID: 18} + m_CameraOverscanSettings: + m_Opacity: 50 + m_Scale: 1 + m_ReplacementShader: {fileID: 0} + m_ReplacementString: + m_SceneVisActive: 1 + m_LastLockedObject: {fileID: 0} + m_LastDebugDrawMode: 35 + m_ViewIsLockedToObject: 0 +--- !u!114 &19 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 924ffcbe75518854f97b48776d0f1939, type: 3} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 50, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Noisy (nothing loaded) + m_Image: {fileID: 2800000, guid: 7129268cf102b2f45809905bcb27ce8b, type: 3} + m_Tooltip: + m_TextWithWhitespace: "Noisy (nothing loaded)\u200B" + m_Pos: + serializedVersion: 2 + x: 479 + y: 79 + width: 1476 + height: 740 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_Selected: f02b4993ea9580c4ba6fead53a326664 + m_GraphObject: {fileID: 0} + m_LastSerializedFileContents: "{\n \"m_SGVersion\": 3,\n \"m_Type\": \"UnityEditor.ShaderGraph.GraphData\",\n + \"m_ObjectId\": \"d06cc244fe8d4715a2c2650a816af430\",\n \"m_Properties\": + [\n {\n \"m_Id\": \"f9b0520f4d3b4dda87851b06455c4717\"\n + },\n {\n \"m_Id\": \"07e688b9082b4a61868e2f033fc07d58\"\n + },\n {\n \"m_Id\": \"e6ec7c51fa7540eba9d0edaa5955fa59\"\n + }\n ],\n \"m_Keywords\": [],\n \"m_Dropdowns\": [],\n \"m_CategoryData\": + [\n {\n \"m_Id\": \"1921fbe7dfda4f54a47916329e173829\"\n + }\n ],\n \"m_Nodes\": [\n {\n \"m_Id\": \"3cd16c02cae349698ba52b568bc5f8fc\"\n + },\n {\n \"m_Id\": \"e0c42c30e9a34ababc92eb7895db5d0d\"\n + },\n {\n \"m_Id\": \"bd7c85fa12ac4b1896989a268b5b372f\"\n + },\n {\n \"m_Id\": \"4609483564344e73ac11f41ad61cc860\"\n + },\n {\n \"m_Id\": \"33138867f1da48019da59146bcee9a5a\"\n + },\n {\n \"m_Id\": \"492c03eb9d754c028bb55810237dba18\"\n + },\n {\n \"m_Id\": \"2719bbc71fa24d6fae7090872b4e98ea\"\n + },\n {\n \"m_Id\": \"87ee8bd120c64712a79d665cf96119bd\"\n + },\n {\n \"m_Id\": \"e0bb352c6dc14028bb64fc41dae0db5e\"\n + },\n {\n \"m_Id\": \"ccbfa272289341fca110b9771ddf4289\"\n + },\n {\n \"m_Id\": \"b4b078487d114fc8adff38182e73bf1d\"\n + },\n {\n \"m_Id\": \"37257fe562294495bfb39598612132c8\"\n + },\n {\n \"m_Id\": \"96cdd2512b4c48ceb058633dd97a01a2\"\n + },\n {\n \"m_Id\": \"8ad09c3a4c7342928f37a470febc00bf\"\n + },\n {\n \"m_Id\": \"708cb7d2e94f4971a750718514ff0e87\"\n + },\n {\n \"m_Id\": \"113174f9e952486f85a9cfa19c10e40f\"\n + },\n {\n \"m_Id\": \"79bb6c610b1d43289dfea3660f2b5a40\"\n + },\n {\n \"m_Id\": \"1753c70cccf247149286fa2655f0a727\"\n + },\n {\n \"m_Id\": \"bcce9375f359406d972d5f55e43d21d8\"\n + },\n {\n \"m_Id\": \"826daba2a880408e92e90fda30e6873f\"\n + }\n ],\n \"m_GroupDatas\": [],\n \"m_StickyNoteDatas\": [],\n \"m_Edges\": + [\n {\n \"m_OutputSlot\": {\n \"m_Node\": {\n + \"m_Id\": \"113174f9e952486f85a9cfa19c10e40f\"\n },\n + \"m_SlotId\": 1\n },\n \"m_InputSlot\": {\n + \"m_Node\": {\n \"m_Id\": \"708cb7d2e94f4971a750718514ff0e87\"\n + },\n \"m_SlotId\": 1\n }\n },\n {\n + \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\": + \"1753c70cccf247149286fa2655f0a727\"\n },\n \"m_SlotId\": + 2\n },\n \"m_InputSlot\": {\n \"m_Node\": + {\n \"m_Id\": \"4609483564344e73ac11f41ad61cc860\"\n + },\n \"m_SlotId\": 0\n }\n },\n {\n + \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\": + \"37257fe562294495bfb39598612132c8\"\n },\n \"m_SlotId\": + 2\n },\n \"m_InputSlot\": {\n \"m_Node\": + {\n \"m_Id\": \"113174f9e952486f85a9cfa19c10e40f\"\n + },\n \"m_SlotId\": 0\n }\n },\n {\n + \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\": + \"37257fe562294495bfb39598612132c8\"\n },\n \"m_SlotId\": + 2\n },\n \"m_InputSlot\": {\n \"m_Node\": + {\n \"m_Id\": \"bcce9375f359406d972d5f55e43d21d8\"\n + },\n \"m_SlotId\": 1\n }\n },\n {\n + \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\": + \"708cb7d2e94f4971a750718514ff0e87\"\n },\n \"m_SlotId\": + 2\n },\n \"m_InputSlot\": {\n \"m_Node\": + {\n \"m_Id\": \"1753c70cccf247149286fa2655f0a727\"\n + },\n \"m_SlotId\": 0\n }\n },\n {\n + \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\": + \"79bb6c610b1d43289dfea3660f2b5a40\"\n },\n \"m_SlotId\": + 2\n },\n \"m_InputSlot\": {\n \"m_Node\": + {\n \"m_Id\": \"1753c70cccf247149286fa2655f0a727\"\n + },\n \"m_SlotId\": 1\n }\n },\n {\n + \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\": + \"826daba2a880408e92e90fda30e6873f\"\n },\n \"m_SlotId\": + 0\n },\n \"m_InputSlot\": {\n \"m_Node\": + {\n \"m_Id\": \"37257fe562294495bfb39598612132c8\"\n + },\n \"m_SlotId\": 1\n }\n },\n {\n + \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\": + \"8ad09c3a4c7342928f37a470febc00bf\"\n },\n \"m_SlotId\": + 0\n },\n \"m_InputSlot\": {\n \"m_Node\": + {\n \"m_Id\": \"79bb6c610b1d43289dfea3660f2b5a40\"\n + },\n \"m_SlotId\": 0\n }\n },\n {\n + \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\": + \"96cdd2512b4c48ceb058633dd97a01a2\"\n },\n \"m_SlotId\": + 0\n },\n \"m_InputSlot\": {\n \"m_Node\": + {\n \"m_Id\": \"708cb7d2e94f4971a750718514ff0e87\"\n + },\n \"m_SlotId\": 0\n }\n },\n {\n + \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\": + \"bcce9375f359406d972d5f55e43d21d8\"\n },\n \"m_SlotId\": + 2\n },\n \"m_InputSlot\": {\n \"m_Node\": + {\n \"m_Id\": \"79bb6c610b1d43289dfea3660f2b5a40\"\n + },\n \"m_SlotId\": 1\n }\n }\n ],\n \"m_VertexContext\": + {\n \"m_Position\": {\n \"x\": 0.0,\n \"y\": 0.0\n + },\n \"m_Blocks\": [\n {\n \"m_Id\": \"3cd16c02cae349698ba52b568bc5f8fc\"\n + },\n {\n \"m_Id\": \"e0c42c30e9a34ababc92eb7895db5d0d\"\n + },\n {\n \"m_Id\": \"bd7c85fa12ac4b1896989a268b5b372f\"\n + }\n ]\n },\n \"m_FragmentContext\": {\n \"m_Position\": {\n + \"x\": 48.00001907348633,\n \"y\": 239.0\n },\n \"m_Blocks\": + [\n {\n \"m_Id\": \"4609483564344e73ac11f41ad61cc860\"\n + },\n {\n \"m_Id\": \"33138867f1da48019da59146bcee9a5a\"\n + },\n {\n \"m_Id\": \"492c03eb9d754c028bb55810237dba18\"\n + },\n {\n \"m_Id\": \"2719bbc71fa24d6fae7090872b4e98ea\"\n + },\n {\n \"m_Id\": \"87ee8bd120c64712a79d665cf96119bd\"\n + },\n {\n \"m_Id\": \"e0bb352c6dc14028bb64fc41dae0db5e\"\n + },\n {\n \"m_Id\": \"ccbfa272289341fca110b9771ddf4289\"\n + },\n {\n \"m_Id\": \"b4b078487d114fc8adff38182e73bf1d\"\n + }\n ]\n },\n \"m_PreviewData\": {\n \"serializedMesh\": {\n + \"m_SerializedMesh\": \"{\\\"mesh\\\":{\\\"instanceID\\\":0}}\",\n + \"m_Guid\": \"\"\n },\n \"preventRotation\": false\n },\n + \"m_Path\": \"Shader Graphs\",\n \"m_GraphPrecision\": 1,\n \"m_PreviewMode\": + 2,\n \"m_OutputNode\": {\n \"m_Id\": \"\"\n },\n \"m_SubDatas\": + [],\n \"m_ActiveTargets\": [\n {\n \"m_Id\": \"40e5b78ad44b41fe864ca313ddcf6164\"\n + }\n ]\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n + \"m_ObjectId\": \"03964ee49ed34f1083eda276b76c0372\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"Smoothness\",\n \"m_SlotType\": 0,\n \"m_Hidden\": + false,\n \"m_ShaderOutputName\": \"Smoothness\",\n \"m_StageCapability\": + 2,\n \"m_Value\": 0.5,\n \"m_DefaultValue\": 0.5,\n \"m_Labels\": []\n}\n\n{\n + \"m_SGVersion\": 3,\n \"m_Type\": \"UnityEditor.ShaderGraph.Internal.ColorShaderProperty\",\n + \"m_ObjectId\": \"07e688b9082b4a61868e2f033fc07d58\",\n \"m_Guid\": {\n + \"m_GuidSerialized\": \"2033f131-2e52-447a-a224-da8cd96bd99d\"\n },\n \"m_Name\": + \"Cracks\",\n \"m_DefaultRefNameVersion\": 1,\n \"m_RefNameGeneratedByDisplayName\": + \"Cracks\",\n \"m_DefaultReferenceName\": \"_Cracks\",\n \"m_OverrideReferenceName\": + \"\",\n \"m_GeneratePropertyBlock\": true,\n \"m_UseCustomSlotLabel\": + false,\n \"m_CustomSlotLabel\": \"\",\n \"m_DismissedVersion\": 0,\n + \"m_Precision\": 0,\n \"overrideHLSLDeclaration\": false,\n \"hlslDeclarationOverride\": + 0,\n \"m_Hidden\": false,\n \"m_Value\": {\n \"r\": 0.24528300762176515,\n + \"g\": 0.1966892033815384,\n \"b\": 0.17239230871200562,\n \"a\": + 0.0\n },\n \"isMainColor\": false,\n \"m_ColorMode\": 0\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n + \"m_ObjectId\": \"0b6c99ebe1204b609628c9f5ebcf6c5f\",\n \"m_Id\": 2,\n + \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\": + {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n + \"m_ObjectId\": \"0d8e292ac7ec4e60ac434a9bb0837d9f\",\n \"m_Id\": 2,\n + \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\": + {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData\",\n + \"m_ObjectId\": \"0e337d4e219d45e2b8b938cb0ba90675\",\n \"m_Distortion\": + false,\n \"m_DistortionMode\": 0,\n \"m_DistortionDepthTest\": true,\n + \"m_AddPrecomputedVelocity\": false,\n \"m_TransparentWritesMotionVec\": false,\n + \"m_DepthOffset\": false,\n \"m_ConservativeDepthOffset\": false,\n \"m_TransparencyFog\": + true,\n \"m_AlphaTestShadow\": false,\n \"m_BackThenFrontRendering\": false,\n + \"m_TransparentDepthPrepass\": false,\n \"m_TransparentDepthPostpass\": false,\n + \"m_TransparentPerPixelSorting\": false,\n \"m_SupportLodCrossFade\": false\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n + \"m_ObjectId\": \"112d71b9cfde4fcdbdf534b5411ae041\",\n \"m_Id\": 1,\n + \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n \"w\": + 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n + \"z\": 0.0,\n \"w\": 0.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n + \"m_Type\": \"UnityEditor.ShaderGraph.OneMinusNode\",\n \"m_ObjectId\": \"113174f9e952486f85a9cfa19c10e40f\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"One Minus\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": -1216.0,\n \"y\": + 77.0,\n \"width\": 208.0,\n \"height\": 278.0\n + }\n },\n \"m_Slots\": [\n {\n \"m_Id\": \"515cc42dfaf441fba23e9fd79f8691af\"\n + },\n {\n \"m_Id\": \"112d71b9cfde4fcdbdf534b5411ae041\"\n + }\n ],\n \"synonyms\": [\n \"complement\",\n \"invert\",\n + \"opposite\"\n ],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": true,\n + \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.AddNode\",\n \"m_ObjectId\": + \"1753c70cccf247149286fa2655f0a727\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"Add\",\n \"m_DrawState\": {\n \"m_Expanded\": + true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n + \"x\": -306.0000305175781,\n \"y\": 412.0,\n \"width\": + 208.0,\n \"height\": 302.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"988077e609d14416903df8230a4fff80\"\n },\n + {\n \"m_Id\": \"d7a7f5f65869481fb13cbdfbe0c1a6d8\"\n },\n + {\n \"m_Id\": \"5014f3adb81f4055aaffeb9f05023e84\"\n }\n + ],\n \"synonyms\": [\n \"addition\",\n \"sum\",\n \"plus\"\n + ],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": true,\n \"m_DismissedVersion\": + 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": {\n \"m_SerializableColors\": + []\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.CategoryData\",\n + \"m_ObjectId\": \"1921fbe7dfda4f54a47916329e173829\",\n \"m_Name\": \"\",\n + \"m_ChildObjectList\": [\n {\n \"m_Id\": \"f9b0520f4d3b4dda87851b06455c4717\"\n + },\n {\n \"m_Id\": \"07e688b9082b4a61868e2f033fc07d58\"\n + },\n {\n \"m_Id\": \"e6ec7c51fa7540eba9d0edaa5955fa59\"\n + }\n ]\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitSubTarget\",\n + \"m_ObjectId\": \"1dff4988b8b745debe337496903ecd25\"\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": + \"2719bbc71fa24d6fae7090872b4e98ea\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"SurfaceDescription.Metallic\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\": + 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"70ec010d93b0464090820bbea4f43f35\"\n }\n + ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.Metallic\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.ColorRGBMaterialSlot\",\n \"m_ObjectId\": \"2796fff592764352be3a1eb496af7c85\",\n + \"m_Id\": 0,\n \"m_DisplayName\": \"Emission\",\n \"m_SlotType\": 0,\n + \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Emission\",\n \"m_StageCapability\": + 2,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n + \"z\": 0.0\n },\n \"m_Labels\": [],\n \"m_ColorMode\": 1,\n \"m_DefaultColor\": + {\n \"r\": 0.0,\n \"g\": 0.0,\n \"b\": 0.0,\n \"a\": + 1.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.TangentMaterialSlot\",\n + \"m_ObjectId\": \"299331fd150e41ebb135cd1c37aa2434\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"Tangent\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Tangent\",\n \"m_StageCapability\": 1,\n \"m_Value\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData\",\n + \"m_ObjectId\": \"2db72283e9834183a4edf88da8b1f057\",\n \"m_MaterialNeedsUpdateHash\": + 0,\n \"m_SurfaceType\": 0,\n \"m_RenderingPass\": 1,\n \"m_BlendMode\": + 0,\n \"m_ZTest\": 4,\n \"m_ZWrite\": false,\n \"m_TransparentCullMode\": + 2,\n \"m_OpaqueCullMode\": 2,\n \"m_SortPriority\": 0,\n \"m_AlphaTest\": + false,\n \"m_ExcludeFromTUAndAA\": false,\n \"m_TransparentDepthPrepass\": + false,\n \"m_TransparentDepthPostpass\": false,\n \"m_SupportLodCrossFade\": + false,\n \"m_DoubleSidedMode\": 0,\n \"m_DOTSInstancing\": false,\n + \"m_CustomVelocity\": false,\n \"m_Tessellation\": false,\n \"m_TessellationMode\": + 0,\n \"m_TessellationFactorMinDistance\": 20.0,\n \"m_TessellationFactorMaxDistance\": + 50.0,\n \"m_TessellationFactorTriangleSize\": 100.0,\n \"m_TessellationShapeFactor\": + 0.75,\n \"m_TessellationBackFaceCullEpsilon\": -0.25,\n \"m_TessellationMaxDisplacement\": + 0.009999999776482582,\n \"m_DebugSymbols\": false,\n \"m_Version\": 2,\n + \"inspectorFoldoutMask\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"33138867f1da48019da59146bcee9a5a\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.NormalTS\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"7bab9fca1bbf45bcbd33fc26a691d705\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.NormalTS\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.ColorRGBMaterialSlot\",\n \"m_ObjectId\": \"33d6c678701e4d9b884f0703365fe696\",\n + \"m_Id\": 0,\n \"m_DisplayName\": \"Base Color\",\n \"m_SlotType\": 0,\n + \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"BaseColor\",\n \"m_StageCapability\": + 2,\n \"m_Value\": {\n \"x\": 0.5,\n \"y\": 0.5,\n \"z\": + 0.5\n },\n \"m_DefaultValue\": {\n \"x\": 0.5,\n \"y\": 0.5,\n + \"z\": 0.5\n },\n \"m_Labels\": [],\n \"m_ColorMode\": 0,\n \"m_DefaultColor\": + {\n \"r\": 0.5,\n \"g\": 0.5,\n \"b\": 0.5,\n \"a\": + 1.0\n }\n}\n\n{\n \"m_SGVersion\": 1,\n \"m_Type\": \"UnityEditor.ShaderGraph.NoiseNode\",\n + \"m_ObjectId\": \"37257fe562294495bfb39598612132c8\",\n \"m_Group\": {\n + \"m_Id\": \"\"\n },\n \"m_Name\": \"Simple Noise\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": -1113.0,\n \"y\": 482.0,\n \"width\": + 208.0,\n \"height\": 337.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"9904ae68497a49ceb007598dcfcf80c5\"\n },\n + {\n \"m_Id\": \"d46b87bde2e643b4a1251574538df24e\"\n },\n + {\n \"m_Id\": \"918b60308e014953b3b13d015f4309ef\"\n }\n + ],\n \"synonyms\": [\n \"value noise\"\n ],\n \"m_Precision\": + 0,\n \"m_PreviewExpanded\": true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": + 0,\n \"m_CustomColors\": {\n \"m_SerializableColors\": []\n },\n + \"m_HashType\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n + \"m_ObjectId\": \"3cd16c02cae349698ba52b568bc5f8fc\",\n \"m_Group\": {\n + \"m_Id\": \"\"\n },\n \"m_Name\": \"VertexDescription.Position\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"cb525417b8ba470bb0a1f1b3fac84a03\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"VertexDescription.Position\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.Rendering.HighDefinition.ShaderGraph.HDTarget\",\n \"m_ObjectId\": + \"40e5b78ad44b41fe864ca313ddcf6164\",\n \"m_ActiveSubTarget\": {\n + \"m_Id\": \"1dff4988b8b745debe337496903ecd25\"\n },\n \"m_Datas\": [\n + {\n \"m_Id\": \"2db72283e9834183a4edf88da8b1f057\"\n },\n + {\n \"m_Id\": \"572628737ac0474d9f68ed994a5e2ba5\"\n },\n + {\n \"m_Id\": \"0e337d4e219d45e2b8b938cb0ba90675\"\n },\n + {\n \"m_Id\": \"c1938781513c45d5b1be1a21bf65a4bd\"\n }\n + ],\n \"m_CustomEditorGUI\": \"\",\n \"m_SupportVFX\": false,\n \"m_SupportLineRendering\": + false\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n + \"m_ObjectId\": \"43fef9c0449c4ac1b9a7c132bbb208df\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"A\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"A\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\": + {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": + \"4609483564344e73ac11f41ad61cc860\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"SurfaceDescription.BaseColor\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\": + 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"33d6c678701e4d9b884f0703365fe696\"\n }\n + ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.BaseColor\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"492c03eb9d754c028bb55810237dba18\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.BentNormal\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"62e259c651b0482da77e930b79896f87\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.BentNormal\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n \"m_ObjectId\": \"496aedc74ba0496a9b2c5a8fab0f401b\",\n + \"m_Id\": 1,\n \"m_DisplayName\": \"B\",\n \"m_SlotType\": 0,\n \"m_Hidden\": + false,\n \"m_ShaderOutputName\": \"B\",\n \"m_StageCapability\": 3,\n + \"m_Value\": {\n \"e00\": 2.0,\n \"e01\": 2.0,\n \"e02\": + 2.0,\n \"e03\": 2.0,\n \"e10\": 2.0,\n \"e11\": 2.0,\n + \"e12\": 2.0,\n \"e13\": 2.0,\n \"e20\": 2.0,\n \"e21\": + 2.0,\n \"e22\": 2.0,\n \"e23\": 2.0,\n \"e30\": 2.0,\n + \"e31\": 2.0,\n \"e32\": 2.0,\n \"e33\": 2.0\n },\n \"m_DefaultValue\": + {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n + \"m_ObjectId\": \"5014f3adb81f4055aaffeb9f05023e84\",\n \"m_Id\": 2,\n + \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n \"w\": + 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n + \"z\": 0.0,\n \"w\": 0.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n + \"m_Type\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n \"m_ObjectId\": + \"515cc42dfaf441fba23e9fd79f8691af\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"In\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": + \"In\",\n \"m_StageCapability\": 3,\n \"m_Value\": {\n \"x\": 1.0,\n + \"y\": 1.0,\n \"z\": 1.0,\n \"w\": 1.0\n },\n \"m_DefaultValue\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n \"w\": + 0.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitData\",\n + \"m_ObjectId\": \"572628737ac0474d9f68ed994a5e2ba5\",\n \"m_RayTracing\": + false,\n \"m_MaterialType\": 0,\n \"m_MaterialTypeMask\": 2,\n \"m_RefractionModel\": + 0,\n \"m_SSSTransmission\": true,\n \"m_EnergyConservingSpecular\": true,\n + \"m_ClearCoat\": false\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n + \"m_ObjectId\": \"5df68155e6d5467d9bd17ba8a1ccc426\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"A\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"A\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"e00\": 8.770000457763672,\n \"e01\": 0.0,\n \"e02\": + 0.0,\n \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n + \"e12\": 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": + 0.0,\n \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n + \"e31\": 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\": + {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n \"m_ObjectId\": + \"62e259c651b0482da77e930b79896f87\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"Bent Normal\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": + \"BentNormal\",\n \"m_StageCapability\": 2,\n \"m_Value\": {\n \"x\": + 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n \"m_DefaultValue\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_Labels\": [],\n \"m_Space\": 3\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.MultiplyNode\",\n \"m_ObjectId\": \"708cb7d2e94f4971a750718514ff0e87\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"Multiply\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": -432.99993896484377,\n + \"y\": 0.9999963641166687,\n \"width\": 207.99998474121095,\n + \"height\": 302.0\n }\n },\n \"m_Slots\": [\n {\n + \"m_Id\": \"ee51e4973662422f8c3719cf1fde838e\"\n },\n {\n + \"m_Id\": \"7b15c4cd1c15415b850aead7bfeaad87\"\n },\n {\n + \"m_Id\": \"0d8e292ac7ec4e60ac434a9bb0837d9f\"\n }\n ],\n \"synonyms\": + [\n \"multiplication\",\n \"times\",\n \"x\"\n ],\n + \"m_Precision\": 0,\n \"m_PreviewExpanded\": true,\n \"m_DismissedVersion\": + 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": {\n \"m_SerializableColors\": + []\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n + \"m_ObjectId\": \"70ec010d93b0464090820bbea4f43f35\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"Metallic\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Metallic\",\n \"m_StageCapability\": 2,\n \"m_Value\": + 0.0,\n \"m_DefaultValue\": 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.MultiplyNode\",\n \"m_ObjectId\": + \"79bb6c610b1d43289dfea3660f2b5a40\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"Multiply\",\n \"m_DrawState\": {\n + \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": -535.9999389648438,\n \"y\": 457.9999694824219,\n + \"width\": 207.99993896484376,\n \"height\": 301.9999694824219\n + }\n },\n \"m_Slots\": [\n {\n \"m_Id\": \"43fef9c0449c4ac1b9a7c132bbb208df\"\n + },\n {\n \"m_Id\": \"ca0aaead2716416092644e9a08f2b5d9\"\n + },\n {\n \"m_Id\": \"0b6c99ebe1204b609628c9f5ebcf6c5f\"\n + }\n ],\n \"synonyms\": [\n \"multiplication\",\n \"times\",\n + \"x\"\n ],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": true,\n + \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n + \"m_ObjectId\": \"7b15c4cd1c15415b850aead7bfeaad87\",\n \"m_Id\": 1,\n + \"m_DisplayName\": \"B\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"B\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"e00\": 2.0,\n \"e01\": 2.0,\n \"e02\": 2.0,\n + \"e03\": 2.0,\n \"e10\": 2.0,\n \"e11\": 2.0,\n \"e12\": + 2.0,\n \"e13\": 2.0,\n \"e20\": 2.0,\n \"e21\": 2.0,\n + \"e22\": 2.0,\n \"e23\": 2.0,\n \"e30\": 2.0,\n \"e31\": + 2.0,\n \"e32\": 2.0,\n \"e33\": 2.0\n },\n \"m_DefaultValue\": + {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n \"m_ObjectId\": + \"7bab9fca1bbf45bcbd33fc26a691d705\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"Normal (Tangent Space)\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"NormalTS\",\n \"m_StageCapability\": 2,\n \"m_Value\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 3\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.PropertyNode\",\n \"m_ObjectId\": + \"826daba2a880408e92e90fda30e6873f\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"Property\",\n \"m_DrawState\": {\n + \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": -1346.029052734375,\n \"y\": 663.3208618164063,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"c6a5c63a5af0446ca2ce5002b84e3f53\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_Property\": {\n + \"m_Id\": \"e6ec7c51fa7540eba9d0edaa5955fa59\"\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": + \"87ee8bd120c64712a79d665cf96119bd\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"SurfaceDescription.Emission\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\": + 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"2796fff592764352be3a1eb496af7c85\"\n }\n + ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.Emission\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.PropertyNode\",\n \"m_ObjectId\": \"8ad09c3a4c7342928f37a470febc00bf\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"Property\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": -628.9999389648438,\n + \"y\": 220.99998474121095,\n \"width\": 114.0,\n \"height\": + 34.0\n }\n },\n \"m_Slots\": [\n {\n \"m_Id\": + \"9f7e55c2a4d746b183f408c7aafe306b\"\n }\n ],\n \"synonyms\": [],\n + \"m_Precision\": 0,\n \"m_PreviewExpanded\": true,\n \"m_DismissedVersion\": + 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": {\n \"m_SerializableColors\": + []\n },\n \"m_Property\": {\n \"m_Id\": \"07e688b9082b4a61868e2f033fc07d58\"\n + }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n + \"m_ObjectId\": \"918b60308e014953b3b13d015f4309ef\",\n \"m_Id\": 2,\n + \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\": + 0.0,\n \"m_DefaultValue\": 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.PropertyNode\",\n \"m_ObjectId\": + \"96cdd2512b4c48ceb058633dd97a01a2\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"Property\",\n \"m_DrawState\": {\n + \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": -689.0,\n \"y\": 43.0,\n \"width\": + 103.0,\n \"height\": 34.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"add65c816b2e4af69c896bb6188d9f86\"\n }\n + ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_Property\": {\n + \"m_Id\": \"f9b0520f4d3b4dda87851b06455c4717\"\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n + \"m_ObjectId\": \"97d87008121d4d69930c5d2b17d77af5\",\n \"m_Id\": 2,\n + \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\": + {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n + \"m_ObjectId\": \"988077e609d14416903df8230a4fff80\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"A\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"A\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n \"w\": + 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n + \"z\": 0.0,\n \"w\": 0.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n + \"m_Type\": \"UnityEditor.ShaderGraph.UVMaterialSlot\",\n \"m_ObjectId\": + \"9904ae68497a49ceb007598dcfcf80c5\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"UV\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": + \"UV\",\n \"m_StageCapability\": 3,\n \"m_Value\": {\n \"x\": 0.0,\n + \"y\": 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": + 0.0\n },\n \"m_Labels\": [],\n \"m_Channel\": 0\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n \"m_ObjectId\": + \"9ee55f03abcb4444800c65c509fbbdd4\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"Normal\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": + \"Normal\",\n \"m_StageCapability\": 1,\n \"m_Value\": {\n \"x\": + 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n \"m_DefaultValue\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.Vector4MaterialSlot\",\n \"m_ObjectId\": \"9f7e55c2a4d746b183f408c7aafe306b\",\n + \"m_Id\": 0,\n \"m_DisplayName\": \"Cracks\",\n \"m_SlotType\": 1,\n + \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": + 3,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0,\n \"w\": 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n + \"y\": 0.0,\n \"z\": 0.0,\n \"w\": 0.0\n },\n \"m_Labels\": + []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector4MaterialSlot\",\n + \"m_ObjectId\": \"add65c816b2e4af69c896bb6188d9f86\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"Main\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n \"w\": + 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n + \"z\": 0.0,\n \"w\": 0.0\n },\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": + \"b473669403a64f93a2a03812b486e3e9\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"Alpha\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": + \"Alpha\",\n \"m_StageCapability\": 2,\n \"m_Value\": 1.0,\n \"m_DefaultValue\": + 1.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"b4b078487d114fc8adff38182e73bf1d\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Alpha\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"b473669403a64f93a2a03812b486e3e9\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.Alpha\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.MultiplyNode\",\n \"m_ObjectId\": \"bcce9375f359406d972d5f55e43d21d8\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"Multiply\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": -813.9999389648438,\n + \"y\": 434.9999694824219,\n \"width\": 208.0,\n \"height\": + 301.9999694824219\n }\n },\n \"m_Slots\": [\n {\n + \"m_Id\": \"5df68155e6d5467d9bd17ba8a1ccc426\"\n },\n {\n + \"m_Id\": \"496aedc74ba0496a9b2c5a8fab0f401b\"\n },\n {\n + \"m_Id\": \"97d87008121d4d69930c5d2b17d77af5\"\n }\n ],\n \"synonyms\": + [\n \"multiplication\",\n \"times\",\n \"x\"\n ],\n + \"m_Precision\": 0,\n \"m_PreviewExpanded\": true,\n \"m_DismissedVersion\": + 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": {\n \"m_SerializableColors\": + []\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n + \"m_ObjectId\": \"bd7c85fa12ac4b1896989a268b5b372f\",\n \"m_Group\": {\n + \"m_Id\": \"\"\n },\n \"m_Name\": \"VertexDescription.Tangent\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\": + 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"299331fd150e41ebb135cd1c37aa2434\"\n }\n + ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"VertexDescription.Tangent\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.Rendering.HighDefinition.ShaderGraph.LightingData\",\n \"m_ObjectId\": + \"c1938781513c45d5b1be1a21bf65a4bd\",\n \"m_NormalDropOffSpace\": 0,\n + \"m_BlendPreserveSpecular\": true,\n \"m_ReceiveDecals\": true,\n \"m_ReceiveSSR\": + true,\n \"m_ReceiveSSRTransparent\": false,\n \"m_SpecularAA\": false,\n + \"m_SpecularOcclusionMode\": 1,\n \"m_OverrideBakedGI\": false\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n + \"m_ObjectId\": \"c6a5c63a5af0446ca2ce5002b84e3f53\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"NoiseSize\",\n \"m_SlotType\": 1,\n \"m_Hidden\": + false,\n \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n + \"m_Value\": 0.0,\n \"m_DefaultValue\": 0.0,\n \"m_Labels\": []\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n + \"m_ObjectId\": \"ca0aaead2716416092644e9a08f2b5d9\",\n \"m_Id\": 1,\n + \"m_DisplayName\": \"B\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"B\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"e00\": 2.0,\n \"e01\": 2.0,\n \"e02\": 2.0,\n + \"e03\": 2.0,\n \"e10\": 2.0,\n \"e11\": 2.0,\n \"e12\": + 2.0,\n \"e13\": 2.0,\n \"e20\": 2.0,\n \"e21\": 2.0,\n + \"e22\": 2.0,\n \"e23\": 2.0,\n \"e30\": 2.0,\n \"e31\": + 2.0,\n \"e32\": 2.0,\n \"e33\": 2.0\n },\n \"m_DefaultValue\": + {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.PositionMaterialSlot\",\n \"m_ObjectId\": + \"cb525417b8ba470bb0a1f1b3fac84a03\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"Position\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": + \"Position\",\n \"m_StageCapability\": 1,\n \"m_Value\": {\n \"x\": + 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n \"m_DefaultValue\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"ccbfa272289341fca110b9771ddf4289\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Occlusion\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"ec7857984bed4b99bf10d3ae01bb0456\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.Occlusion\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": \"d46b87bde2e643b4a1251574538df24e\",\n + \"m_Id\": 1,\n \"m_DisplayName\": \"Scale\",\n \"m_SlotType\": 0,\n + \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Scale\",\n \"m_StageCapability\": + 3,\n \"m_Value\": 500.0,\n \"m_DefaultValue\": 500.0,\n \"m_Labels\": + []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n + \"m_ObjectId\": \"d7a7f5f65869481fb13cbdfbe0c1a6d8\",\n \"m_Id\": 1,\n + \"m_DisplayName\": \"B\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"B\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n \"w\": + 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n + \"z\": 0.0,\n \"w\": 0.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n + \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"e0bb352c6dc14028bb64fc41dae0db5e\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Smoothness\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"03964ee49ed34f1083eda276b76c0372\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.Smoothness\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"e0c42c30e9a34ababc92eb7895db5d0d\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"VertexDescription.Normal\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"9ee55f03abcb4444800c65c509fbbdd4\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"VertexDescription.Normal\"\n}\n\n{\n \"m_SGVersion\": 1,\n \"m_Type\": + \"UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty\",\n \"m_ObjectId\": + \"e6ec7c51fa7540eba9d0edaa5955fa59\",\n \"m_Guid\": {\n \"m_GuidSerialized\": + \"e591dece-093d-4dd2-a79b-60f769320c2f\"\n },\n \"m_Name\": \"NoiseSize\",\n + \"m_DefaultRefNameVersion\": 1,\n \"m_RefNameGeneratedByDisplayName\": \"NoiseSize\",\n + \"m_DefaultReferenceName\": \"_NoiseSize\",\n \"m_OverrideReferenceName\": + \"\",\n \"m_GeneratePropertyBlock\": true,\n \"m_UseCustomSlotLabel\": + false,\n \"m_CustomSlotLabel\": \"\",\n \"m_DismissedVersion\": 0,\n + \"m_Precision\": 0,\n \"overrideHLSLDeclaration\": false,\n \"hlslDeclarationOverride\": + 0,\n \"m_Hidden\": false,\n \"m_Value\": 200.0,\n \"m_FloatType\": 0,\n + \"m_RangeValues\": {\n \"x\": 0.0,\n \"y\": 1.0\n }\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n + \"m_ObjectId\": \"ec7857984bed4b99bf10d3ae01bb0456\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"Ambient Occlusion\",\n \"m_SlotType\": 0,\n \"m_Hidden\": + false,\n \"m_ShaderOutputName\": \"Occlusion\",\n \"m_StageCapability\": + 2,\n \"m_Value\": 1.0,\n \"m_DefaultValue\": 1.0,\n \"m_Labels\": []\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n + \"m_ObjectId\": \"ee51e4973662422f8c3719cf1fde838e\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"A\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"A\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\": + {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 3,\n \"m_Type\": \"UnityEditor.ShaderGraph.Internal.ColorShaderProperty\",\n + \"m_ObjectId\": \"f9b0520f4d3b4dda87851b06455c4717\",\n \"m_Guid\": {\n + \"m_GuidSerialized\": \"461d115c-bc89-426c-b671-60396706b0b3\"\n },\n \"m_Name\": + \"Main\",\n \"m_DefaultRefNameVersion\": 1,\n \"m_RefNameGeneratedByDisplayName\": + \"Main\",\n \"m_DefaultReferenceName\": \"_Main\",\n \"m_OverrideReferenceName\": + \"\",\n \"m_GeneratePropertyBlock\": true,\n \"m_UseCustomSlotLabel\": + false,\n \"m_CustomSlotLabel\": \"\",\n \"m_DismissedVersion\": 0,\n + \"m_Precision\": 0,\n \"overrideHLSLDeclaration\": false,\n \"hlslDeclarationOverride\": + 0,\n \"m_Hidden\": false,\n \"m_Value\": {\n \"r\": 0.7358490228652954,\n + \"g\": 0.5252805948257446,\n \"b\": 0.17702026665210725,\n \"a\": + 0.0\n },\n \"isMainColor\": false,\n \"m_ColorMode\": 0\n}\n\n" + m_AssetMaybeChangedOnDisk: 1 + m_AssetMaybeDeleted: 0 +--- !u!114 &20 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 12914, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 50, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Animator + m_Image: {fileID: 1711060831702674872, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Animator\u200B" + m_Pos: + serializedVersion: 2 + x: 0 + y: 911 + width: 1328 + height: 435 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_ViewTransforms: + m_KeySerializationHelper: + - {fileID: -6552422000814891784, guid: adae653d83bc86a4f9ce181a1f00126d, type: 2} + m_ValueSerializationHelper: + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_PreviewAnimator: {fileID: 0} + m_AnimatorController: {fileID: 9100000, guid: adae653d83bc86a4f9ce181a1f00126d, type: 2} + m_BreadCrumbs: + - m_Target: {fileID: -6552422000814891784, guid: adae653d83bc86a4f9ce181a1f00126d, type: 2} + m_ScrollPosition: {x: 0, y: 0} + stateMachineGraph: {fileID: 0} + stateMachineGraphGUI: {fileID: 0} + blendTreeGraph: {fileID: 0} + blendTreeGraphGUI: {fileID: 0} + m_AutoLiveLink: 1 + m_MiniTool: 0 + m_LockTracker: + m_IsLocked: 0 + m_CurrentEditor: 1 + m_LayerEditor: + m_SelectedLayerIndex: 0 +--- !u!114 &21 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 924ffcbe75518854f97b48776d0f1939, type: 3} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 50, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Explosion + m_Image: {fileID: 2800000, guid: 7129268cf102b2f45809905bcb27ce8b, type: 3} + m_Tooltip: + m_TextWithWhitespace: "Explosion\u200B" + m_Pos: + serializedVersion: 2 + x: 1237 + y: 99 + width: 801 + height: 922 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_Selected: c253e98ed180fda42a58d631dcff9162 + m_GraphObject: {fileID: 0} + m_LastSerializedFileContents: "{\n \"m_SGVersion\": 3,\n \"m_Type\": \"UnityEditor.ShaderGraph.GraphData\",\n + \"m_ObjectId\": \"31c7e057f2254fcf93fba5ea8fae8acc\",\n \"m_Properties\": + [],\n \"m_Keywords\": [],\n \"m_Dropdowns\": [],\n \"m_CategoryData\": + [\n {\n \"m_Id\": \"0dd0a3bf95824eb9ba1a7c94104bc8d2\"\n + }\n ],\n \"m_Nodes\": [\n {\n \"m_Id\": \"9fb881c2a1944d708c5af330f9f2eddf\"\n + },\n {\n \"m_Id\": \"94d90382411041b29c3a7a7603ab7d59\"\n + },\n {\n \"m_Id\": \"4509ae2cc2ff4d63b4bfd6672d7aa049\"\n + },\n {\n \"m_Id\": \"5f169776c0194426bbdd44fe1317b8de\"\n + },\n {\n \"m_Id\": \"adcca0e8763b4f858b9201feffff6701\"\n + },\n {\n \"m_Id\": \"a0e86e49a1744cbc8bad3e7ac2782a98\"\n + },\n {\n \"m_Id\": \"2f5efb5315324eb59f866e3bc7a58fd1\"\n + },\n {\n \"m_Id\": \"a47e70271af04db6a17668010059af8b\"\n + }\n ],\n \"m_GroupDatas\": [],\n \"m_StickyNoteDatas\": [],\n \"m_Edges\": + [\n {\n \"m_OutputSlot\": {\n \"m_Node\": {\n + \"m_Id\": \"2f5efb5315324eb59f866e3bc7a58fd1\"\n },\n + \"m_SlotId\": 3\n },\n \"m_InputSlot\": {\n + \"m_Node\": {\n \"m_Id\": \"a0e86e49a1744cbc8bad3e7ac2782a98\"\n + },\n \"m_SlotId\": 0\n }\n }\n ],\n \"m_VertexContext\": + {\n \"m_Position\": {\n \"x\": 0.0,\n \"y\": 0.0\n + },\n \"m_Blocks\": [\n {\n \"m_Id\": \"9fb881c2a1944d708c5af330f9f2eddf\"\n + },\n {\n \"m_Id\": \"94d90382411041b29c3a7a7603ab7d59\"\n + },\n {\n \"m_Id\": \"4509ae2cc2ff4d63b4bfd6672d7aa049\"\n + }\n ]\n },\n \"m_FragmentContext\": {\n \"m_Position\": {\n + \"x\": -0.0000010728836059570313,\n \"y\": 207.99998474121095\n + },\n \"m_Blocks\": [\n {\n \"m_Id\": \"5f169776c0194426bbdd44fe1317b8de\"\n + },\n {\n \"m_Id\": \"adcca0e8763b4f858b9201feffff6701\"\n + },\n {\n \"m_Id\": \"a0e86e49a1744cbc8bad3e7ac2782a98\"\n + },\n {\n \"m_Id\": \"a47e70271af04db6a17668010059af8b\"\n + }\n ]\n },\n \"m_PreviewData\": {\n \"serializedMesh\": {\n + \"m_SerializedMesh\": \"{\\\"mesh\\\":{\\\"instanceID\\\":0}}\",\n + \"m_Guid\": \"\"\n },\n \"preventRotation\": false\n },\n + \"m_Path\": \"Shader Graphs\",\n \"m_GraphPrecision\": 1,\n \"m_PreviewMode\": + 2,\n \"m_OutputNode\": {\n \"m_Id\": \"\"\n },\n \"m_SubDatas\": + [],\n \"m_ActiveTargets\": [\n {\n \"m_Id\": \"306cca4dfd8a4bd5801694d1c1d3e7a4\"\n + }\n ]\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.ColorRGBMaterialSlot\",\n + \"m_ObjectId\": \"04af2b31e2ae477e81cffa40cc5bf74c\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"Base Color\",\n \"m_SlotType\": 0,\n \"m_Hidden\": + false,\n \"m_ShaderOutputName\": \"BaseColor\",\n \"m_StageCapability\": + 2,\n \"m_Value\": {\n \"x\": 0.7264150977134705,\n \"y\": 0.2706924080848694,\n + \"z\": 0.2706924080848694\n },\n \"m_DefaultValue\": {\n \"x\": + 0.5,\n \"y\": 0.5,\n \"z\": 0.5\n },\n \"m_Labels\": [],\n + \"m_ColorMode\": 0,\n \"m_DefaultColor\": {\n \"r\": 0.5,\n + \"g\": 0.5,\n \"b\": 0.5,\n \"a\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.CategoryData\",\n \"m_ObjectId\": + \"0dd0a3bf95824eb9ba1a7c94104bc8d2\",\n \"m_Name\": \"\",\n \"m_ChildObjectList\": + []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n + \"m_ObjectId\": \"0e88f3bc57d2432c9afce79d41b8903a\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"Alpha Clip Threshold\",\n \"m_SlotType\": 0,\n \"m_Hidden\": + false,\n \"m_ShaderOutputName\": \"AlphaClipThreshold\",\n \"m_StageCapability\": + 2,\n \"m_Value\": 0.5,\n \"m_DefaultValue\": 0.5,\n \"m_Labels\": []\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n + \"m_ObjectId\": \"1f355c9bb73e413d815ad0ea16838d92\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"Alpha\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Alpha\",\n \"m_StageCapability\": 2,\n \"m_Value\": + 0.44999998807907107,\n \"m_DefaultValue\": 1.0,\n \"m_Labels\": []\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData\",\n + \"m_ObjectId\": \"1f6dbb3c599846cb919a1e084fdb5c66\",\n \"m_Distortion\": + false,\n \"m_DistortionMode\": 0,\n \"m_DistortionDepthTest\": true,\n + \"m_AddPrecomputedVelocity\": false,\n \"m_TransparentWritesMotionVec\": false,\n + \"m_DepthOffset\": false,\n \"m_ConservativeDepthOffset\": false,\n \"m_TransparencyFog\": + true,\n \"m_AlphaTestShadow\": false,\n \"m_BackThenFrontRendering\": false,\n + \"m_TransparentDepthPrepass\": false,\n \"m_TransparentDepthPostpass\": false,\n + \"m_TransparentPerPixelSorting\": false,\n \"m_SupportLodCrossFade\": false\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n + \"m_ObjectId\": \"250cc61f94d0492d9eda87e29d6a2082\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"Normal\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Normal\",\n \"m_StageCapability\": 1,\n \"m_Value\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.FresnelNode\",\n \"m_ObjectId\": + \"2f5efb5315324eb59f866e3bc7a58fd1\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"Fresnel Effect\",\n \"m_DrawState\": {\n + \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": -410.9999694824219,\n \"y\": 243.00003051757813,\n + \"width\": 207.99998474121095,\n \"height\": 326.0000305175781\n + }\n },\n \"m_Slots\": [\n {\n \"m_Id\": \"6eec488dfece411d9189186f547b830c\"\n + },\n {\n \"m_Id\": \"39fa063c31774e85b07d5752cd2aa5d7\"\n + },\n {\n \"m_Id\": \"7ff33bcf85cf4147afef009baa61ea73\"\n + },\n {\n \"m_Id\": \"cbce5a3010cf4669885e881cac1fff84\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 2,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.HDTarget\",\n + \"m_ObjectId\": \"306cca4dfd8a4bd5801694d1c1d3e7a4\",\n \"m_ActiveSubTarget\": + {\n \"m_Id\": \"7ddda3cbe1994081b8ce75b999a72eea\"\n },\n \"m_Datas\": + [\n {\n \"m_Id\": \"965f49e01e9c4bceb8e3540461925478\"\n + },\n {\n \"m_Id\": \"1f6dbb3c599846cb919a1e084fdb5c66\"\n + },\n {\n \"m_Id\": \"52a0e69276cb42eeb2fc646d14217dce\"\n + }\n ],\n \"m_CustomEditorGUI\": \"\",\n \"m_SupportVFX\": false,\n + \"m_SupportLineRendering\": false\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.ViewDirectionMaterialSlot\",\n \"m_ObjectId\": \"39fa063c31774e85b07d5752cd2aa5d7\",\n + \"m_Id\": 1,\n \"m_DisplayName\": \"View Dir\",\n \"m_SlotType\": 0,\n + \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"ViewDir\",\n \"m_StageCapability\": + 3,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n + \"z\": 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 2\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": + \"4509ae2cc2ff4d63b4bfd6672d7aa049\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"VertexDescription.Tangent\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\": + 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"57f714ebf249477e973ce952529dc626\"\n }\n + ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"VertexDescription.Tangent\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitData\",\n \"m_ObjectId\": + \"52a0e69276cb42eeb2fc646d14217dce\",\n \"m_EnableShadowMatte\": false,\n + \"m_DistortionOnly\": false\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.ColorRGBMaterialSlot\",\n \"m_ObjectId\": \"53903f563dad4a96a4532a9200b43dae\",\n + \"m_Id\": 0,\n \"m_DisplayName\": \"Emission\",\n \"m_SlotType\": 0,\n + \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Emission\",\n \"m_StageCapability\": + 2,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n + \"z\": 0.0\n },\n \"m_Labels\": [],\n \"m_ColorMode\": 1,\n \"m_DefaultColor\": + {\n \"r\": 0.0,\n \"g\": 0.0,\n \"b\": 0.0,\n \"a\": + 1.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.TangentMaterialSlot\",\n + \"m_ObjectId\": \"57f714ebf249477e973ce952529dc626\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"Tangent\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Tangent\",\n \"m_StageCapability\": 1,\n \"m_Value\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": + \"5f169776c0194426bbdd44fe1317b8de\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"SurfaceDescription.BaseColor\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\": + 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"04af2b31e2ae477e81cffa40cc5bf74c\"\n }\n + ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.BaseColor\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n \"m_ObjectId\": \"6eec488dfece411d9189186f547b830c\",\n + \"m_Id\": 0,\n \"m_DisplayName\": \"Normal\",\n \"m_SlotType\": 0,\n + \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Normal\",\n \"m_StageCapability\": + 3,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n + \"z\": 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 2\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitSubTarget\",\n + \"m_ObjectId\": \"7ddda3cbe1994081b8ce75b999a72eea\"\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": + \"7ff33bcf85cf4147afef009baa61ea73\",\n \"m_Id\": 2,\n \"m_DisplayName\": + \"Power\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": + \"Power\",\n \"m_StageCapability\": 3,\n \"m_Value\": 2.569999933242798,\n + \"m_DefaultValue\": 1.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": + \"94d90382411041b29c3a7a7603ab7d59\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"VertexDescription.Normal\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\": + 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"250cc61f94d0492d9eda87e29d6a2082\"\n }\n + ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"VertexDescription.Normal\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData\",\n \"m_ObjectId\": + \"965f49e01e9c4bceb8e3540461925478\",\n \"m_MaterialNeedsUpdateHash\": 1,\n + \"m_SurfaceType\": 1,\n \"m_RenderingPass\": 4,\n \"m_BlendMode\": 0,\n + \"m_ZTest\": 4,\n \"m_ZWrite\": false,\n \"m_TransparentCullMode\": 2,\n + \"m_OpaqueCullMode\": 2,\n \"m_SortPriority\": 0,\n \"m_AlphaTest\": true,\n + \"m_ExcludeFromTUAndAA\": false,\n \"m_TransparentDepthPrepass\": false,\n + \"m_TransparentDepthPostpass\": false,\n \"m_SupportLodCrossFade\": false,\n + \"m_DoubleSidedMode\": 0,\n \"m_DOTSInstancing\": false,\n \"m_CustomVelocity\": + false,\n \"m_Tessellation\": false,\n \"m_TessellationMode\": 0,\n \"m_TessellationFactorMinDistance\": + 20.0,\n \"m_TessellationFactorMaxDistance\": 50.0,\n \"m_TessellationFactorTriangleSize\": + 100.0,\n \"m_TessellationShapeFactor\": 0.75,\n \"m_TessellationBackFaceCullEpsilon\": + -0.25,\n \"m_TessellationMaxDisplacement\": 0.009999999776482582,\n \"m_DebugSymbols\": + false,\n \"m_Version\": 2,\n \"inspectorFoldoutMask\": 1\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": + \"9fb881c2a1944d708c5af330f9f2eddf\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"VertexDescription.Position\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\": + 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"fb2b27ede33b498ab7fecd2a2f9330e2\"\n }\n + ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"VertexDescription.Position\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"a0e86e49a1744cbc8bad3e7ac2782a98\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Alpha\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"1f355c9bb73e413d815ad0ea16838d92\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.Alpha\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"a47e70271af04db6a17668010059af8b\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.AlphaClipThreshold\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"0e88f3bc57d2432c9afce79d41b8903a\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.AlphaClipThreshold\"\n}\n\n{\n \"m_SGVersion\": 0,\n + \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"adcca0e8763b4f858b9201feffff6701\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Emission\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"53903f563dad4a96a4532a9200b43dae\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.Emission\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": \"cbce5a3010cf4669885e881cac1fff84\",\n + \"m_Id\": 3,\n \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": + false,\n \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n + \"m_Value\": 0.0,\n \"m_DefaultValue\": 0.0,\n \"m_Labels\": []\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.PositionMaterialSlot\",\n + \"m_ObjectId\": \"fb2b27ede33b498ab7fecd2a2f9330e2\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"Position\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Position\",\n \"m_StageCapability\": 1,\n \"m_Value\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n" + m_AssetMaybeChangedOnDisk: 0 + m_AssetMaybeDeleted: 0 +--- !u!114 &22 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 924ffcbe75518854f97b48776d0f1939, type: 3} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 50, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: GlowingRed + m_Image: {fileID: 2800000, guid: 7129268cf102b2f45809905bcb27ce8b, type: 3} + m_Tooltip: + m_TextWithWhitespace: "GlowingRed\u200B" + m_Pos: + serializedVersion: 2 + x: 1237 + y: 99 + width: 801 + height: 922 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_Selected: 8e8719c317c94ce49ab21c6dbe91527c + m_GraphObject: {fileID: 0} + m_LastSerializedFileContents: "{\n \"m_SGVersion\": 3,\n \"m_Type\": \"UnityEditor.ShaderGraph.GraphData\",\n + \"m_ObjectId\": \"7330eda413cb4845881f88ee4e60110a\",\n \"m_Properties\": + [\n {\n \"m_Id\": \"9c2b866edc8d44c2bbfbdce463ada26b\"\n + }\n ],\n \"m_Keywords\": [],\n \"m_Dropdowns\": [],\n \"m_CategoryData\": + [\n {\n \"m_Id\": \"b3c08c077c544603a1261e98eaefee1c\"\n + }\n ],\n \"m_Nodes\": [\n {\n \"m_Id\": \"ba1b5c492e664adea1d7be8cf58a0ba3\"\n + },\n {\n \"m_Id\": \"b9bb6f7516f642ac85682bd5a27c4378\"\n + },\n {\n \"m_Id\": \"777995f0fd8b40e3a383fbb4afae8cab\"\n + },\n {\n \"m_Id\": \"15be12580f86486795383c962ad0f438\"\n + },\n {\n \"m_Id\": \"3e95f39a247a40cbae5abdc28ed6f091\"\n + },\n {\n \"m_Id\": \"0177c16d2ad44fe79823a10c443c0e27\"\n + },\n {\n \"m_Id\": \"e5d2cd2a53e7443e8fc83edb6c1d2a8d\"\n + },\n {\n \"m_Id\": \"3bfaf0cfd35d4ece8806514c8ba77802\"\n + },\n {\n \"m_Id\": \"5d74c3d5a10e4bbf993e01983a2b77b5\"\n + },\n {\n \"m_Id\": \"2a42424508c6486eb623dc094fb709ba\"\n + },\n {\n \"m_Id\": \"f73e3e015d994ba7aaf1e73a1cb12573\"\n + },\n {\n \"m_Id\": \"72d29d501a0e4397b5a029eecbd33dec\"\n + },\n {\n \"m_Id\": \"c8d3e80d65e54f1f89de3a790e3e38c8\"\n + },\n {\n \"m_Id\": \"d29e1576355b4aaeb606104292ec204c\"\n + },\n {\n \"m_Id\": \"7e8b10dadbe64252bf01d9b270fe1ff0\"\n + }\n ],\n \"m_GroupDatas\": [],\n \"m_StickyNoteDatas\": [],\n \"m_Edges\": + [\n {\n \"m_OutputSlot\": {\n \"m_Node\": {\n + \"m_Id\": \"72d29d501a0e4397b5a029eecbd33dec\"\n },\n + \"m_SlotId\": 3\n },\n \"m_InputSlot\": {\n + \"m_Node\": {\n \"m_Id\": \"c8d3e80d65e54f1f89de3a790e3e38c8\"\n + },\n \"m_SlotId\": 0\n }\n },\n {\n + \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\": + \"7e8b10dadbe64252bf01d9b270fe1ff0\"\n },\n \"m_SlotId\": + 2\n },\n \"m_InputSlot\": {\n \"m_Node\": + {\n \"m_Id\": \"15be12580f86486795383c962ad0f438\"\n + },\n \"m_SlotId\": 0\n }\n },\n {\n + \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\": + \"7e8b10dadbe64252bf01d9b270fe1ff0\"\n },\n \"m_SlotId\": + 2\n },\n \"m_InputSlot\": {\n \"m_Node\": + {\n \"m_Id\": \"3bfaf0cfd35d4ece8806514c8ba77802\"\n + },\n \"m_SlotId\": 0\n }\n },\n {\n + \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\": + \"c8d3e80d65e54f1f89de3a790e3e38c8\"\n },\n \"m_SlotId\": + 2\n },\n \"m_InputSlot\": {\n \"m_Node\": + {\n \"m_Id\": \"7e8b10dadbe64252bf01d9b270fe1ff0\"\n + },\n \"m_SlotId\": 1\n }\n },\n {\n + \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\": + \"d29e1576355b4aaeb606104292ec204c\"\n },\n \"m_SlotId\": + 0\n },\n \"m_InputSlot\": {\n \"m_Node\": + {\n \"m_Id\": \"c8d3e80d65e54f1f89de3a790e3e38c8\"\n + },\n \"m_SlotId\": 1\n }\n }\n ],\n \"m_VertexContext\": + {\n \"m_Position\": {\n \"x\": 0.0,\n \"y\": 0.0\n + },\n \"m_Blocks\": [\n {\n \"m_Id\": \"ba1b5c492e664adea1d7be8cf58a0ba3\"\n + },\n {\n \"m_Id\": \"b9bb6f7516f642ac85682bd5a27c4378\"\n + },\n {\n \"m_Id\": \"777995f0fd8b40e3a383fbb4afae8cab\"\n + }\n ]\n },\n \"m_FragmentContext\": {\n \"m_Position\": {\n + \"x\": 0.0,\n \"y\": 200.0\n },\n \"m_Blocks\": [\n + {\n \"m_Id\": \"15be12580f86486795383c962ad0f438\"\n + },\n {\n \"m_Id\": \"3e95f39a247a40cbae5abdc28ed6f091\"\n + },\n {\n \"m_Id\": \"0177c16d2ad44fe79823a10c443c0e27\"\n + },\n {\n \"m_Id\": \"e5d2cd2a53e7443e8fc83edb6c1d2a8d\"\n + },\n {\n \"m_Id\": \"3bfaf0cfd35d4ece8806514c8ba77802\"\n + },\n {\n \"m_Id\": \"5d74c3d5a10e4bbf993e01983a2b77b5\"\n + },\n {\n \"m_Id\": \"2a42424508c6486eb623dc094fb709ba\"\n + },\n {\n \"m_Id\": \"f73e3e015d994ba7aaf1e73a1cb12573\"\n + }\n ]\n },\n \"m_PreviewData\": {\n \"serializedMesh\": {\n + \"m_SerializedMesh\": \"{\\\"mesh\\\":{\\\"instanceID\\\":0}}\",\n + \"m_Guid\": \"\"\n },\n \"preventRotation\": false\n },\n + \"m_Path\": \"Shader Graphs\",\n \"m_GraphPrecision\": 1,\n \"m_PreviewMode\": + 2,\n \"m_OutputNode\": {\n \"m_Id\": \"\"\n },\n \"m_SubDatas\": + [],\n \"m_ActiveTargets\": [\n {\n \"m_Id\": \"3dc7c32e929b4a4aa0a39cd9f6434f81\"\n + }\n ]\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n + \"m_ObjectId\": \"0177c16d2ad44fe79823a10c443c0e27\",\n \"m_Group\": {\n + \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.BentNormal\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"73461ab78cbb4eb4ab695a253e829ee9\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.BentNormal\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitData\",\n \"m_ObjectId\": + \"0393d56919c842b8a12a5ca7c6539619\",\n \"m_RayTracing\": false,\n \"m_MaterialType\": + 0,\n \"m_MaterialTypeMask\": 2,\n \"m_RefractionModel\": 0,\n \"m_SSSTransmission\": + true,\n \"m_EnergyConservingSpecular\": true,\n \"m_ClearCoat\": false\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitSubTarget\",\n + \"m_ObjectId\": \"0503112ffc1a46b7964c8858e87789c5\"\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n \"m_ObjectId\": + \"05fd35135cc64632927330fbd8f217b2\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"Normal\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": + \"Normal\",\n \"m_StageCapability\": 1,\n \"m_Value\": {\n \"x\": + 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n \"m_DefaultValue\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": \"08a7a74e3b844962b12bc1c6cf9b3d93\",\n + \"m_Id\": 0,\n \"m_DisplayName\": \"Smoothness\",\n \"m_SlotType\": 0,\n + \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Smoothness\",\n \"m_StageCapability\": + 2,\n \"m_Value\": 0.5,\n \"m_DefaultValue\": 0.5,\n \"m_Labels\": []\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n + \"m_ObjectId\": \"15be12580f86486795383c962ad0f438\",\n \"m_Group\": {\n + \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.BaseColor\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"c19b971a18ab4226b275dcdedde15328\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.BaseColor\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n \"m_ObjectId\": \"1fd127185f9b4e57abfe71cfa5f962d4\",\n + \"m_Id\": 1,\n \"m_DisplayName\": \"B\",\n \"m_SlotType\": 0,\n \"m_Hidden\": + false,\n \"m_ShaderOutputName\": \"B\",\n \"m_StageCapability\": 3,\n + \"m_Value\": {\n \"e00\": 2.0,\n \"e01\": 2.0,\n \"e02\": + 2.0,\n \"e03\": 2.0,\n \"e10\": 2.0,\n \"e11\": 2.0,\n + \"e12\": 2.0,\n \"e13\": 2.0,\n \"e20\": 2.0,\n \"e21\": + 2.0,\n \"e22\": 2.0,\n \"e23\": 2.0,\n \"e30\": 2.0,\n + \"e31\": 2.0,\n \"e32\": 2.0,\n \"e33\": 2.0\n },\n \"m_DefaultValue\": + {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.PositionMaterialSlot\",\n \"m_ObjectId\": + \"2157cc6adf074255adc7152ca23ef707\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"Position\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": + \"Position\",\n \"m_StageCapability\": 1,\n \"m_Value\": {\n \"x\": + 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n \"m_DefaultValue\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"2a42424508c6486eb623dc094fb709ba\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Occlusion\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"5dff4900cd354a9485b0e27995387437\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.Occlusion\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": \"2f19d250137c408ba5bf64252635ecdf\",\n + \"m_Id\": 0,\n \"m_DisplayName\": \"Alpha\",\n \"m_SlotType\": 0,\n + \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Alpha\",\n \"m_StageCapability\": + 2,\n \"m_Value\": 1.0,\n \"m_DefaultValue\": 1.0,\n \"m_Labels\": []\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.LightingData\",\n + \"m_ObjectId\": \"320e41b0de604dc5a9809a01ce12d3c4\",\n \"m_NormalDropOffSpace\": + 0,\n \"m_BlendPreserveSpecular\": true,\n \"m_ReceiveDecals\": true,\n + \"m_ReceiveSSR\": true,\n \"m_ReceiveSSRTransparent\": false,\n \"m_SpecularAA\": + false,\n \"m_SpecularOcclusionMode\": 1,\n \"m_OverrideBakedGI\": false\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData\",\n + \"m_ObjectId\": \"374689c80e1240618a336951129d2455\",\n \"m_Distortion\": + false,\n \"m_DistortionMode\": 0,\n \"m_DistortionDepthTest\": true,\n + \"m_AddPrecomputedVelocity\": false,\n \"m_TransparentWritesMotionVec\": false,\n + \"m_DepthOffset\": false,\n \"m_ConservativeDepthOffset\": false,\n \"m_TransparencyFog\": + true,\n \"m_AlphaTestShadow\": false,\n \"m_BackThenFrontRendering\": false,\n + \"m_TransparentDepthPrepass\": false,\n \"m_TransparentDepthPostpass\": false,\n + \"m_TransparentPerPixelSorting\": false,\n \"m_SupportLodCrossFade\": false\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n + \"m_ObjectId\": \"3bfaf0cfd35d4ece8806514c8ba77802\",\n \"m_Group\": {\n + \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Emission\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"a9676ff2f8184fc8ac5746c3611ef93c\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.Emission\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.Rendering.HighDefinition.ShaderGraph.HDTarget\",\n \"m_ObjectId\": + \"3dc7c32e929b4a4aa0a39cd9f6434f81\",\n \"m_ActiveSubTarget\": {\n + \"m_Id\": \"0503112ffc1a46b7964c8858e87789c5\"\n },\n \"m_Datas\": [\n + {\n \"m_Id\": \"c7a17405a5eb43bd811615a9797dc7bf\"\n },\n + {\n \"m_Id\": \"0393d56919c842b8a12a5ca7c6539619\"\n },\n + {\n \"m_Id\": \"374689c80e1240618a336951129d2455\"\n },\n + {\n \"m_Id\": \"320e41b0de604dc5a9809a01ce12d3c4\"\n }\n + ],\n \"m_CustomEditorGUI\": \"\",\n \"m_SupportVFX\": false,\n \"m_SupportLineRendering\": + false\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n + \"m_ObjectId\": \"3e95f39a247a40cbae5abdc28ed6f091\",\n \"m_Group\": {\n + \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.NormalTS\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"bf8a88b5a5ba45e9b5de055969ead565\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.NormalTS\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n \"m_ObjectId\": \"405fe3d593754dbb9e1cc5243a74cab7\",\n + \"m_Id\": 0,\n \"m_DisplayName\": \"A\",\n \"m_SlotType\": 0,\n \"m_Hidden\": + false,\n \"m_ShaderOutputName\": \"A\",\n \"m_StageCapability\": 3,\n + \"m_Value\": {\n \"e00\": 1796.0,\n \"e01\": 0.0,\n \"e02\": + 0.0,\n \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n + \"e12\": 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": + 0.0,\n \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n + \"e31\": 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\": + {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n + \"m_ObjectId\": \"49f3bf3ed46a49f2934c223a6aeb1b6e\",\n \"m_Id\": 2,\n + \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\": + {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": + \"5d74c3d5a10e4bbf993e01983a2b77b5\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"SurfaceDescription.Smoothness\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\": + 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"08a7a74e3b844962b12bc1c6cf9b3d93\"\n }\n + ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.Smoothness\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": \"5dff4900cd354a9485b0e27995387437\",\n + \"m_Id\": 0,\n \"m_DisplayName\": \"Ambient Occlusion\",\n \"m_SlotType\": + 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Occlusion\",\n + \"m_StageCapability\": 2,\n \"m_Value\": 1.0,\n \"m_DefaultValue\": 1.0,\n + \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.FresnelNode\",\n + \"m_ObjectId\": \"72d29d501a0e4397b5a029eecbd33dec\",\n \"m_Group\": {\n + \"m_Id\": \"\"\n },\n \"m_Name\": \"Fresnel Effect\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": -499.20001220703127,\n \"y\": 208.8000030517578,\n + \"width\": 208.0,\n \"height\": 325.60003662109377\n }\n + },\n \"m_Slots\": [\n {\n \"m_Id\": \"7559f7305f914857b678288aec6152c8\"\n + },\n {\n \"m_Id\": \"bce04b7ddd924c05b61fe1b0bd38084d\"\n + },\n {\n \"m_Id\": \"c9b9a7268cd64de18bbd5799f0db5f37\"\n + },\n {\n \"m_Id\": \"b41d4afeff474b2eb91f371a2a4da294\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 2,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n \"m_ObjectId\": + \"73461ab78cbb4eb4ab695a253e829ee9\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"Bent Normal\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": + \"BentNormal\",\n \"m_StageCapability\": 2,\n \"m_Value\": {\n \"x\": + 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n \"m_DefaultValue\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_Labels\": [],\n \"m_Space\": 3\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n \"m_ObjectId\": \"7559f7305f914857b678288aec6152c8\",\n + \"m_Id\": 0,\n \"m_DisplayName\": \"Normal\",\n \"m_SlotType\": 0,\n + \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Normal\",\n \"m_StageCapability\": + 3,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n + \"z\": 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 2\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": + \"777995f0fd8b40e3a383fbb4afae8cab\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"VertexDescription.Tangent\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\": + 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"c303636b50774eeba423fdc824edafcb\"\n }\n + ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"VertexDescription.Tangent\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.MultiplyNode\",\n \"m_ObjectId\": \"7e8b10dadbe64252bf01d9b270fe1ff0\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"Multiply\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": -155.19998168945313,\n + \"y\": 647.2000732421875,\n \"width\": 208.00003051757813,\n + \"height\": 301.59991455078127\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"405fe3d593754dbb9e1cc5243a74cab7\"\n },\n + {\n \"m_Id\": \"a305d3846c664c8384352ab32c4887ec\"\n },\n + {\n \"m_Id\": \"d3fc10a9ea1042e8a146e485e8d8f680\"\n }\n + ],\n \"synonyms\": [\n \"multiplication\",\n \"times\",\n + \"x\"\n ],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": true,\n + \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": + \"98e12cccbfc246d2923ceba66bcc46ff\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"Metallic\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": + \"Metallic\",\n \"m_StageCapability\": 2,\n \"m_Value\": 0.0,\n \"m_DefaultValue\": + 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 3,\n \"m_Type\": + \"UnityEditor.ShaderGraph.Internal.ColorShaderProperty\",\n \"m_ObjectId\": + \"9c2b866edc8d44c2bbfbdce463ada26b\",\n \"m_Guid\": {\n \"m_GuidSerialized\": + \"69c22df7-7ec3-4322-819b-043909d86cd4\"\n },\n \"m_Name\": \"EmissionColor\",\n + \"m_DefaultRefNameVersion\": 1,\n \"m_RefNameGeneratedByDisplayName\": \"EmissionColor\",\n + \"m_DefaultReferenceName\": \"_EmissionColor\",\n \"m_OverrideReferenceName\": + \"\",\n \"m_GeneratePropertyBlock\": true,\n \"m_UseCustomSlotLabel\": + false,\n \"m_CustomSlotLabel\": \"\",\n \"m_DismissedVersion\": 0,\n + \"m_Precision\": 0,\n \"overrideHLSLDeclaration\": false,\n \"hlslDeclarationOverride\": + 0,\n \"m_Hidden\": false,\n \"m_Value\": {\n \"r\": 1.0,\n + \"g\": 0.0,\n \"b\": 0.0,\n \"a\": 0.0\n },\n \"isMainColor\": + false,\n \"m_ColorMode\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n \"m_ObjectId\": \"a305d3846c664c8384352ab32c4887ec\",\n + \"m_Id\": 1,\n \"m_DisplayName\": \"B\",\n \"m_SlotType\": 0,\n \"m_Hidden\": + false,\n \"m_ShaderOutputName\": \"B\",\n \"m_StageCapability\": 3,\n + \"m_Value\": {\n \"e00\": 2.0,\n \"e01\": 2.0,\n \"e02\": + 2.0,\n \"e03\": 2.0,\n \"e10\": 2.0,\n \"e11\": 2.0,\n + \"e12\": 2.0,\n \"e13\": 2.0,\n \"e20\": 2.0,\n \"e21\": + 2.0,\n \"e22\": 2.0,\n \"e23\": 2.0,\n \"e30\": 2.0,\n + \"e31\": 2.0,\n \"e32\": 2.0,\n \"e33\": 2.0\n },\n \"m_DefaultValue\": + {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.ColorRGBMaterialSlot\",\n \"m_ObjectId\": + \"a9676ff2f8184fc8ac5746c3611ef93c\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"Emission\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": + \"Emission\",\n \"m_StageCapability\": 2,\n \"m_Value\": {\n \"x\": + 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n \"m_DefaultValue\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_Labels\": [],\n \"m_ColorMode\": 1,\n \"m_DefaultColor\": {\n + \"r\": 0.0,\n \"g\": 0.0,\n \"b\": 0.0,\n \"a\": 1.0\n + }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n + \"m_ObjectId\": \"b0d29b94e491444bb91676aec9eb6255\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"A\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"A\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\": + {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.CategoryData\",\n \"m_ObjectId\": + \"b3c08c077c544603a1261e98eaefee1c\",\n \"m_Name\": \"\",\n \"m_ChildObjectList\": + [\n {\n \"m_Id\": \"9c2b866edc8d44c2bbfbdce463ada26b\"\n + }\n ]\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n + \"m_ObjectId\": \"b41d4afeff474b2eb91f371a2a4da294\",\n \"m_Id\": 3,\n + \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\": + 0.0,\n \"m_DefaultValue\": 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": + \"b9bb6f7516f642ac85682bd5a27c4378\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"VertexDescription.Normal\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\": + 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"05fd35135cc64632927330fbd8f217b2\"\n }\n + ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"VertexDescription.Normal\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"ba1b5c492e664adea1d7be8cf58a0ba3\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"VertexDescription.Position\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"2157cc6adf074255adc7152ca23ef707\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"VertexDescription.Position\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.Vector4MaterialSlot\",\n \"m_ObjectId\": \"bbc96645176141639b7dc0e3a0cd16a9\",\n + \"m_Id\": 0,\n \"m_DisplayName\": \"EmissionColor\",\n \"m_SlotType\": + 1,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": + 3,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0,\n \"w\": 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n + \"y\": 0.0,\n \"z\": 0.0,\n \"w\": 0.0\n },\n \"m_Labels\": + []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.ViewDirectionMaterialSlot\",\n + \"m_ObjectId\": \"bce04b7ddd924c05b61fe1b0bd38084d\",\n \"m_Id\": 1,\n + \"m_DisplayName\": \"View Dir\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"ViewDir\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 2\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n \"m_ObjectId\": + \"bf8a88b5a5ba45e9b5de055969ead565\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"Normal (Tangent Space)\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"NormalTS\",\n \"m_StageCapability\": 2,\n \"m_Value\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 3\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.ColorRGBMaterialSlot\",\n \"m_ObjectId\": + \"c19b971a18ab4226b275dcdedde15328\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"Base Color\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": + \"BaseColor\",\n \"m_StageCapability\": 2,\n \"m_Value\": {\n \"x\": + 0.5,\n \"y\": 0.5,\n \"z\": 0.5\n },\n \"m_DefaultValue\": + {\n \"x\": 0.5,\n \"y\": 0.5,\n \"z\": 0.5\n },\n + \"m_Labels\": [],\n \"m_ColorMode\": 0,\n \"m_DefaultColor\": {\n + \"r\": 0.5,\n \"g\": 0.5,\n \"b\": 0.5,\n \"a\": 1.0\n + }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.TangentMaterialSlot\",\n + \"m_ObjectId\": \"c303636b50774eeba423fdc824edafcb\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"Tangent\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Tangent\",\n \"m_StageCapability\": 1,\n \"m_Value\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData\",\n + \"m_ObjectId\": \"c7a17405a5eb43bd811615a9797dc7bf\",\n \"m_MaterialNeedsUpdateHash\": + 0,\n \"m_SurfaceType\": 0,\n \"m_RenderingPass\": 1,\n \"m_BlendMode\": + 0,\n \"m_ZTest\": 4,\n \"m_ZWrite\": false,\n \"m_TransparentCullMode\": + 2,\n \"m_OpaqueCullMode\": 2,\n \"m_SortPriority\": 0,\n \"m_AlphaTest\": + false,\n \"m_ExcludeFromTUAndAA\": false,\n \"m_TransparentDepthPrepass\": + false,\n \"m_TransparentDepthPostpass\": false,\n \"m_SupportLodCrossFade\": + false,\n \"m_DoubleSidedMode\": 0,\n \"m_DOTSInstancing\": false,\n + \"m_CustomVelocity\": false,\n \"m_Tessellation\": false,\n \"m_TessellationMode\": + 0,\n \"m_TessellationFactorMinDistance\": 20.0,\n \"m_TessellationFactorMaxDistance\": + 50.0,\n \"m_TessellationFactorTriangleSize\": 100.0,\n \"m_TessellationShapeFactor\": + 0.75,\n \"m_TessellationBackFaceCullEpsilon\": -0.25,\n \"m_TessellationMaxDisplacement\": + 0.009999999776482582,\n \"m_DebugSymbols\": false,\n \"m_Version\": 2,\n + \"inspectorFoldoutMask\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.MultiplyNode\",\n \"m_ObjectId\": \"c8d3e80d65e54f1f89de3a790e3e38c8\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"Multiply\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": -602.9999389648438,\n + \"y\": 693.0,\n \"width\": 207.99996948242188,\n \"height\": + 301.99993896484377\n }\n },\n \"m_Slots\": [\n {\n + \"m_Id\": \"b0d29b94e491444bb91676aec9eb6255\"\n },\n {\n + \"m_Id\": \"1fd127185f9b4e57abfe71cfa5f962d4\"\n },\n {\n + \"m_Id\": \"49f3bf3ed46a49f2934c223a6aeb1b6e\"\n }\n ],\n \"synonyms\": + [\n \"multiplication\",\n \"times\",\n \"x\"\n ],\n + \"m_Precision\": 0,\n \"m_PreviewExpanded\": true,\n \"m_DismissedVersion\": + 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": {\n \"m_SerializableColors\": + []\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n + \"m_ObjectId\": \"c9b9a7268cd64de18bbd5799f0db5f37\",\n \"m_Id\": 2,\n + \"m_DisplayName\": \"Power\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Power\",\n \"m_StageCapability\": 3,\n \"m_Value\": + 6.059999942779541,\n \"m_DefaultValue\": 1.0,\n \"m_Labels\": []\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.PropertyNode\",\n + \"m_ObjectId\": \"d29e1576355b4aaeb606104292ec204c\",\n \"m_Group\": {\n + \"m_Id\": \"\"\n },\n \"m_Name\": \"Property\",\n \"m_DrawState\": {\n + \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": -606.4000244140625,\n \"y\": 637.6000366210938,\n + \"width\": 151.20001220703126,\n \"height\": 33.5999755859375\n + }\n },\n \"m_Slots\": [\n {\n \"m_Id\": \"bbc96645176141639b7dc0e3a0cd16a9\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_Property\": {\n + \"m_Id\": \"9c2b866edc8d44c2bbfbdce463ada26b\"\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n + \"m_ObjectId\": \"d3fc10a9ea1042e8a146e485e8d8f680\",\n \"m_Id\": 2,\n + \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\": + {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": + \"e5d2cd2a53e7443e8fc83edb6c1d2a8d\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"SurfaceDescription.Metallic\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\": + 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"98e12cccbfc246d2923ceba66bcc46ff\"\n }\n + ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.Metallic\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"f73e3e015d994ba7aaf1e73a1cb12573\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Alpha\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"2f19d250137c408ba5bf64252635ecdf\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.Alpha\"\n}\n\n" + m_AssetMaybeChangedOnDisk: 0 + m_AssetMaybeDeleted: 0 +--- !u!114 &23 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 924ffcbe75518854f97b48776d0f1939, type: 3} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 50, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: GlowingOrange + m_Image: {fileID: 2800000, guid: 7129268cf102b2f45809905bcb27ce8b, type: 3} + m_Tooltip: + m_TextWithWhitespace: "GlowingOrange\u200B" + m_Pos: + serializedVersion: 2 + x: 1237 + y: 99 + width: 801 + height: 922 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_Selected: bb602b06a1efd91468b9baa565d94406 + m_GraphObject: {fileID: 0} + m_LastSerializedFileContents: "{\n \"m_SGVersion\": 3,\n \"m_Type\": \"UnityEditor.ShaderGraph.GraphData\",\n + \"m_ObjectId\": \"7330eda413cb4845881f88ee4e60110a\",\n \"m_Properties\": + [\n {\n \"m_Id\": \"9c2b866edc8d44c2bbfbdce463ada26b\"\n + }\n ],\n \"m_Keywords\": [],\n \"m_Dropdowns\": [],\n \"m_CategoryData\": + [\n {\n \"m_Id\": \"b3c08c077c544603a1261e98eaefee1c\"\n + }\n ],\n \"m_Nodes\": [\n {\n \"m_Id\": \"ba1b5c492e664adea1d7be8cf58a0ba3\"\n + },\n {\n \"m_Id\": \"b9bb6f7516f642ac85682bd5a27c4378\"\n + },\n {\n \"m_Id\": \"777995f0fd8b40e3a383fbb4afae8cab\"\n + },\n {\n \"m_Id\": \"15be12580f86486795383c962ad0f438\"\n + },\n {\n \"m_Id\": \"3e95f39a247a40cbae5abdc28ed6f091\"\n + },\n {\n \"m_Id\": \"0177c16d2ad44fe79823a10c443c0e27\"\n + },\n {\n \"m_Id\": \"e5d2cd2a53e7443e8fc83edb6c1d2a8d\"\n + },\n {\n \"m_Id\": \"3bfaf0cfd35d4ece8806514c8ba77802\"\n + },\n {\n \"m_Id\": \"5d74c3d5a10e4bbf993e01983a2b77b5\"\n + },\n {\n \"m_Id\": \"2a42424508c6486eb623dc094fb709ba\"\n + },\n {\n \"m_Id\": \"f73e3e015d994ba7aaf1e73a1cb12573\"\n + },\n {\n \"m_Id\": \"96473a47eb6e442789508016fc61523c\"\n + },\n {\n \"m_Id\": \"24ee9cdb0e694a028f87c9e7f2983004\"\n + }\n ],\n \"m_GroupDatas\": [],\n \"m_StickyNoteDatas\": [],\n \"m_Edges\": + [\n {\n \"m_OutputSlot\": {\n \"m_Node\": {\n + \"m_Id\": \"24ee9cdb0e694a028f87c9e7f2983004\"\n },\n + \"m_SlotId\": 2\n },\n \"m_InputSlot\": {\n + \"m_Node\": {\n \"m_Id\": \"15be12580f86486795383c962ad0f438\"\n + },\n \"m_SlotId\": 0\n }\n },\n {\n + \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\": + \"24ee9cdb0e694a028f87c9e7f2983004\"\n },\n \"m_SlotId\": + 2\n },\n \"m_InputSlot\": {\n \"m_Node\": + {\n \"m_Id\": \"3bfaf0cfd35d4ece8806514c8ba77802\"\n + },\n \"m_SlotId\": 0\n }\n },\n {\n + \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\": + \"96473a47eb6e442789508016fc61523c\"\n },\n \"m_SlotId\": + 4\n },\n \"m_InputSlot\": {\n \"m_Node\": + {\n \"m_Id\": \"24ee9cdb0e694a028f87c9e7f2983004\"\n + },\n \"m_SlotId\": 0\n }\n }\n ],\n \"m_VertexContext\": + {\n \"m_Position\": {\n \"x\": 0.0,\n \"y\": 0.0\n + },\n \"m_Blocks\": [\n {\n \"m_Id\": \"ba1b5c492e664adea1d7be8cf58a0ba3\"\n + },\n {\n \"m_Id\": \"b9bb6f7516f642ac85682bd5a27c4378\"\n + },\n {\n \"m_Id\": \"777995f0fd8b40e3a383fbb4afae8cab\"\n + }\n ]\n },\n \"m_FragmentContext\": {\n \"m_Position\": {\n + \"x\": 0.0,\n \"y\": 200.0\n },\n \"m_Blocks\": [\n + {\n \"m_Id\": \"15be12580f86486795383c962ad0f438\"\n + },\n {\n \"m_Id\": \"3e95f39a247a40cbae5abdc28ed6f091\"\n + },\n {\n \"m_Id\": \"0177c16d2ad44fe79823a10c443c0e27\"\n + },\n {\n \"m_Id\": \"e5d2cd2a53e7443e8fc83edb6c1d2a8d\"\n + },\n {\n \"m_Id\": \"3bfaf0cfd35d4ece8806514c8ba77802\"\n + },\n {\n \"m_Id\": \"5d74c3d5a10e4bbf993e01983a2b77b5\"\n + },\n {\n \"m_Id\": \"2a42424508c6486eb623dc094fb709ba\"\n + },\n {\n \"m_Id\": \"f73e3e015d994ba7aaf1e73a1cb12573\"\n + }\n ]\n },\n \"m_PreviewData\": {\n \"serializedMesh\": {\n + \"m_SerializedMesh\": \"{\\\"mesh\\\":{\\\"instanceID\\\":0}}\",\n + \"m_Guid\": \"\"\n },\n \"preventRotation\": false\n },\n + \"m_Path\": \"Shader Graphs\",\n \"m_GraphPrecision\": 1,\n \"m_PreviewMode\": + 2,\n \"m_OutputNode\": {\n \"m_Id\": \"\"\n },\n \"m_SubDatas\": + [],\n \"m_ActiveTargets\": [\n {\n \"m_Id\": \"3dc7c32e929b4a4aa0a39cd9f6434f81\"\n + }\n ]\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n + \"m_ObjectId\": \"0177c16d2ad44fe79823a10c443c0e27\",\n \"m_Group\": {\n + \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.BentNormal\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"73461ab78cbb4eb4ab695a253e829ee9\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.BentNormal\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitData\",\n \"m_ObjectId\": + \"0393d56919c842b8a12a5ca7c6539619\",\n \"m_RayTracing\": false,\n \"m_MaterialType\": + 0,\n \"m_MaterialTypeMask\": 2,\n \"m_RefractionModel\": 0,\n \"m_SSSTransmission\": + true,\n \"m_EnergyConservingSpecular\": true,\n \"m_ClearCoat\": false\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitSubTarget\",\n + \"m_ObjectId\": \"0503112ffc1a46b7964c8858e87789c5\"\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n \"m_ObjectId\": + \"05fd35135cc64632927330fbd8f217b2\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"Normal\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": + \"Normal\",\n \"m_StageCapability\": 1,\n \"m_Value\": {\n \"x\": + 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n \"m_DefaultValue\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": \"08a7a74e3b844962b12bc1c6cf9b3d93\",\n + \"m_Id\": 0,\n \"m_DisplayName\": \"Smoothness\",\n \"m_SlotType\": 0,\n + \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Smoothness\",\n \"m_StageCapability\": + 2,\n \"m_Value\": 0.5,\n \"m_DefaultValue\": 0.5,\n \"m_Labels\": []\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n + \"m_ObjectId\": \"15be12580f86486795383c962ad0f438\",\n \"m_Group\": {\n + \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.BaseColor\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"c19b971a18ab4226b275dcdedde15328\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.BaseColor\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n \"m_ObjectId\": \"19e683a8518142e7acc660cd533fffcf\",\n + \"m_Id\": 2,\n \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": + false,\n \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n + \"m_Value\": {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\": + 0.0,\n \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n + \"e12\": 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": + 0.0,\n \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n + \"e31\": 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\": + {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.PositionMaterialSlot\",\n \"m_ObjectId\": + \"2157cc6adf074255adc7152ca23ef707\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"Position\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": + \"Position\",\n \"m_StageCapability\": 1,\n \"m_Value\": {\n \"x\": + 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n \"m_DefaultValue\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.MultiplyNode\",\n \"m_ObjectId\": \"24ee9cdb0e694a028f87c9e7f2983004\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"Multiply\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": -386.0,\n \"y\": + 250.00001525878907,\n \"width\": 207.99998474121095,\n + \"height\": 302.0\n }\n },\n \"m_Slots\": [\n {\n + \"m_Id\": \"9476e821e4c141398c4977443a2c6d3e\"\n },\n {\n + \"m_Id\": \"de268bd54d9845efb769c98a559fad03\"\n },\n {\n + \"m_Id\": \"19e683a8518142e7acc660cd533fffcf\"\n }\n ],\n \"synonyms\": + [\n \"multiplication\",\n \"times\",\n \"x\"\n ],\n + \"m_Precision\": 0,\n \"m_PreviewExpanded\": true,\n \"m_DismissedVersion\": + 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": {\n \"m_SerializableColors\": + []\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n + \"m_ObjectId\": \"2a42424508c6486eb623dc094fb709ba\",\n \"m_Group\": {\n + \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Occlusion\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"5dff4900cd354a9485b0e27995387437\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.Occlusion\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": \"2f19d250137c408ba5bf64252635ecdf\",\n + \"m_Id\": 0,\n \"m_DisplayName\": \"Alpha\",\n \"m_SlotType\": 0,\n + \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Alpha\",\n \"m_StageCapability\": + 2,\n \"m_Value\": 1.0,\n \"m_DefaultValue\": 1.0,\n \"m_Labels\": []\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.LightingData\",\n + \"m_ObjectId\": \"320e41b0de604dc5a9809a01ce12d3c4\",\n \"m_NormalDropOffSpace\": + 0,\n \"m_BlendPreserveSpecular\": true,\n \"m_ReceiveDecals\": true,\n + \"m_ReceiveSSR\": true,\n \"m_ReceiveSSRTransparent\": false,\n \"m_SpecularAA\": + false,\n \"m_SpecularOcclusionMode\": 1,\n \"m_OverrideBakedGI\": false\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData\",\n + \"m_ObjectId\": \"374689c80e1240618a336951129d2455\",\n \"m_Distortion\": + false,\n \"m_DistortionMode\": 0,\n \"m_DistortionDepthTest\": true,\n + \"m_AddPrecomputedVelocity\": false,\n \"m_TransparentWritesMotionVec\": false,\n + \"m_DepthOffset\": false,\n \"m_ConservativeDepthOffset\": false,\n \"m_TransparencyFog\": + true,\n \"m_AlphaTestShadow\": false,\n \"m_BackThenFrontRendering\": false,\n + \"m_TransparentDepthPrepass\": false,\n \"m_TransparentDepthPostpass\": false,\n + \"m_TransparentPerPixelSorting\": false,\n \"m_SupportLodCrossFade\": false\n}\n\n{\n + \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n + \"m_ObjectId\": \"3bfaf0cfd35d4ece8806514c8ba77802\",\n \"m_Group\": {\n + \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Emission\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"a9676ff2f8184fc8ac5746c3611ef93c\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.Emission\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.Rendering.HighDefinition.ShaderGraph.HDTarget\",\n \"m_ObjectId\": + \"3dc7c32e929b4a4aa0a39cd9f6434f81\",\n \"m_ActiveSubTarget\": {\n + \"m_Id\": \"0503112ffc1a46b7964c8858e87789c5\"\n },\n \"m_Datas\": [\n + {\n \"m_Id\": \"c7a17405a5eb43bd811615a9797dc7bf\"\n },\n + {\n \"m_Id\": \"0393d56919c842b8a12a5ca7c6539619\"\n },\n + {\n \"m_Id\": \"374689c80e1240618a336951129d2455\"\n },\n + {\n \"m_Id\": \"320e41b0de604dc5a9809a01ce12d3c4\"\n }\n + ],\n \"m_CustomEditorGUI\": \"\",\n \"m_SupportVFX\": false,\n \"m_SupportLineRendering\": + false\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n + \"m_ObjectId\": \"3e95f39a247a40cbae5abdc28ed6f091\",\n \"m_Group\": {\n + \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.NormalTS\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"bf8a88b5a5ba45e9b5de055969ead565\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.NormalTS\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.ColorRGBMaterialSlot\",\n \"m_ObjectId\": \"56149ed3b8bc4b40bf00b5cdaedd1253\",\n + \"m_Id\": 2,\n \"m_DisplayName\": \"Color B\",\n \"m_SlotType\": 0,\n + \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"ColorB\",\n \"m_StageCapability\": + 3,\n \"m_Value\": {\n \"x\": 0.8784313797950745,\n \"y\": 0.43191447854042055,\n + \"z\": 0.08627449721097946\n },\n \"m_DefaultValue\": {\n \"x\": + 0.699999988079071,\n \"y\": 0.699999988079071,\n \"z\": 0.699999988079071\n + },\n \"m_Labels\": [],\n \"m_ColorMode\": 0,\n \"m_DefaultColor\": {\n + \"r\": 0.699999988079071,\n \"g\": 0.699999988079071,\n \"b\": + 0.699999988079071,\n \"a\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n + \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"5d74c3d5a10e4bbf993e01983a2b77b5\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Smoothness\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"08a7a74e3b844962b12bc1c6cf9b3d93\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.Smoothness\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": \"5dff4900cd354a9485b0e27995387437\",\n + \"m_Id\": 0,\n \"m_DisplayName\": \"Ambient Occlusion\",\n \"m_SlotType\": + 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Occlusion\",\n + \"m_StageCapability\": 2,\n \"m_Value\": 1.0,\n \"m_DefaultValue\": 1.0,\n + \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n + \"m_ObjectId\": \"73461ab78cbb4eb4ab695a253e829ee9\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"Bent Normal\",\n \"m_SlotType\": 0,\n \"m_Hidden\": + false,\n \"m_ShaderOutputName\": \"BentNormal\",\n \"m_StageCapability\": + 2,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n + \"z\": 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 3\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": + \"777995f0fd8b40e3a383fbb4afae8cab\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"VertexDescription.Tangent\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\": + 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"c303636b50774eeba423fdc824edafcb\"\n }\n + ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"VertexDescription.Tangent\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.Vector3MaterialSlot\",\n \"m_ObjectId\": \"7e99753468b74d1e8e4b4b9cd7148bdb\",\n + \"m_Id\": 4,\n \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": + false,\n \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 2,\n + \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n + },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n + \"z\": 0.0\n },\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n + \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n \"m_ObjectId\": + \"9476e821e4c141398c4977443a2c6d3e\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"A\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": + \"A\",\n \"m_StageCapability\": 3,\n \"m_Value\": {\n \"e00\": 0.0,\n + \"e01\": 0.0,\n \"e02\": 0.0,\n \"e03\": 0.0,\n \"e10\": + 0.0,\n \"e11\": 0.0,\n \"e12\": 0.0,\n \"e13\": 0.0,\n + \"e20\": 0.0,\n \"e21\": 0.0,\n \"e22\": 0.0,\n \"e23\": + 0.0,\n \"e30\": 0.0,\n \"e31\": 0.0,\n \"e32\": 0.0,\n + \"e33\": 0.0\n },\n \"m_DefaultValue\": {\n \"e00\": 1.0,\n + \"e01\": 0.0,\n \"e02\": 0.0,\n \"e03\": 0.0,\n \"e10\": + 0.0,\n \"e11\": 1.0,\n \"e12\": 0.0,\n \"e13\": 0.0,\n + \"e20\": 0.0,\n \"e21\": 0.0,\n \"e22\": 1.0,\n \"e23\": + 0.0,\n \"e30\": 0.0,\n \"e31\": 0.0,\n \"e32\": 0.0,\n + \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.CheckerboardNode\",\n + \"m_ObjectId\": \"96473a47eb6e442789508016fc61523c\",\n \"m_Group\": {\n + \"m_Id\": \"\"\n },\n \"m_Name\": \"Checkerboard\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": -697.0,\n \"y\": 455.0,\n \"width\": + 208.0,\n \"height\": 350.00006103515627\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"a85d7810c9aa4d759a0177f309cee614\"\n + },\n {\n \"m_Id\": \"99f3c9ae69ee42968e07a04295d109a7\"\n + },\n {\n \"m_Id\": \"56149ed3b8bc4b40bf00b5cdaedd1253\"\n + },\n {\n \"m_Id\": \"a2043b161d8a4c799ac820f9972093ce\"\n + },\n {\n \"m_Id\": \"7e99753468b74d1e8e4b4b9cd7148bdb\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": + \"98e12cccbfc246d2923ceba66bcc46ff\",\n \"m_Id\": 0,\n \"m_DisplayName\": + \"Metallic\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": + \"Metallic\",\n \"m_StageCapability\": 2,\n \"m_Value\": 0.0,\n \"m_DefaultValue\": + 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.ColorRGBMaterialSlot\",\n \"m_ObjectId\": \"99f3c9ae69ee42968e07a04295d109a7\",\n + \"m_Id\": 1,\n \"m_DisplayName\": \"Color A\",\n \"m_SlotType\": 0,\n + \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"ColorA\",\n \"m_StageCapability\": + 3,\n \"m_Value\": {\n \"x\": 0.20000000298023225,\n \"y\": 0.20000000298023225,\n + \"z\": 0.20000000298023225\n },\n \"m_DefaultValue\": {\n \"x\": + 0.20000000298023225,\n \"y\": 0.20000000298023225,\n \"z\": 0.20000000298023225\n + },\n \"m_Labels\": [],\n \"m_ColorMode\": 0,\n \"m_DefaultColor\": {\n + \"r\": 0.20000000298023225,\n \"g\": 0.20000000298023225,\n \"b\": + 0.20000000298023225,\n \"a\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 3,\n \"m_Type\": \"UnityEditor.ShaderGraph.Internal.ColorShaderProperty\",\n + \"m_ObjectId\": \"9c2b866edc8d44c2bbfbdce463ada26b\",\n \"m_Guid\": {\n + \"m_GuidSerialized\": \"69c22df7-7ec3-4322-819b-043909d86cd4\"\n },\n \"m_Name\": + \"EmissionColor\",\n \"m_DefaultRefNameVersion\": 1,\n \"m_RefNameGeneratedByDisplayName\": + \"EmissionColor\",\n \"m_DefaultReferenceName\": \"_EmissionColor\",\n + \"m_OverrideReferenceName\": \"\",\n \"m_GeneratePropertyBlock\": true,\n + \"m_UseCustomSlotLabel\": false,\n \"m_CustomSlotLabel\": \"\",\n \"m_DismissedVersion\": + 0,\n \"m_Precision\": 0,\n \"overrideHLSLDeclaration\": false,\n \"hlslDeclarationOverride\": + 0,\n \"m_Hidden\": false,\n \"m_Value\": {\n \"r\": 1.0,\n + \"g\": 1.0,\n \"b\": 1.0,\n \"a\": 0.0\n },\n \"isMainColor\": + false,\n \"m_ColorMode\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.Vector2MaterialSlot\",\n \"m_ObjectId\": \"a2043b161d8a4c799ac820f9972093ce\",\n + \"m_Id\": 3,\n \"m_DisplayName\": \"Frequency\",\n \"m_SlotType\": 0,\n + \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Frequency\",\n \"m_StageCapability\": + 3,\n \"m_Value\": {\n \"x\": 10.0,\n \"y\": 15.0\n },\n + \"m_DefaultValue\": {\n \"x\": 1.0,\n \"y\": 1.0\n },\n \"m_Labels\": + []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.UVMaterialSlot\",\n + \"m_ObjectId\": \"a85d7810c9aa4d759a0177f309cee614\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"UV\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"UV\",\n \"m_StageCapability\": 3,\n \"m_Value\": + {\n \"x\": 0.0,\n \"y\": 0.0\n },\n \"m_DefaultValue\": {\n + \"x\": 0.0,\n \"y\": 0.0\n },\n \"m_Labels\": [],\n \"m_Channel\": + 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.ColorRGBMaterialSlot\",\n + \"m_ObjectId\": \"a9676ff2f8184fc8ac5746c3611ef93c\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"Emission\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Emission\",\n \"m_StageCapability\": 2,\n \"m_Value\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0\n },\n \"m_Labels\": [],\n \"m_ColorMode\": 1,\n \"m_DefaultColor\": + {\n \"r\": 0.0,\n \"g\": 0.0,\n \"b\": 0.0,\n \"a\": + 1.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.CategoryData\",\n + \"m_ObjectId\": \"b3c08c077c544603a1261e98eaefee1c\",\n \"m_Name\": \"\",\n + \"m_ChildObjectList\": [\n {\n \"m_Id\": \"9c2b866edc8d44c2bbfbdce463ada26b\"\n + }\n ]\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n + \"m_ObjectId\": \"b9bb6f7516f642ac85682bd5a27c4378\",\n \"m_Group\": {\n + \"m_Id\": \"\"\n },\n \"m_Name\": \"VertexDescription.Normal\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\": + 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"05fd35135cc64632927330fbd8f217b2\"\n }\n + ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"VertexDescription.Normal\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"ba1b5c492e664adea1d7be8cf58a0ba3\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"VertexDescription.Position\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"2157cc6adf074255adc7152ca23ef707\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"VertexDescription.Position\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n \"m_ObjectId\": \"bf8a88b5a5ba45e9b5de055969ead565\",\n + \"m_Id\": 0,\n \"m_DisplayName\": \"Normal (Tangent Space)\",\n \"m_SlotType\": + 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"NormalTS\",\n + \"m_StageCapability\": 2,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\": + 0.0,\n \"z\": 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n + \"y\": 0.0,\n \"z\": 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": + 3\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.ColorRGBMaterialSlot\",\n + \"m_ObjectId\": \"c19b971a18ab4226b275dcdedde15328\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"Base Color\",\n \"m_SlotType\": 0,\n \"m_Hidden\": + false,\n \"m_ShaderOutputName\": \"BaseColor\",\n \"m_StageCapability\": + 2,\n \"m_Value\": {\n \"x\": 0.5,\n \"y\": 0.5,\n \"z\": + 0.5\n },\n \"m_DefaultValue\": {\n \"x\": 0.5,\n \"y\": 0.5,\n + \"z\": 0.5\n },\n \"m_Labels\": [],\n \"m_ColorMode\": 0,\n \"m_DefaultColor\": + {\n \"r\": 0.5,\n \"g\": 0.5,\n \"b\": 0.5,\n \"a\": + 1.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.TangentMaterialSlot\",\n + \"m_ObjectId\": \"c303636b50774eeba423fdc824edafcb\",\n \"m_Id\": 0,\n + \"m_DisplayName\": \"Tangent\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n + \"m_ShaderOutputName\": \"Tangent\",\n \"m_StageCapability\": 1,\n \"m_Value\": + {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n + \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": + 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData\",\n + \"m_ObjectId\": \"c7a17405a5eb43bd811615a9797dc7bf\",\n \"m_MaterialNeedsUpdateHash\": + 0,\n \"m_SurfaceType\": 0,\n \"m_RenderingPass\": 1,\n \"m_BlendMode\": + 0,\n \"m_ZTest\": 4,\n \"m_ZWrite\": false,\n \"m_TransparentCullMode\": + 2,\n \"m_OpaqueCullMode\": 2,\n \"m_SortPriority\": 0,\n \"m_AlphaTest\": + false,\n \"m_ExcludeFromTUAndAA\": false,\n \"m_TransparentDepthPrepass\": + false,\n \"m_TransparentDepthPostpass\": false,\n \"m_SupportLodCrossFade\": + false,\n \"m_DoubleSidedMode\": 0,\n \"m_DOTSInstancing\": false,\n + \"m_CustomVelocity\": false,\n \"m_Tessellation\": false,\n \"m_TessellationMode\": + 0,\n \"m_TessellationFactorMinDistance\": 20.0,\n \"m_TessellationFactorMaxDistance\": + 50.0,\n \"m_TessellationFactorTriangleSize\": 100.0,\n \"m_TessellationShapeFactor\": + 0.75,\n \"m_TessellationBackFaceCullEpsilon\": -0.25,\n \"m_TessellationMaxDisplacement\": + 0.009999999776482582,\n \"m_DebugSymbols\": false,\n \"m_Version\": 2,\n + \"inspectorFoldoutMask\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n \"m_ObjectId\": \"de268bd54d9845efb769c98a559fad03\",\n + \"m_Id\": 1,\n \"m_DisplayName\": \"B\",\n \"m_SlotType\": 0,\n \"m_Hidden\": + false,\n \"m_ShaderOutputName\": \"B\",\n \"m_StageCapability\": 3,\n + \"m_Value\": {\n \"e00\": 2.0,\n \"e01\": 2.0,\n \"e02\": + 2.0,\n \"e03\": 2.0,\n \"e10\": 2.0,\n \"e11\": 2.0,\n + \"e12\": 2.0,\n \"e13\": 2.0,\n \"e20\": 2.0,\n \"e21\": + 2.0,\n \"e22\": 2.0,\n \"e23\": 2.0,\n \"e30\": 2.0,\n + \"e31\": 2.0,\n \"e32\": 2.0,\n \"e33\": 2.0\n },\n \"m_DefaultValue\": + {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n + \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\": + 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n + \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\": + 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\": + 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": + \"e5d2cd2a53e7443e8fc83edb6c1d2a8d\",\n \"m_Group\": {\n \"m_Id\": + \"\"\n },\n \"m_Name\": \"SurfaceDescription.Metallic\",\n \"m_DrawState\": + {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": + \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\": + 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n + {\n \"m_Id\": \"98e12cccbfc246d2923ceba66bcc46ff\"\n }\n + ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.Metallic\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": + \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"f73e3e015d994ba7aaf1e73a1cb12573\",\n + \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Alpha\",\n + \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n + \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n + \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": + [\n {\n \"m_Id\": \"2f19d250137c408ba5bf64252635ecdf\"\n + }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": + true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": + {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\": + \"SurfaceDescription.Alpha\"\n}\n\n" + m_AssetMaybeChangedOnDisk: 0 + m_AssetMaybeDeleted: 0 +--- !u!114 &24 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 230, y: 250} + m_MaxSize: {x: 10000, y: 10000} + m_TitleContent: + m_Text: Project + m_Image: {fileID: -5179483145760003458, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Project\u200B" + m_Pos: + serializedVersion: 2 + x: 0 + y: 876 + width: 1111 + height: 470 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_SearchFilter: + m_NameFilter: + m_ClassNames: [] + m_AssetLabels: [] + m_AssetBundleNames: [] + m_ReferencingInstanceIDs: + m_SceneHandles: + m_ShowAllHits: 0 + m_SkipHidden: 0 + m_SearchArea: 1 + m_Folders: + - Assets + m_Globs: [] + m_ProductIds: + m_AnyWithAssetOrigin: 0 + m_OriginalText: + m_ImportLogFlags: 0 + m_FilterByTypeIntersection: 0 + m_ViewMode: 1 + m_StartGridSize: 64 + m_LastFolders: + - Assets/_MainAssets/Models + m_LastFoldersGridSize: -1 + m_LastProjectPath: C:\Users\emil2\CourseProjectFPS + m_LockTracker: + m_IsLocked: 1 + m_FolderTreeState: + scrollPos: {x: 0, y: 79} + m_SelectedIDs: 1abd0000 + m_LastClickedID: 48410 + m_ExpandedIDs: 000000007aa90000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_TrimLeadingAndTrailingWhitespace: 0 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_AssetTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: + m_LastClickedID: 0 + m_ExpandedIDs: 000000007aa90000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_TrimLeadingAndTrailingWhitespace: 0 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_ListAreaState: + m_SelectedInstanceIDs: 00030100 + m_LastClickedInstanceID: 66304 + m_HadKeyboardFocusLastEvent: 1 + m_ExpandedInstanceIDs: c62300006ec80000e6cb0000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_TrimLeadingAndTrailingWhitespace: 0 + m_ClientGUIView: {fileID: 12} + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_NewAssetIndexInList: -1 + m_ScrollPosition: {x: 0, y: 0} + m_GridSize: 64 + m_SkipHiddenPackages: 0 + m_DirectoriesAreaWidth: 207 +--- !u!114 &25 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12003, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 100, y: 100} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Console + m_Image: {fileID: -4950941429401207979, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Console\u200B" + m_Pos: + serializedVersion: 2 + x: 0 + y: 24 + width: 707.8 + height: 147.59998 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 +--- !u!114 &26 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 12071, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 50, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Animation + m_Image: {fileID: -3237396543322336831, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Animation\u200B" + m_Pos: + serializedVersion: 2 + x: 0 + y: 622.4 + width: 707.8 + height: 147.59998 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_LockTracker: + m_IsLocked: 0 + m_LastSelectedObjectID: 52378 +--- !u!114 &27 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 230, y: 250} + m_MaxSize: {x: 10000, y: 10000} + m_TitleContent: + m_Text: Project + m_Image: {fileID: -5179483145760003458, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Project\u200B" + m_Pos: + serializedVersion: 2 + x: 709.8 + y: 24 + width: 472.39996 + height: 147.59998 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_SearchFilter: + m_NameFilter: + m_ClassNames: [] + m_AssetLabels: [] + m_AssetBundleNames: [] + m_ReferencingInstanceIDs: + m_SceneHandles: + m_ShowAllHits: 0 + m_SkipHidden: 0 + m_SearchArea: 1 + m_Folders: + - Assets + m_Globs: [] + m_ProductIds: + m_AnyWithAssetOrigin: 0 + m_OriginalText: + m_ImportLogFlags: 0 + m_FilterByTypeIntersection: 0 + m_ViewMode: 1 + m_StartGridSize: 16 + m_LastFolders: + - Assets + m_LastFoldersGridSize: -1 + m_LastProjectPath: C:\Users\emil2\No Time To Rest + m_LockTracker: + m_IsLocked: 1 + m_FolderTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: f4a50000 + m_LastClickedID: 42484 + m_ExpandedIDs: 000000007aa90000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_TrimLeadingAndTrailingWhitespace: 0 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_AssetTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: + m_LastClickedID: 0 + m_ExpandedIDs: 000000007aa90000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_TrimLeadingAndTrailingWhitespace: 0 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_ListAreaState: + m_SelectedInstanceIDs: + m_LastClickedInstanceID: 0 + m_HadKeyboardFocusLastEvent: 0 + m_ExpandedInstanceIDs: + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_TrimLeadingAndTrailingWhitespace: 0 + m_ClientGUIView: {fileID: 13} + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_NewAssetIndexInList: -1 + m_ScrollPosition: {x: 0, y: 0} + m_GridSize: 16 + m_SkipHiddenPackages: 0 + m_DirectoriesAreaWidth: 119 +--- !u!114 &28 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Inspector + m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Inspector\u200B" + m_Pos: + serializedVersion: 2 + x: 1331.2001 + y: 79.200005 + width: 203.80005 + height: 690.8 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_ObjectsLockedBeforeSerialization: [] + m_InstanceIDsLockedBeforeSerialization: + m_PreviewResizer: + m_CachedPref: 160 + m_ControlHash: -371814159 + m_PrefName: Preview_InspectorPreview + m_LastInspectedObjectInstanceID: -1 + m_LastVerticalScrollValue: 0 + m_GlobalObjectId: + m_InspectorMode: 0 + m_LockTracker: + m_IsLocked: 0 + m_PreviewWindow: {fileID: 0} +--- !u!114 &29 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Inspector + m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Inspector\u200B" + m_Pos: + serializedVersion: 2 + x: 1857 + y: 79 + width: 702 + height: 1267 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_ObjectsLockedBeforeSerialization: [] + m_InstanceIDsLockedBeforeSerialization: + m_PreviewResizer: + m_CachedPref: 151 + m_ControlHash: 1412526313 + m_PrefName: Preview_InspectorPreview + m_LastInspectedObjectInstanceID: -6786 + m_LastVerticalScrollValue: 0 + m_GlobalObjectId: + m_InspectorMode: 0 + m_LockTracker: + m_IsLocked: 0 + m_PreviewWindow: {fileID: 0} diff --git a/UserSettings/Search.index b/UserSettings/Search.index new file mode 100644 index 0000000..af3867a --- /dev/null +++ b/UserSettings/Search.index @@ -0,0 +1,13 @@ +{ + "name": "Assets", + "roots": ["Assets"], + "includes": [], + "excludes": ["Assets/Temp/", "Assets/External/"], + "options": { + "types": true, + "properties": true, + "extended": false, + "dependencies": true + }, + "baseScore": 999 +} \ No newline at end of file diff --git a/UserSettings/Search.settings b/UserSettings/Search.settings new file mode 100644 index 0000000..227da8f --- /dev/null +++ b/UserSettings/Search.settings @@ -0,0 +1,81 @@ +trackSelection = true +refreshSearchWindowsInPlayMode = false +pickerAdvancedUI = false +fetchPreview = true +defaultFlags = 0 +keepOpen = true +queryFolder = "Assets" +onBoardingDoNotAskAgain = true +showPackageIndexes = false +showStatusBar = false +scopes = { +} +providers = { + asset = { + active = true + priority = 25 + defaultAction = null + } + scene = { + active = true + priority = 50 + defaultAction = null + } + adb = { + active = false + priority = 2500 + defaultAction = null + } + presets_provider = { + active = false + priority = -10 + defaultAction = null + } + find = { + active = true + priority = 25 + defaultAction = null + } + packages = { + active = false + priority = 90 + defaultAction = null + } + performance = { + active = false + priority = 100 + defaultAction = null + } + profilermarkers = { + active = false + priority = 100 + defaultAction = null + } + store = { + active = false + priority = 100 + defaultAction = null + } + log = { + active = false + priority = 210 + defaultAction = null + } +} +objectSelectors = { +} +recentSearches = [ +] +searchItemFavorites = [ +] +savedSearchesSortOrder = 0 +showSavedSearchPanel = false +hideTabs = false +expandedQueries = [ +] +queryBuilder = true +ignoredProperties = "id;name;classname;imagecontentshash" +helperWidgetCurrentArea = "all" +disabledIndexers = "" +minIndexVariations = 2 +findProviderIndexHelper = true \ No newline at end of file