├── .gitattributes ├── .github └── FUNDING.yml ├── Assets ├── Textures │ ├── CubeShader.png │ ├── Cube Default.png │ ├── CubeShader.png.meta │ └── Cube Default.png.meta ├── Models │ ├── Cube.mtl.meta │ ├── Cube Material.mat.meta │ ├── Cube Material W shader.mat.meta │ ├── Cube.mtl │ ├── Cube.obj │ ├── Cube Material.mat │ ├── Cube Material W shader.mat │ └── Cube.obj.meta ├── Models.meta ├── Scenes.meta ├── Scenes │ ├── SampleScene.unity.meta │ └── SampleScene.unity ├── Shaders.meta ├── Animation.meta ├── Textures.meta ├── Animation │ └── Cube Animation.anim.meta └── Shaders │ ├── 3DSmoothPixelShader.shader.meta │ └── 3DSmoothPixelShader.shader ├── ProjectSettings ├── ProjectVersion.txt ├── ClusterInputManager.asset ├── PresetManager.asset ├── EditorBuildSettings.asset ├── XRSettings.asset ├── VersionControlSettings.asset ├── TimeManager.asset ├── VFXManager.asset ├── AudioManager.asset ├── TagManager.asset ├── UnityConnectSettings.asset ├── EditorSettings.asset ├── PackageManagerSettings.asset ├── DynamicsManager.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset ├── GraphicsSettings.asset ├── SceneTemplateSettings.json ├── InputManager.asset ├── QualitySettings.asset └── ProjectSettings.asset ├── .vsconfig ├── Logs ├── shadercompiler-UnityShaderCompiler.exe0.log ├── Packages-Update.log └── AssetImportWorker0-prev.log ├── .gitignore ├── README.md ├── UserSettings └── EditorUserSettings.asset ├── LICENSE └── Packages ├── manifest.json └── packages-lock.json /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [9D-Tony] 2 | custom:["https://tony-d.itch.io/", "https://app.gumroad.com/tonydemot"] 3 | -------------------------------------------------------------------------------- /Assets/Textures/CubeShader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9D-Tony/3DUnitySmoothPixelFilter/HEAD/Assets/Textures/CubeShader.png -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2020.3.12f1 2 | m_EditorVersionWithRevision: 2020.3.12f1 (b3b2c6512326) 3 | -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "components": [ 4 | "Microsoft.VisualStudio.Workload.ManagedGame" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /Assets/Textures/Cube Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9D-Tony/3DUnitySmoothPixelFilter/HEAD/Assets/Textures/Cube Default.png -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /Assets/Models/Cube.mtl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e5169dc5e6a68d4f90ca44d265b4914 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /Assets/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af2dcd7b5940b3b4692c2c58dfc7c8f5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4df63ab1fc22ccd4eb99d447037c82e4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fc0d4010bbf28b4594072e72b8655ab 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c2fc2cd73f2de44996a942f722d02e6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcc2ee9e81d082f469292a11c6663cf1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d14c2187503614a45b905f2ba7b20825 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | m_configObjects: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /Logs/shadercompiler-UnityShaderCompiler.exe0.log: -------------------------------------------------------------------------------- 1 | Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.12f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.12f1/Editor/Data/PlaybackEngines' 2 | Cmd: initializeCompiler 3 | 4 | -------------------------------------------------------------------------------- /Assets/Models/Cube Material.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42aa393ea772abc41bff1ca9c17f7e46 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Animation/Cube Animation.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23f241e3645627542ba867e2643eb3bf 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Models/Cube Material W shader.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80200ab3441e1e04b8950c70abcadb05 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Assets/Shaders/3DSmoothPixelShader.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c8d921643657124db9fbeb98227fc5b 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | preprocessorOverride: 0 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_CopyBufferShader: {fileID: 0} 8 | m_SortShader: {fileID: 0} 9 | m_StripUpdateShader: {fileID: 0} 10 | m_RenderPipeSettingsPath: 11 | m_FixedTimeStep: 0.016666668 12 | m_MaxDeltaTime: 0.05 13 | -------------------------------------------------------------------------------- /Assets/Models/Cube.mtl: -------------------------------------------------------------------------------- 1 | # Blender MTL File: 'None' 2 | # Material Count: 1 3 | 4 | newmtl Material 5 | Ns 323.999994 6 | Ka 1.000000 1.000000 1.000000 7 | Kd 0.800000 0.800000 0.800000 8 | Ks 0.500000 0.500000 0.500000 9 | Ke 0.000000 0.000000 0.000000 10 | Ni 1.450000 11 | d 1.000000 12 | illum 2 13 | map_Kd C:\\Users\\TonyPC\\Documents\\UnityProjects\\3D Smooth Pixel Filtering\\Assets\\Textures\\Cube.png 14 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Volume: 1 8 | Rolloff Scale: 1 9 | Doppler Factor: 1 10 | Default Speaker Mode: 2 11 | m_SampleRate: 0 12 | m_DSPBufferSize: 1024 13 | m_VirtualVoiceCount: 512 14 | m_RealVoiceCount: 32 15 | m_SpatializerPlugin: 16 | m_AmbisonicDecoderPlugin: 17 | m_DisableAudio: 0 18 | m_VirtualizeEffects: 1 19 | m_RequestedDSPBufferSize: 1024 20 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | [Ll]ibrary/ 2 | [Tt]emp/ 3 | [Oo]bj/ 4 | [Bb]uild/ 5 | [Bb]uilds/ 6 | Assets/AssetStoreTools* 7 | 8 | # Visual Studio cache directory 9 | .vs/ 10 | 11 | # Autogenerated VS/MD/Consulo solution and project files 12 | ExportedObj/ 13 | .consulo/ 14 | *.csproj 15 | *.unityproj 16 | *.sln 17 | *.suo 18 | *.tmp 19 | *.user 20 | *.userprefs 21 | *.pidb 22 | *.booproj 23 | *.svd 24 | *.pdb 25 | *.opendb 26 | *.VC.db 27 | 28 | # Unity3D generated meta files 29 | *.pidb.meta 30 | *.pdb.meta 31 | 32 | # Unity3D Generated File On Crash Reports 33 | sysinfo.txt 34 | 35 | # Builds 36 | *.apk 37 | *.unitypackage 38 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 3DUnitySmoothPixelFilter 2 | A 3D unity example scene of [CptPotato's](https://github.com/CptPotato/GodotThings/tree/master/SmoothPixelFiltering) 3D smooth pixel filtering, [same algorithm as 2D](https://github.com/9D-Tony/UnitySmoothPixelFiltering) same algorithm as 2D but now in the standard shader so 3D objects are shaded correctly. 3 | 4 | To get the filter on your 3D objects set the filter to bilinear filtering on the imported textures under the advanced tab, import your 3D objects and apply the 3DSmoothPixel shader to your material. 5 | 6 | [Video example](https://www.youtube.com/watch?v=Zxk35wZu4oE) 7 | 8 | 9 | an Example: 10 | 11 | ![Example of the 3D effect](https://i.imgur.com/3g6QKQX.png) 12 | -------------------------------------------------------------------------------- /UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!162 &1 4 | EditorUserSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 4 7 | m_ConfigSettings: 8 | RecentlyUsedScenePath-0: 9 | value: 22424703114646680e0b0227036c6c111b07142f1f2b233e2867083debf42d 10 | flags: 0 11 | vcSharedLogLevel: 12 | value: 0d5e400f0650 13 | flags: 0 14 | m_VCAutomaticAdd: 1 15 | m_VCDebugCom: 0 16 | m_VCDebugCmd: 0 17 | m_VCDebugOut: 0 18 | m_SemanticMergeMode: 2 19 | m_VCShowFailedCheckout: 1 20 | m_VCOverwriteFailedCheckoutAssets: 1 21 | m_VCProjectOverlayIcons: 1 22 | m_VCHierarchyOverlayIcons: 1 23 | m_VCOtherOverlayIcons: 1 24 | m_VCAllowAsyncUpdate: 1 25 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 1 7 | m_Enabled: 0 8 | m_TestMode: 0 9 | m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events 10 | m_EventUrl: https://cdp.cloud.unity3d.com/v1/events 11 | m_ConfigUrl: https://config.uca.cloud.unity3d.com 12 | m_DashboardUrl: https://dashboard.unity3d.com 13 | m_TestInitMode: 0 14 | CrashReportingSettings: 15 | m_EventUrl: https://perf-events.cloud.unity3d.com 16 | m_Enabled: 0 17 | m_LogBufferSize: 10 18 | m_CaptureEditorExceptions: 1 19 | UnityPurchasingSettings: 20 | m_Enabled: 0 21 | m_TestMode: 0 22 | UnityAnalyticsSettings: 23 | m_Enabled: 0 24 | m_TestMode: 0 25 | m_InitializeOnStartup: 1 26 | UnityAdsSettings: 27 | m_Enabled: 0 28 | m_InitializeOnStartup: 1 29 | m_TestMode: 0 30 | m_IosGameId: 31 | m_AndroidGameId: 32 | m_GameIds: {} 33 | m_GameId: 34 | PerformanceReportingSettings: 35 | m_Enabled: 0 36 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 11 7 | m_ExternalVersionControlSupport: Visible Meta Files 8 | m_SerializationMode: 2 9 | m_LineEndingsForNewScripts: 0 10 | m_DefaultBehaviorMode: 0 11 | m_PrefabRegularEnvironment: {fileID: 0} 12 | m_PrefabUIEnvironment: {fileID: 0} 13 | m_SpritePackerMode: 0 14 | m_SpritePackerPaddingPower: 1 15 | m_EtcTextureCompressorBehavior: 1 16 | m_EtcTextureFastCompressor: 1 17 | m_EtcTextureNormalCompressor: 2 18 | m_EtcTextureBestCompressor: 4 19 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp;asmref 20 | m_ProjectGenerationRootNamespace: 21 | m_CollabEditorSettings: 22 | inProgressEnabled: 1 23 | m_EnableTextureStreamingInEditMode: 1 24 | m_EnableTextureStreamingInPlayMode: 1 25 | m_AsyncShaderCompilation: 1 26 | m_EnterPlayModeOptionsEnabled: 0 27 | m_EnterPlayModeOptions: 3 28 | m_ShowLightmapResolutionOverlay: 1 29 | m_UseLegacyProbeSampleCount: 0 30 | m_SerializeInlineMappingsOnOneLine: 1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Tony 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | m_EnablePreviewPackages: 0 16 | m_EnablePackageDependencies: 0 17 | m_AdvancedSettingsExpanded: 1 18 | m_ScopedRegistriesSettingsExpanded: 1 19 | oneTimeWarningShown: 0 20 | m_Registries: 21 | - m_Id: main 22 | m_Name: 23 | m_Url: https://packages.unity.com 24 | m_Scopes: [] 25 | m_IsDefault: 1 26 | m_Capabilities: 7 27 | m_UserSelectedRegistryName: 28 | m_UserAddingNewScopedRegistry: 0 29 | m_RegistryInfoDraft: 30 | m_ErrorMessage: 31 | m_Original: 32 | m_Id: 33 | m_Name: 34 | m_Url: 35 | m_Scopes: [] 36 | m_IsDefault: 0 37 | m_Capabilities: 0 38 | m_Modified: 0 39 | m_Name: 40 | m_Url: 41 | m_Scopes: 42 | - 43 | m_SelectedScopeIndex: 0 44 | -------------------------------------------------------------------------------- /Assets/Models/Cube.obj: -------------------------------------------------------------------------------- 1 | # Blender v2.92.0 OBJ File: '' 2 | # www.blender.org 3 | mtllib Cube.mtl 4 | o Cube 5 | v 1.000000 1.000000 -1.000000 6 | v 1.000000 -1.000000 -1.000000 7 | v 1.000000 1.000000 1.000000 8 | v 1.000000 -1.000000 1.000000 9 | v -1.000000 1.000000 -1.000000 10 | v -1.000000 -1.000000 -1.000000 11 | v -1.000000 1.000000 1.000000 12 | v -1.000000 -1.000000 1.000000 13 | vt 0.875000 0.500000 14 | vt 0.625000 0.750000 15 | vt 0.625000 0.500000 16 | vt 0.375000 1.000000 17 | vt 0.375000 0.750000 18 | vt 0.625000 0.000000 19 | vt 0.375000 0.250000 20 | vt 0.375000 0.000000 21 | vt 0.375000 0.500000 22 | vt 0.125000 0.750000 23 | vt 0.125000 0.500000 24 | vt 0.625000 0.250000 25 | vt 0.875000 0.750000 26 | vt 0.625000 1.000000 27 | vn 0.0000 1.0000 0.0000 28 | vn 0.0000 0.0000 1.0000 29 | vn -1.0000 0.0000 0.0000 30 | vn 0.0000 -1.0000 0.0000 31 | vn 1.0000 0.0000 0.0000 32 | vn 0.0000 0.0000 -1.0000 33 | usemtl Material 34 | s off 35 | f 5/1/1 3/2/1 1/3/1 36 | f 3/2/2 8/4/2 4/5/2 37 | f 7/6/3 6/7/3 8/8/3 38 | f 2/9/4 8/10/4 6/11/4 39 | f 1/3/5 4/5/5 2/9/5 40 | f 5/12/6 2/9/6 6/7/6 41 | f 5/1/1 7/13/1 3/2/1 42 | f 3/2/2 7/14/2 8/4/2 43 | f 7/6/3 5/12/3 6/7/3 44 | f 2/9/4 4/5/4 8/10/4 45 | f 1/3/5 3/2/5 4/5/5 46 | f 5/12/6 1/3/6 2/9/6 47 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 11 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_ClothInterCollisionDistance: 0 18 | m_ClothInterCollisionStiffness: 0 19 | m_ContactsGeneration: 1 20 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 21 | m_AutoSimulation: 1 22 | m_AutoSyncTransforms: 0 23 | m_ReuseCollisionCallbacks: 1 24 | m_ClothInterCollisionSettingsToggle: 0 25 | m_ContactPairsMode: 0 26 | m_BroadphaseType: 0 27 | m_WorldBounds: 28 | m_Center: {x: 0, y: 0, z: 0} 29 | m_Extent: {x: 250, y: 250, z: 250} 30 | m_WorldSubdivisions: 8 31 | m_FrictionType: 0 32 | m_EnableEnhancedDeterminism: 0 33 | m_EnableUnifiedHeightmaps: 1 34 | m_DefaultMaxAngluarSpeed: 7 35 | -------------------------------------------------------------------------------- /Logs/Packages-Update.log: -------------------------------------------------------------------------------- 1 | 2 | === Mon Nov 29 16:15:37 2021 3 | 4 | Packages were changed. 5 | Update Mode: mergeDefaultDependencies 6 | 7 | The following packages were added: 8 | com.unity.collab-proxy@1.5.7 9 | com.unity.ide.rider@2.0.7 10 | com.unity.ide.visualstudio@2.0.8 11 | com.unity.ide.vscode@1.2.3 12 | com.unity.modules.ai@1.0.0 13 | com.unity.modules.androidjni@1.0.0 14 | com.unity.modules.animation@1.0.0 15 | com.unity.modules.assetbundle@1.0.0 16 | com.unity.modules.audio@1.0.0 17 | com.unity.modules.cloth@1.0.0 18 | com.unity.modules.director@1.0.0 19 | com.unity.modules.imageconversion@1.0.0 20 | com.unity.modules.imgui@1.0.0 21 | com.unity.modules.jsonserialize@1.0.0 22 | com.unity.modules.particlesystem@1.0.0 23 | com.unity.modules.physics@1.0.0 24 | com.unity.modules.physics2d@1.0.0 25 | com.unity.modules.screencapture@1.0.0 26 | com.unity.modules.terrain@1.0.0 27 | com.unity.modules.terrainphysics@1.0.0 28 | com.unity.modules.tilemap@1.0.0 29 | com.unity.modules.ui@1.0.0 30 | com.unity.modules.uielements@1.0.0 31 | com.unity.modules.umbra@1.0.0 32 | com.unity.modules.unityanalytics@1.0.0 33 | com.unity.modules.unitywebrequest@1.0.0 34 | com.unity.modules.unitywebrequestassetbundle@1.0.0 35 | com.unity.modules.unitywebrequestaudio@1.0.0 36 | com.unity.modules.unitywebrequesttexture@1.0.0 37 | com.unity.modules.unitywebrequestwww@1.0.0 38 | com.unity.modules.vehicles@1.0.0 39 | com.unity.modules.video@1.0.0 40 | com.unity.modules.vr@1.0.0 41 | com.unity.modules.wind@1.0.0 42 | com.unity.modules.xr@1.0.0 43 | com.unity.test-framework@1.1.24 44 | com.unity.textmeshpro@3.0.6 45 | com.unity.timeline@1.4.8 46 | com.unity.ugui@1.0.0 47 | -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshProjectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | areas: 8 | - name: Walkable 9 | cost: 1 10 | - name: Not Walkable 11 | cost: 1 12 | - name: Jump 13 | cost: 2 14 | - name: 15 | cost: 1 16 | - name: 17 | cost: 1 18 | - name: 19 | cost: 1 20 | - name: 21 | cost: 1 22 | - name: 23 | cost: 1 24 | - name: 25 | cost: 1 26 | - name: 27 | cost: 1 28 | - name: 29 | cost: 1 30 | - name: 31 | cost: 1 32 | - name: 33 | cost: 1 34 | - name: 35 | cost: 1 36 | - name: 37 | cost: 1 38 | - name: 39 | cost: 1 40 | - name: 41 | cost: 1 42 | - name: 43 | cost: 1 44 | - name: 45 | cost: 1 46 | - name: 47 | cost: 1 48 | - name: 49 | cost: 1 50 | - name: 51 | cost: 1 52 | - name: 53 | cost: 1 54 | - name: 55 | cost: 1 56 | - name: 57 | cost: 1 58 | - name: 59 | cost: 1 60 | - name: 61 | cost: 1 62 | - name: 63 | cost: 1 64 | - name: 65 | cost: 1 66 | - name: 67 | cost: 1 68 | - name: 69 | cost: 1 70 | - name: 71 | cost: 1 72 | m_LastAgentTypeID: -887442657 73 | m_Settings: 74 | - serializedVersion: 2 75 | agentTypeID: 0 76 | agentRadius: 0.5 77 | agentHeight: 2 78 | agentSlope: 45 79 | agentClimb: 0.75 80 | ledgeDropHeight: 0 81 | maxJumpAcrossDistance: 0 82 | minRegionArea: 2 83 | manualCellSize: 0 84 | cellSize: 0.16666667 85 | manualTileSize: 0 86 | tileSize: 256 87 | accuratePlacement: 0 88 | debug: 89 | m_Flags: 0 90 | m_SettingNames: 91 | - Humanoid 92 | -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.collab-proxy": "1.5.7", 4 | "com.unity.ide.rider": "2.0.7", 5 | "com.unity.ide.visualstudio": "2.0.8", 6 | "com.unity.ide.vscode": "1.2.3", 7 | "com.unity.test-framework": "1.1.24", 8 | "com.unity.textmeshpro": "3.0.6", 9 | "com.unity.timeline": "1.4.8", 10 | "com.unity.ugui": "1.0.0", 11 | "com.unity.modules.ai": "1.0.0", 12 | "com.unity.modules.androidjni": "1.0.0", 13 | "com.unity.modules.animation": "1.0.0", 14 | "com.unity.modules.assetbundle": "1.0.0", 15 | "com.unity.modules.audio": "1.0.0", 16 | "com.unity.modules.cloth": "1.0.0", 17 | "com.unity.modules.director": "1.0.0", 18 | "com.unity.modules.imageconversion": "1.0.0", 19 | "com.unity.modules.imgui": "1.0.0", 20 | "com.unity.modules.jsonserialize": "1.0.0", 21 | "com.unity.modules.particlesystem": "1.0.0", 22 | "com.unity.modules.physics": "1.0.0", 23 | "com.unity.modules.physics2d": "1.0.0", 24 | "com.unity.modules.screencapture": "1.0.0", 25 | "com.unity.modules.terrain": "1.0.0", 26 | "com.unity.modules.terrainphysics": "1.0.0", 27 | "com.unity.modules.tilemap": "1.0.0", 28 | "com.unity.modules.ui": "1.0.0", 29 | "com.unity.modules.uielements": "1.0.0", 30 | "com.unity.modules.umbra": "1.0.0", 31 | "com.unity.modules.unityanalytics": "1.0.0", 32 | "com.unity.modules.unitywebrequest": "1.0.0", 33 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 34 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 35 | "com.unity.modules.unitywebrequesttexture": "1.0.0", 36 | "com.unity.modules.unitywebrequestwww": "1.0.0", 37 | "com.unity.modules.vehicles": "1.0.0", 38 | "com.unity.modules.video": "1.0.0", 39 | "com.unity.modules.vr": "1.0.0", 40 | "com.unity.modules.wind": "1.0.0", 41 | "com.unity.modules.xr": "1.0.0" 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!19 &1 4 | Physics2DSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 4 7 | m_Gravity: {x: 0, y: -9.81} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_VelocityIterations: 8 10 | m_PositionIterations: 3 11 | m_VelocityThreshold: 1 12 | m_MaxLinearCorrection: 0.2 13 | m_MaxAngularCorrection: 8 14 | m_MaxTranslationSpeed: 100 15 | m_MaxRotationSpeed: 360 16 | m_BaumgarteScale: 0.2 17 | m_BaumgarteTimeOfImpactScale: 0.75 18 | m_TimeToSleep: 0.5 19 | m_LinearSleepTolerance: 0.01 20 | m_AngularSleepTolerance: 2 21 | m_DefaultContactOffset: 0.01 22 | m_JobOptions: 23 | serializedVersion: 2 24 | useMultithreading: 0 25 | useConsistencySorting: 0 26 | m_InterpolationPosesPerJob: 100 27 | m_NewContactsPerJob: 30 28 | m_CollideContactsPerJob: 100 29 | m_ClearFlagsPerJob: 200 30 | m_ClearBodyForcesPerJob: 200 31 | m_SyncDiscreteFixturesPerJob: 50 32 | m_SyncContinuousFixturesPerJob: 50 33 | m_FindNearestContactsPerJob: 100 34 | m_UpdateTriggerContactsPerJob: 100 35 | m_IslandSolverCostThreshold: 100 36 | m_IslandSolverBodyCostScale: 1 37 | m_IslandSolverContactCostScale: 10 38 | m_IslandSolverJointCostScale: 10 39 | m_IslandSolverBodiesPerJob: 50 40 | m_IslandSolverContactsPerJob: 50 41 | m_AutoSimulation: 1 42 | m_QueriesHitTriggers: 1 43 | m_QueriesStartInColliders: 1 44 | m_CallbacksOnDisable: 1 45 | m_ReuseCollisionCallbacks: 1 46 | m_AutoSyncTransforms: 0 47 | m_AlwaysShowColliders: 0 48 | m_ShowColliderSleep: 1 49 | m_ShowColliderContacts: 0 50 | m_ShowColliderAABB: 0 51 | m_ContactArrowScale: 0.2 52 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} 53 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} 54 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} 55 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} 56 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 57 | -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!30 &1 4 | GraphicsSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 13 7 | m_Deferred: 8 | m_Mode: 1 9 | m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} 10 | m_DeferredReflections: 11 | m_Mode: 1 12 | m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} 13 | m_ScreenSpaceShadows: 14 | m_Mode: 1 15 | m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} 16 | m_LegacyDeferred: 17 | m_Mode: 1 18 | m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} 19 | m_DepthNormals: 20 | m_Mode: 1 21 | m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} 22 | m_MotionVectors: 23 | m_Mode: 1 24 | m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} 25 | m_LightHalo: 26 | m_Mode: 1 27 | m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} 28 | m_LensFlare: 29 | m_Mode: 1 30 | m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} 31 | m_AlwaysIncludedShaders: 32 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} 33 | - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} 34 | - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} 35 | - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} 36 | - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} 37 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} 38 | m_PreloadedShaders: [] 39 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, 40 | type: 0} 41 | m_CustomRenderPipeline: {fileID: 0} 42 | m_TransparencySortMode: 0 43 | m_TransparencySortAxis: {x: 0, y: 0, z: 1} 44 | m_DefaultRenderingPath: 1 45 | m_DefaultMobileRenderingPath: 1 46 | m_TierSettings: [] 47 | m_LightmapStripping: 0 48 | m_FogStripping: 0 49 | m_InstancingStripping: 0 50 | m_LightmapKeepPlain: 1 51 | m_LightmapKeepDirCombined: 1 52 | m_LightmapKeepDynamicPlain: 1 53 | m_LightmapKeepDynamicDirCombined: 1 54 | m_LightmapKeepShadowMask: 1 55 | m_LightmapKeepSubtractive: 1 56 | m_FogKeepLinear: 1 57 | m_FogKeepExp: 1 58 | m_FogKeepExp2: 1 59 | m_AlbedoSwatchInfos: [] 60 | m_LightsUseLinearIntensity: 0 61 | m_LightsUseColorTemperature: 0 62 | m_LogWhenShaderIsCompiled: 0 63 | m_AllowEnlightenSupportForUpgradedProject: 0 64 | -------------------------------------------------------------------------------- /Assets/Textures/CubeShader.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51bb37a2dc47c434db4ab87f8d3cb4f9 3 | TextureImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 11 7 | mipmaps: 8 | mipMapMode: 0 9 | enableMipMap: 1 10 | sRGBTexture: 1 11 | linearTexture: 0 12 | fadeOut: 0 13 | borderMipMap: 0 14 | mipMapsPreserveCoverage: 0 15 | alphaTestReferenceValue: 0.5 16 | mipMapFadeDistanceStart: 1 17 | mipMapFadeDistanceEnd: 3 18 | bumpmap: 19 | convertToNormalMap: 0 20 | externalNormalMap: 0 21 | heightScale: 0.25 22 | normalMapFilter: 0 23 | isReadable: 0 24 | streamingMipmaps: 0 25 | streamingMipmapsPriority: 0 26 | vTOnly: 0 27 | grayScaleToAlpha: 0 28 | generateCubemap: 6 29 | cubemapConvolution: 0 30 | seamlessCubemap: 0 31 | textureFormat: 1 32 | maxTextureSize: 2048 33 | textureSettings: 34 | serializedVersion: 2 35 | filterMode: 1 36 | aniso: 1 37 | mipBias: 0 38 | wrapU: 0 39 | wrapV: 0 40 | wrapW: 0 41 | nPOTScale: 1 42 | lightmap: 0 43 | compressionQuality: 50 44 | spriteMode: 0 45 | spriteExtrude: 1 46 | spriteMeshType: 1 47 | alignment: 0 48 | spritePivot: {x: 0.5, y: 0.5} 49 | spritePixelsToUnits: 100 50 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 51 | spriteGenerateFallbackPhysicsShape: 1 52 | alphaUsage: 1 53 | alphaIsTransparency: 0 54 | spriteTessellationDetail: -1 55 | textureType: 0 56 | textureShape: 1 57 | singleChannelComponent: 0 58 | flipbookRows: 1 59 | flipbookColumns: 1 60 | maxTextureSizeSet: 0 61 | compressionQualitySet: 0 62 | textureFormatSet: 0 63 | ignorePngGamma: 0 64 | applyGammaDecoding: 0 65 | platformSettings: 66 | - serializedVersion: 3 67 | buildTarget: DefaultTexturePlatform 68 | maxTextureSize: 2048 69 | resizeAlgorithm: 0 70 | textureFormat: -1 71 | textureCompression: 1 72 | compressionQuality: 50 73 | crunchedCompression: 0 74 | allowsAlphaSplitting: 0 75 | overridden: 0 76 | androidETC2FallbackOverride: 0 77 | forceMaximumCompressionQuality_BC6H_BC7: 0 78 | spriteSheet: 79 | serializedVersion: 2 80 | sprites: [] 81 | outline: [] 82 | physicsShape: [] 83 | bones: [] 84 | spriteID: 85 | internalID: 0 86 | vertices: [] 87 | indices: 88 | edges: [] 89 | weights: [] 90 | secondaryTextures: [] 91 | spritePackingTag: 92 | pSDRemoveMatte: 0 93 | pSDShowRemoveMatteOption: 0 94 | userData: 95 | assetBundleName: 96 | assetBundleVariant: 97 | -------------------------------------------------------------------------------- /Assets/Models/Cube Material.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_CorrespondingSourceObject: {fileID: 0} 8 | m_PrefabInstance: {fileID: 0} 9 | m_PrefabAsset: {fileID: 0} 10 | m_Name: Cube Material 11 | m_Shader: {fileID: 4800000, guid: 6c8d921643657124db9fbeb98227fc5b, type: 3} 12 | m_ShaderKeywords: 13 | m_LightmapFlags: 4 14 | m_EnableInstancingVariants: 0 15 | m_DoubleSidedGI: 0 16 | m_CustomRenderQueue: -1 17 | stringTagMap: {} 18 | disabledShaderPasses: [] 19 | m_SavedProperties: 20 | serializedVersion: 3 21 | m_TexEnvs: 22 | - MainTex: 23 | m_Texture: {fileID: 2800000, guid: 3a28e0e35594433439c3e4d47461aca9, type: 3} 24 | m_Scale: {x: 1, y: 1} 25 | m_Offset: {x: 0, y: 0} 26 | - _BumpMap: 27 | m_Texture: {fileID: 0} 28 | m_Scale: {x: 1, y: 1} 29 | m_Offset: {x: 0, y: 0} 30 | - _DetailAlbedoMap: 31 | m_Texture: {fileID: 0} 32 | m_Scale: {x: 1, y: 1} 33 | m_Offset: {x: 0, y: 0} 34 | - _DetailMask: 35 | m_Texture: {fileID: 0} 36 | m_Scale: {x: 1, y: 1} 37 | m_Offset: {x: 0, y: 0} 38 | - _DetailNormalMap: 39 | m_Texture: {fileID: 0} 40 | m_Scale: {x: 1, y: 1} 41 | m_Offset: {x: 0, y: 0} 42 | - _EmissionMap: 43 | m_Texture: {fileID: 0} 44 | m_Scale: {x: 1, y: 1} 45 | m_Offset: {x: 0, y: 0} 46 | - _MainTex: 47 | m_Texture: {fileID: 2800000, guid: 2cea060f0d0a1804787e80286a5f577b, type: 3} 48 | m_Scale: {x: 1, y: 1} 49 | m_Offset: {x: 0, y: 0} 50 | - _MetallicGlossMap: 51 | m_Texture: {fileID: 0} 52 | m_Scale: {x: 1, y: 1} 53 | m_Offset: {x: 0, y: 0} 54 | - _OcclusionMap: 55 | m_Texture: {fileID: 0} 56 | m_Scale: {x: 1, y: 1} 57 | m_Offset: {x: 0, y: 0} 58 | - _ParallaxMap: 59 | m_Texture: {fileID: 0} 60 | m_Scale: {x: 1, y: 1} 61 | m_Offset: {x: 0, y: 0} 62 | m_Floats: 63 | - _BlurAmount: 0.055 64 | - _BumpScale: 1 65 | - _Cutoff: 0.5 66 | - _DetailNormalMapScale: 1 67 | - _DstBlend: 0 68 | - _GlossMapScale: 1 69 | - _Glossiness: 0.5 70 | - _GlossyReflections: 1 71 | - _Metallic: 0 72 | - _Mode: 0 73 | - _OcclusionStrength: 1 74 | - _Parallax: 0.02 75 | - _SmoothnessTextureChannel: 0 76 | - _SpecularHighlights: 1 77 | - _SrcBlend: 1 78 | - _UVSec: 0 79 | - _ZWrite: 1 80 | m_Colors: 81 | - _Color: {r: 1, g: 1, b: 1, a: 1} 82 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 83 | m_BuildTextureStacks: [] 84 | -------------------------------------------------------------------------------- /Assets/Models/Cube Material W shader.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_CorrespondingSourceObject: {fileID: 0} 8 | m_PrefabInstance: {fileID: 0} 9 | m_PrefabAsset: {fileID: 0} 10 | m_Name: Cube Material W shader 11 | m_Shader: {fileID: 4800000, guid: 6c8d921643657124db9fbeb98227fc5b, type: 3} 12 | m_ShaderKeywords: 13 | m_LightmapFlags: 4 14 | m_EnableInstancingVariants: 0 15 | m_DoubleSidedGI: 0 16 | m_CustomRenderQueue: -1 17 | stringTagMap: {} 18 | disabledShaderPasses: [] 19 | m_SavedProperties: 20 | serializedVersion: 3 21 | m_TexEnvs: 22 | - MainTex: 23 | m_Texture: {fileID: 2800000, guid: 3a28e0e35594433439c3e4d47461aca9, type: 3} 24 | m_Scale: {x: 1, y: 1} 25 | m_Offset: {x: 0, y: 0} 26 | - _BumpMap: 27 | m_Texture: {fileID: 0} 28 | m_Scale: {x: 1, y: 1} 29 | m_Offset: {x: 0, y: 0} 30 | - _DetailAlbedoMap: 31 | m_Texture: {fileID: 0} 32 | m_Scale: {x: 1, y: 1} 33 | m_Offset: {x: 0, y: 0} 34 | - _DetailMask: 35 | m_Texture: {fileID: 0} 36 | m_Scale: {x: 1, y: 1} 37 | m_Offset: {x: 0, y: 0} 38 | - _DetailNormalMap: 39 | m_Texture: {fileID: 0} 40 | m_Scale: {x: 1, y: 1} 41 | m_Offset: {x: 0, y: 0} 42 | - _EmissionMap: 43 | m_Texture: {fileID: 0} 44 | m_Scale: {x: 1, y: 1} 45 | m_Offset: {x: 0, y: 0} 46 | - _MainTex: 47 | m_Texture: {fileID: 2800000, guid: 51bb37a2dc47c434db4ab87f8d3cb4f9, type: 3} 48 | m_Scale: {x: 1, y: 1} 49 | m_Offset: {x: 0, y: 0} 50 | - _MetallicGlossMap: 51 | m_Texture: {fileID: 0} 52 | m_Scale: {x: 1, y: 1} 53 | m_Offset: {x: 0, y: 0} 54 | - _OcclusionMap: 55 | m_Texture: {fileID: 0} 56 | m_Scale: {x: 1, y: 1} 57 | m_Offset: {x: 0, y: 0} 58 | - _ParallaxMap: 59 | m_Texture: {fileID: 0} 60 | m_Scale: {x: 1, y: 1} 61 | m_Offset: {x: 0, y: 0} 62 | m_Floats: 63 | - _BlurAmount: 0.055 64 | - _BumpScale: 1 65 | - _Cutoff: 0.5 66 | - _DetailNormalMapScale: 1 67 | - _DstBlend: 0 68 | - _GlossMapScale: 1 69 | - _Glossiness: 0.5 70 | - _GlossyReflections: 1 71 | - _Metallic: 0 72 | - _Mode: 0 73 | - _OcclusionStrength: 1 74 | - _Parallax: 0.02 75 | - _SmoothnessTextureChannel: 0 76 | - _SpecularHighlights: 1 77 | - _SrcBlend: 1 78 | - _UVSec: 0 79 | - _ZWrite: 1 80 | m_Colors: 81 | - _Color: {r: 1, g: 1, b: 1, a: 1} 82 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 83 | m_BuildTextureStacks: [] 84 | -------------------------------------------------------------------------------- /Assets/Shaders/3DSmoothPixelShader.shader: -------------------------------------------------------------------------------- 1 | Shader "Custom/3DSmoothPixelShader" 2 | { 3 | Properties 4 | { 5 | _Color ("Color", Color) = (1,1,1,1) 6 | _MainTex ("Albedo (RGB)", 2D) = "white" {} 7 | _Glossiness ("Smoothness", Range(0,1)) = 0.5 8 | _Metallic ("Metallic", Range(0,1)) = 0.0 9 | } 10 | SubShader 11 | { 12 | Tags { "RenderType"="Opaque" } 13 | LOD 200 14 | 15 | CGPROGRAM 16 | // Physically based Standard lighting model, and enable shadows on all light types 17 | #pragma surface surf Standard fullforwardshadows 18 | // Use shader model 3.0 target, to get nicer looking lighting 19 | #pragma target 3.0 20 | 21 | sampler2D _MainTex; 22 | float4 _MainTex_TexelSize; 23 | 24 | float4 texturePointSmooth(sampler2D tex, float2 uvs) 25 | { 26 | float2 size; 27 | size.x = _MainTex_TexelSize.z; 28 | size.y = _MainTex_TexelSize.w; 29 | 30 | float2 pixel = float2(1.0, 1.0) / size; 31 | 32 | uvs -= pixel * float2(0.5, 0.5); 33 | float2 uv_pixels = uvs * size; 34 | float2 delta_pixel = frac(uv_pixels) - float2(0.5, 0.5); 35 | 36 | float2 ddxy = fwidth(uv_pixels); 37 | float2 mip = log2(ddxy) - 0.5; 38 | 39 | float2 clampedUV = uvs + (clamp(delta_pixel / ddxy, 0.0, 1.0) - delta_pixel) * pixel; 40 | 41 | float scale = exp2(min(mip.x, mip.y)); 42 | 43 | return tex2Dlod(tex, float4(clampedUV, 0, min(mip.x, mip.y))); 44 | } 45 | 46 | 47 | 48 | struct Input 49 | { 50 | float2 uv_MainTex; 51 | }; 52 | 53 | struct FragOut 54 | { 55 | float4 color : COLOR; 56 | }; 57 | 58 | half _Glossiness; 59 | half _Metallic; 60 | fixed4 _Color; 61 | 62 | // Add instancing support for this shader. You need to check 'Enable Instancing' on materials that use the shader. 63 | // See https://docs.unity3d.com/Manual/GPUInstancing.html for more information about instancing. 64 | // #pragma instancing_options assumeuniformscaling 65 | UNITY_INSTANCING_BUFFER_START(Props) 66 | // put more per-instance properties here 67 | UNITY_INSTANCING_BUFFER_END(Props) 68 | 69 | 70 | void surf(Input IN, inout SurfaceOutputStandard o) 71 | { 72 | 73 | fixed4 c = texturePointSmooth(_MainTex, IN.uv_MainTex); 74 | // Albedo comes from a texture tinted by color 75 | // fixed4 c = tex2D(_MainTex, IN.uv_MainTex) * _Color; 76 | 77 | o.Albedo = c.rgb; 78 | // Metallic and smoothness come from slider variables 79 | o.Metallic = _Metallic; 80 | o.Smoothness = _Glossiness; 81 | o.Alpha = c.a; 82 | } 83 | 84 | ENDCG 85 | 86 | } 87 | FallBack "Diffuse" 88 | } 89 | -------------------------------------------------------------------------------- /Assets/Models/Cube.obj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6ed234cd5f5ef947b7620a8c3b3a73a 3 | ModelImporter: 4 | serializedVersion: 20200 5 | internalIDToNameTable: [] 6 | externalObjects: 7 | - first: 8 | type: UnityEngine:Material 9 | assembly: UnityEngine.CoreModule 10 | name: Material 11 | second: {fileID: 2100000, guid: 70da84f4dcba05f4099e2b97719ead28, type: 2} 12 | materials: 13 | materialImportMode: 2 14 | materialName: 0 15 | materialSearch: 1 16 | materialLocation: 1 17 | animations: 18 | legacyGenerateAnimations: 4 19 | bakeSimulation: 0 20 | resampleCurves: 1 21 | optimizeGameObjects: 0 22 | motionNodeName: 23 | rigImportErrors: 24 | rigImportWarnings: 25 | animationImportErrors: 26 | animationImportWarnings: 27 | animationRetargetingWarnings: 28 | animationDoRetargetingWarnings: 0 29 | importAnimatedCustomProperties: 0 30 | importConstraints: 0 31 | animationCompression: 1 32 | animationRotationError: 0.5 33 | animationPositionError: 0.5 34 | animationScaleError: 0.5 35 | animationWrapMode: 0 36 | extraExposedTransformPaths: [] 37 | extraUserProperties: [] 38 | clipAnimations: [] 39 | isReadable: 0 40 | meshes: 41 | lODScreenPercentages: [] 42 | globalScale: 1 43 | meshCompression: 0 44 | addColliders: 0 45 | useSRGBMaterialColor: 1 46 | sortHierarchyByName: 1 47 | importVisibility: 1 48 | importBlendShapes: 1 49 | importCameras: 1 50 | importLights: 1 51 | fileIdsGeneration: 2 52 | swapUVChannels: 0 53 | generateSecondaryUV: 0 54 | useFileUnits: 1 55 | keepQuads: 0 56 | weldVertices: 1 57 | bakeAxisConversion: 0 58 | preserveHierarchy: 0 59 | skinWeightsMode: 0 60 | maxBonesPerVertex: 4 61 | minBoneWeight: 0.001 62 | meshOptimizationFlags: -1 63 | indexFormat: 0 64 | secondaryUVAngleDistortion: 8 65 | secondaryUVAreaDistortion: 15.000001 66 | secondaryUVHardAngle: 88 67 | secondaryUVMarginMethod: 1 68 | secondaryUVMinLightmapResolution: 40 69 | secondaryUVMinObjectScale: 1 70 | secondaryUVPackMargin: 4 71 | useFileScale: 1 72 | tangentSpace: 73 | normalSmoothAngle: 60 74 | normalImportMode: 0 75 | tangentImportMode: 3 76 | normalCalculationMode: 4 77 | legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 78 | blendShapeNormalImportMode: 1 79 | normalSmoothingSource: 0 80 | referencedClips: [] 81 | importAnimation: 1 82 | humanDescription: 83 | serializedVersion: 3 84 | human: [] 85 | skeleton: [] 86 | armTwist: 0.5 87 | foreArmTwist: 0.5 88 | upperLegTwist: 0.5 89 | legTwist: 0.5 90 | armStretch: 0.05 91 | legStretch: 0.05 92 | feetSpacing: 0 93 | globalScale: 1 94 | rootMotionBoneName: 95 | hasTranslationDoF: 0 96 | hasExtraRoot: 0 97 | skeletonHasParents: 1 98 | lastHumanDescriptionAvatarSource: {instanceID: 0} 99 | autoGenerateAvatarMappingIfUnspecified: 1 100 | animationType: 2 101 | humanoidOversampling: 1 102 | avatarSetup: 0 103 | addHumanoidExtraRootOnlyWhenUsingAvatar: 1 104 | additionalBone: 0 105 | userData: 106 | assetBundleName: 107 | assetBundleVariant: 108 | -------------------------------------------------------------------------------- /Assets/Textures/Cube Default.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cea060f0d0a1804787e80286a5f577b 3 | TextureImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 11 7 | mipmaps: 8 | mipMapMode: 0 9 | enableMipMap: 1 10 | sRGBTexture: 1 11 | linearTexture: 0 12 | fadeOut: 0 13 | borderMipMap: 0 14 | mipMapsPreserveCoverage: 0 15 | alphaTestReferenceValue: 0.5 16 | mipMapFadeDistanceStart: 1 17 | mipMapFadeDistanceEnd: 3 18 | bumpmap: 19 | convertToNormalMap: 0 20 | externalNormalMap: 0 21 | heightScale: 0.25 22 | normalMapFilter: 0 23 | isReadable: 0 24 | streamingMipmaps: 0 25 | streamingMipmapsPriority: 0 26 | vTOnly: 0 27 | grayScaleToAlpha: 0 28 | generateCubemap: 6 29 | cubemapConvolution: 0 30 | seamlessCubemap: 0 31 | textureFormat: 1 32 | maxTextureSize: 2048 33 | textureSettings: 34 | serializedVersion: 2 35 | filterMode: 0 36 | aniso: 1 37 | mipBias: 0 38 | wrapU: 0 39 | wrapV: 0 40 | wrapW: 0 41 | nPOTScale: 1 42 | lightmap: 0 43 | compressionQuality: 50 44 | spriteMode: 0 45 | spriteExtrude: 1 46 | spriteMeshType: 1 47 | alignment: 0 48 | spritePivot: {x: 0.5, y: 0.5} 49 | spritePixelsToUnits: 100 50 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 51 | spriteGenerateFallbackPhysicsShape: 1 52 | alphaUsage: 1 53 | alphaIsTransparency: 0 54 | spriteTessellationDetail: -1 55 | textureType: 0 56 | textureShape: 1 57 | singleChannelComponent: 0 58 | flipbookRows: 1 59 | flipbookColumns: 1 60 | maxTextureSizeSet: 0 61 | compressionQualitySet: 0 62 | textureFormatSet: 0 63 | ignorePngGamma: 0 64 | applyGammaDecoding: 0 65 | platformSettings: 66 | - serializedVersion: 3 67 | buildTarget: DefaultTexturePlatform 68 | maxTextureSize: 2048 69 | resizeAlgorithm: 0 70 | textureFormat: -1 71 | textureCompression: 1 72 | compressionQuality: 50 73 | crunchedCompression: 0 74 | allowsAlphaSplitting: 0 75 | overridden: 0 76 | androidETC2FallbackOverride: 0 77 | forceMaximumCompressionQuality_BC6H_BC7: 0 78 | - serializedVersion: 3 79 | buildTarget: Standalone 80 | maxTextureSize: 2048 81 | resizeAlgorithm: 0 82 | textureFormat: -1 83 | textureCompression: 1 84 | compressionQuality: 50 85 | crunchedCompression: 0 86 | allowsAlphaSplitting: 0 87 | overridden: 0 88 | androidETC2FallbackOverride: 0 89 | forceMaximumCompressionQuality_BC6H_BC7: 0 90 | - serializedVersion: 3 91 | buildTarget: Windows Store Apps 92 | maxTextureSize: 2048 93 | resizeAlgorithm: 0 94 | textureFormat: -1 95 | textureCompression: 1 96 | compressionQuality: 50 97 | crunchedCompression: 0 98 | allowsAlphaSplitting: 0 99 | overridden: 0 100 | androidETC2FallbackOverride: 0 101 | forceMaximumCompressionQuality_BC6H_BC7: 0 102 | - serializedVersion: 3 103 | buildTarget: Android 104 | maxTextureSize: 2048 105 | resizeAlgorithm: 0 106 | textureFormat: -1 107 | textureCompression: 1 108 | compressionQuality: 50 109 | crunchedCompression: 0 110 | allowsAlphaSplitting: 0 111 | overridden: 0 112 | androidETC2FallbackOverride: 0 113 | forceMaximumCompressionQuality_BC6H_BC7: 0 114 | - serializedVersion: 3 115 | buildTarget: WebGL 116 | maxTextureSize: 2048 117 | resizeAlgorithm: 0 118 | textureFormat: -1 119 | textureCompression: 1 120 | compressionQuality: 50 121 | crunchedCompression: 0 122 | allowsAlphaSplitting: 0 123 | overridden: 0 124 | androidETC2FallbackOverride: 0 125 | forceMaximumCompressionQuality_BC6H_BC7: 0 126 | spriteSheet: 127 | serializedVersion: 2 128 | sprites: [] 129 | outline: [] 130 | physicsShape: [] 131 | bones: [] 132 | spriteID: 133 | internalID: 0 134 | vertices: [] 135 | indices: 136 | edges: [] 137 | weights: [] 138 | secondaryTextures: [] 139 | spritePackingTag: 140 | pSDRemoveMatte: 0 141 | pSDShowRemoveMatteOption: 0 142 | userData: 143 | assetBundleName: 144 | assetBundleVariant: 145 | -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "templatePinStates": [], 3 | "dependencyTypeInfos": [ 4 | { 5 | "userAdded": false, 6 | "type": "UnityEngine.AnimationClip", 7 | "ignore": false, 8 | "defaultInstantiationMode": 0, 9 | "supportsModification": true 10 | }, 11 | { 12 | "userAdded": false, 13 | "type": "UnityEditor.Animations.AnimatorController", 14 | "ignore": false, 15 | "defaultInstantiationMode": 0, 16 | "supportsModification": true 17 | }, 18 | { 19 | "userAdded": false, 20 | "type": "UnityEngine.AnimatorOverrideController", 21 | "ignore": false, 22 | "defaultInstantiationMode": 0, 23 | "supportsModification": true 24 | }, 25 | { 26 | "userAdded": false, 27 | "type": "UnityEditor.Audio.AudioMixerController", 28 | "ignore": false, 29 | "defaultInstantiationMode": 0, 30 | "supportsModification": true 31 | }, 32 | { 33 | "userAdded": false, 34 | "type": "UnityEngine.ComputeShader", 35 | "ignore": true, 36 | "defaultInstantiationMode": 1, 37 | "supportsModification": true 38 | }, 39 | { 40 | "userAdded": false, 41 | "type": "UnityEngine.Cubemap", 42 | "ignore": false, 43 | "defaultInstantiationMode": 0, 44 | "supportsModification": true 45 | }, 46 | { 47 | "userAdded": false, 48 | "type": "UnityEngine.GameObject", 49 | "ignore": false, 50 | "defaultInstantiationMode": 0, 51 | "supportsModification": true 52 | }, 53 | { 54 | "userAdded": false, 55 | "type": "UnityEditor.LightingDataAsset", 56 | "ignore": false, 57 | "defaultInstantiationMode": 0, 58 | "supportsModification": false 59 | }, 60 | { 61 | "userAdded": false, 62 | "type": "UnityEngine.LightingSettings", 63 | "ignore": false, 64 | "defaultInstantiationMode": 0, 65 | "supportsModification": true 66 | }, 67 | { 68 | "userAdded": false, 69 | "type": "UnityEngine.Material", 70 | "ignore": false, 71 | "defaultInstantiationMode": 0, 72 | "supportsModification": true 73 | }, 74 | { 75 | "userAdded": false, 76 | "type": "UnityEditor.MonoScript", 77 | "ignore": true, 78 | "defaultInstantiationMode": 1, 79 | "supportsModification": true 80 | }, 81 | { 82 | "userAdded": false, 83 | "type": "UnityEngine.PhysicMaterial", 84 | "ignore": false, 85 | "defaultInstantiationMode": 0, 86 | "supportsModification": true 87 | }, 88 | { 89 | "userAdded": false, 90 | "type": "UnityEngine.PhysicsMaterial2D", 91 | "ignore": false, 92 | "defaultInstantiationMode": 0, 93 | "supportsModification": true 94 | }, 95 | { 96 | "userAdded": false, 97 | "type": "UnityEngine.Rendering.PostProcessing.PostProcessProfile", 98 | "ignore": false, 99 | "defaultInstantiationMode": 0, 100 | "supportsModification": true 101 | }, 102 | { 103 | "userAdded": false, 104 | "type": "UnityEngine.Rendering.PostProcessing.PostProcessResources", 105 | "ignore": false, 106 | "defaultInstantiationMode": 0, 107 | "supportsModification": true 108 | }, 109 | { 110 | "userAdded": false, 111 | "type": "UnityEngine.Rendering.VolumeProfile", 112 | "ignore": false, 113 | "defaultInstantiationMode": 0, 114 | "supportsModification": true 115 | }, 116 | { 117 | "userAdded": false, 118 | "type": "UnityEditor.SceneAsset", 119 | "ignore": false, 120 | "defaultInstantiationMode": 0, 121 | "supportsModification": false 122 | }, 123 | { 124 | "userAdded": false, 125 | "type": "UnityEngine.Shader", 126 | "ignore": true, 127 | "defaultInstantiationMode": 1, 128 | "supportsModification": true 129 | }, 130 | { 131 | "userAdded": false, 132 | "type": "UnityEngine.ShaderVariantCollection", 133 | "ignore": true, 134 | "defaultInstantiationMode": 1, 135 | "supportsModification": true 136 | }, 137 | { 138 | "userAdded": false, 139 | "type": "UnityEngine.Texture", 140 | "ignore": false, 141 | "defaultInstantiationMode": 0, 142 | "supportsModification": true 143 | }, 144 | { 145 | "userAdded": false, 146 | "type": "UnityEngine.Texture2D", 147 | "ignore": false, 148 | "defaultInstantiationMode": 0, 149 | "supportsModification": true 150 | }, 151 | { 152 | "userAdded": false, 153 | "type": "UnityEngine.Timeline.TimelineAsset", 154 | "ignore": false, 155 | "defaultInstantiationMode": 0, 156 | "supportsModification": true 157 | } 158 | ], 159 | "defaultDependencyTypeInfo": { 160 | "userAdded": false, 161 | "type": "", 162 | "ignore": false, 163 | "defaultInstantiationMode": 1, 164 | "supportsModification": true 165 | }, 166 | "newSceneOverride": 0 167 | } -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!13 &1 4 | InputManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Axes: 8 | - serializedVersion: 3 9 | m_Name: Horizontal 10 | descriptiveName: 11 | descriptiveNegativeName: 12 | negativeButton: left 13 | positiveButton: right 14 | altNegativeButton: a 15 | altPositiveButton: d 16 | gravity: 3 17 | dead: 0.001 18 | sensitivity: 3 19 | snap: 1 20 | invert: 0 21 | type: 0 22 | axis: 0 23 | joyNum: 0 24 | - serializedVersion: 3 25 | m_Name: Vertical 26 | descriptiveName: 27 | descriptiveNegativeName: 28 | negativeButton: down 29 | positiveButton: up 30 | altNegativeButton: s 31 | altPositiveButton: w 32 | gravity: 3 33 | dead: 0.001 34 | sensitivity: 3 35 | snap: 1 36 | invert: 0 37 | type: 0 38 | axis: 0 39 | joyNum: 0 40 | - serializedVersion: 3 41 | m_Name: Fire1 42 | descriptiveName: 43 | descriptiveNegativeName: 44 | negativeButton: 45 | positiveButton: left ctrl 46 | altNegativeButton: 47 | altPositiveButton: mouse 0 48 | gravity: 1000 49 | dead: 0.001 50 | sensitivity: 1000 51 | snap: 0 52 | invert: 0 53 | type: 0 54 | axis: 0 55 | joyNum: 0 56 | - serializedVersion: 3 57 | m_Name: Fire2 58 | descriptiveName: 59 | descriptiveNegativeName: 60 | negativeButton: 61 | positiveButton: left alt 62 | altNegativeButton: 63 | altPositiveButton: mouse 1 64 | gravity: 1000 65 | dead: 0.001 66 | sensitivity: 1000 67 | snap: 0 68 | invert: 0 69 | type: 0 70 | axis: 0 71 | joyNum: 0 72 | - serializedVersion: 3 73 | m_Name: Fire3 74 | descriptiveName: 75 | descriptiveNegativeName: 76 | negativeButton: 77 | positiveButton: left shift 78 | altNegativeButton: 79 | altPositiveButton: mouse 2 80 | gravity: 1000 81 | dead: 0.001 82 | sensitivity: 1000 83 | snap: 0 84 | invert: 0 85 | type: 0 86 | axis: 0 87 | joyNum: 0 88 | - serializedVersion: 3 89 | m_Name: Jump 90 | descriptiveName: 91 | descriptiveNegativeName: 92 | negativeButton: 93 | positiveButton: space 94 | altNegativeButton: 95 | altPositiveButton: 96 | gravity: 1000 97 | dead: 0.001 98 | sensitivity: 1000 99 | snap: 0 100 | invert: 0 101 | type: 0 102 | axis: 0 103 | joyNum: 0 104 | - serializedVersion: 3 105 | m_Name: Mouse X 106 | descriptiveName: 107 | descriptiveNegativeName: 108 | negativeButton: 109 | positiveButton: 110 | altNegativeButton: 111 | altPositiveButton: 112 | gravity: 0 113 | dead: 0 114 | sensitivity: 0.1 115 | snap: 0 116 | invert: 0 117 | type: 1 118 | axis: 0 119 | joyNum: 0 120 | - serializedVersion: 3 121 | m_Name: Mouse Y 122 | descriptiveName: 123 | descriptiveNegativeName: 124 | negativeButton: 125 | positiveButton: 126 | altNegativeButton: 127 | altPositiveButton: 128 | gravity: 0 129 | dead: 0 130 | sensitivity: 0.1 131 | snap: 0 132 | invert: 0 133 | type: 1 134 | axis: 1 135 | joyNum: 0 136 | - serializedVersion: 3 137 | m_Name: Mouse ScrollWheel 138 | descriptiveName: 139 | descriptiveNegativeName: 140 | negativeButton: 141 | positiveButton: 142 | altNegativeButton: 143 | altPositiveButton: 144 | gravity: 0 145 | dead: 0 146 | sensitivity: 0.1 147 | snap: 0 148 | invert: 0 149 | type: 1 150 | axis: 2 151 | joyNum: 0 152 | - serializedVersion: 3 153 | m_Name: Horizontal 154 | descriptiveName: 155 | descriptiveNegativeName: 156 | negativeButton: 157 | positiveButton: 158 | altNegativeButton: 159 | altPositiveButton: 160 | gravity: 0 161 | dead: 0.19 162 | sensitivity: 1 163 | snap: 0 164 | invert: 0 165 | type: 2 166 | axis: 0 167 | joyNum: 0 168 | - serializedVersion: 3 169 | m_Name: Vertical 170 | descriptiveName: 171 | descriptiveNegativeName: 172 | negativeButton: 173 | positiveButton: 174 | altNegativeButton: 175 | altPositiveButton: 176 | gravity: 0 177 | dead: 0.19 178 | sensitivity: 1 179 | snap: 0 180 | invert: 1 181 | type: 2 182 | axis: 1 183 | joyNum: 0 184 | - serializedVersion: 3 185 | m_Name: Fire1 186 | descriptiveName: 187 | descriptiveNegativeName: 188 | negativeButton: 189 | positiveButton: joystick button 0 190 | altNegativeButton: 191 | altPositiveButton: 192 | gravity: 1000 193 | dead: 0.001 194 | sensitivity: 1000 195 | snap: 0 196 | invert: 0 197 | type: 0 198 | axis: 0 199 | joyNum: 0 200 | - serializedVersion: 3 201 | m_Name: Fire2 202 | descriptiveName: 203 | descriptiveNegativeName: 204 | negativeButton: 205 | positiveButton: joystick button 1 206 | altNegativeButton: 207 | altPositiveButton: 208 | gravity: 1000 209 | dead: 0.001 210 | sensitivity: 1000 211 | snap: 0 212 | invert: 0 213 | type: 0 214 | axis: 0 215 | joyNum: 0 216 | - serializedVersion: 3 217 | m_Name: Fire3 218 | descriptiveName: 219 | descriptiveNegativeName: 220 | negativeButton: 221 | positiveButton: joystick button 2 222 | altNegativeButton: 223 | altPositiveButton: 224 | gravity: 1000 225 | dead: 0.001 226 | sensitivity: 1000 227 | snap: 0 228 | invert: 0 229 | type: 0 230 | axis: 0 231 | joyNum: 0 232 | - serializedVersion: 3 233 | m_Name: Jump 234 | descriptiveName: 235 | descriptiveNegativeName: 236 | negativeButton: 237 | positiveButton: joystick button 3 238 | altNegativeButton: 239 | altPositiveButton: 240 | gravity: 1000 241 | dead: 0.001 242 | sensitivity: 1000 243 | snap: 0 244 | invert: 0 245 | type: 0 246 | axis: 0 247 | joyNum: 0 248 | - serializedVersion: 3 249 | m_Name: Submit 250 | descriptiveName: 251 | descriptiveNegativeName: 252 | negativeButton: 253 | positiveButton: return 254 | altNegativeButton: 255 | altPositiveButton: joystick button 0 256 | gravity: 1000 257 | dead: 0.001 258 | sensitivity: 1000 259 | snap: 0 260 | invert: 0 261 | type: 0 262 | axis: 0 263 | joyNum: 0 264 | - serializedVersion: 3 265 | m_Name: Submit 266 | descriptiveName: 267 | descriptiveNegativeName: 268 | negativeButton: 269 | positiveButton: enter 270 | altNegativeButton: 271 | altPositiveButton: space 272 | gravity: 1000 273 | dead: 0.001 274 | sensitivity: 1000 275 | snap: 0 276 | invert: 0 277 | type: 0 278 | axis: 0 279 | joyNum: 0 280 | - serializedVersion: 3 281 | m_Name: Cancel 282 | descriptiveName: 283 | descriptiveNegativeName: 284 | negativeButton: 285 | positiveButton: escape 286 | altNegativeButton: 287 | altPositiveButton: joystick button 1 288 | gravity: 1000 289 | dead: 0.001 290 | sensitivity: 1000 291 | snap: 0 292 | invert: 0 293 | type: 0 294 | axis: 0 295 | joyNum: 0 296 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!47 &1 4 | QualitySettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 5 7 | m_CurrentQuality: 5 8 | m_QualitySettings: 9 | - serializedVersion: 2 10 | name: Very Low 11 | pixelLightCount: 0 12 | shadows: 0 13 | shadowResolution: 0 14 | shadowProjection: 1 15 | shadowCascades: 1 16 | shadowDistance: 15 17 | shadowNearPlaneOffset: 3 18 | shadowCascade2Split: 0.33333334 19 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 20 | shadowmaskMode: 0 21 | skinWeights: 1 22 | textureQuality: 1 23 | anisotropicTextures: 0 24 | antiAliasing: 0 25 | softParticles: 0 26 | softVegetation: 0 27 | realtimeReflectionProbes: 0 28 | billboardsFaceCameraPosition: 0 29 | vSyncCount: 0 30 | lodBias: 0.3 31 | maximumLODLevel: 0 32 | streamingMipmapsActive: 0 33 | streamingMipmapsAddAllCameras: 1 34 | streamingMipmapsMemoryBudget: 512 35 | streamingMipmapsRenderersPerFrame: 512 36 | streamingMipmapsMaxLevelReduction: 2 37 | streamingMipmapsMaxFileIORequests: 1024 38 | particleRaycastBudget: 4 39 | asyncUploadTimeSlice: 2 40 | asyncUploadBufferSize: 16 41 | asyncUploadPersistentBuffer: 1 42 | resolutionScalingFixedDPIFactor: 1 43 | customRenderPipeline: {fileID: 0} 44 | excludedTargetPlatforms: [] 45 | - serializedVersion: 2 46 | name: Low 47 | pixelLightCount: 0 48 | shadows: 0 49 | shadowResolution: 0 50 | shadowProjection: 1 51 | shadowCascades: 1 52 | shadowDistance: 20 53 | shadowNearPlaneOffset: 3 54 | shadowCascade2Split: 0.33333334 55 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 56 | shadowmaskMode: 0 57 | skinWeights: 2 58 | textureQuality: 0 59 | anisotropicTextures: 0 60 | antiAliasing: 0 61 | softParticles: 0 62 | softVegetation: 0 63 | realtimeReflectionProbes: 0 64 | billboardsFaceCameraPosition: 0 65 | vSyncCount: 0 66 | lodBias: 0.4 67 | maximumLODLevel: 0 68 | streamingMipmapsActive: 0 69 | streamingMipmapsAddAllCameras: 1 70 | streamingMipmapsMemoryBudget: 512 71 | streamingMipmapsRenderersPerFrame: 512 72 | streamingMipmapsMaxLevelReduction: 2 73 | streamingMipmapsMaxFileIORequests: 1024 74 | particleRaycastBudget: 16 75 | asyncUploadTimeSlice: 2 76 | asyncUploadBufferSize: 16 77 | asyncUploadPersistentBuffer: 1 78 | resolutionScalingFixedDPIFactor: 1 79 | customRenderPipeline: {fileID: 0} 80 | excludedTargetPlatforms: [] 81 | - serializedVersion: 2 82 | name: Medium 83 | pixelLightCount: 1 84 | shadows: 1 85 | shadowResolution: 0 86 | shadowProjection: 1 87 | shadowCascades: 1 88 | shadowDistance: 20 89 | shadowNearPlaneOffset: 3 90 | shadowCascade2Split: 0.33333334 91 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 92 | shadowmaskMode: 0 93 | skinWeights: 2 94 | textureQuality: 0 95 | anisotropicTextures: 1 96 | antiAliasing: 0 97 | softParticles: 0 98 | softVegetation: 0 99 | realtimeReflectionProbes: 0 100 | billboardsFaceCameraPosition: 0 101 | vSyncCount: 1 102 | lodBias: 0.7 103 | maximumLODLevel: 0 104 | streamingMipmapsActive: 0 105 | streamingMipmapsAddAllCameras: 1 106 | streamingMipmapsMemoryBudget: 512 107 | streamingMipmapsRenderersPerFrame: 512 108 | streamingMipmapsMaxLevelReduction: 2 109 | streamingMipmapsMaxFileIORequests: 1024 110 | particleRaycastBudget: 64 111 | asyncUploadTimeSlice: 2 112 | asyncUploadBufferSize: 16 113 | asyncUploadPersistentBuffer: 1 114 | resolutionScalingFixedDPIFactor: 1 115 | customRenderPipeline: {fileID: 0} 116 | excludedTargetPlatforms: [] 117 | - serializedVersion: 2 118 | name: High 119 | pixelLightCount: 2 120 | shadows: 2 121 | shadowResolution: 1 122 | shadowProjection: 1 123 | shadowCascades: 2 124 | shadowDistance: 40 125 | shadowNearPlaneOffset: 3 126 | shadowCascade2Split: 0.33333334 127 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 128 | shadowmaskMode: 1 129 | skinWeights: 2 130 | textureQuality: 0 131 | anisotropicTextures: 1 132 | antiAliasing: 0 133 | softParticles: 0 134 | softVegetation: 1 135 | realtimeReflectionProbes: 1 136 | billboardsFaceCameraPosition: 1 137 | vSyncCount: 1 138 | lodBias: 1 139 | maximumLODLevel: 0 140 | streamingMipmapsActive: 0 141 | streamingMipmapsAddAllCameras: 1 142 | streamingMipmapsMemoryBudget: 512 143 | streamingMipmapsRenderersPerFrame: 512 144 | streamingMipmapsMaxLevelReduction: 2 145 | streamingMipmapsMaxFileIORequests: 1024 146 | particleRaycastBudget: 256 147 | asyncUploadTimeSlice: 2 148 | asyncUploadBufferSize: 16 149 | asyncUploadPersistentBuffer: 1 150 | resolutionScalingFixedDPIFactor: 1 151 | customRenderPipeline: {fileID: 0} 152 | excludedTargetPlatforms: [] 153 | - serializedVersion: 2 154 | name: Very High 155 | pixelLightCount: 3 156 | shadows: 2 157 | shadowResolution: 2 158 | shadowProjection: 1 159 | shadowCascades: 2 160 | shadowDistance: 70 161 | shadowNearPlaneOffset: 3 162 | shadowCascade2Split: 0.33333334 163 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 164 | shadowmaskMode: 1 165 | skinWeights: 4 166 | textureQuality: 0 167 | anisotropicTextures: 2 168 | antiAliasing: 2 169 | softParticles: 1 170 | softVegetation: 1 171 | realtimeReflectionProbes: 1 172 | billboardsFaceCameraPosition: 1 173 | vSyncCount: 1 174 | lodBias: 1.5 175 | maximumLODLevel: 0 176 | streamingMipmapsActive: 0 177 | streamingMipmapsAddAllCameras: 1 178 | streamingMipmapsMemoryBudget: 512 179 | streamingMipmapsRenderersPerFrame: 512 180 | streamingMipmapsMaxLevelReduction: 2 181 | streamingMipmapsMaxFileIORequests: 1024 182 | particleRaycastBudget: 1024 183 | asyncUploadTimeSlice: 2 184 | asyncUploadBufferSize: 16 185 | asyncUploadPersistentBuffer: 1 186 | resolutionScalingFixedDPIFactor: 1 187 | customRenderPipeline: {fileID: 0} 188 | excludedTargetPlatforms: [] 189 | - serializedVersion: 2 190 | name: Ultra 191 | pixelLightCount: 4 192 | shadows: 2 193 | shadowResolution: 2 194 | shadowProjection: 1 195 | shadowCascades: 4 196 | shadowDistance: 150 197 | shadowNearPlaneOffset: 3 198 | shadowCascade2Split: 0.33333334 199 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 200 | shadowmaskMode: 1 201 | skinWeights: 4 202 | textureQuality: 0 203 | anisotropicTextures: 0 204 | antiAliasing: 8 205 | softParticles: 1 206 | softVegetation: 1 207 | realtimeReflectionProbes: 1 208 | billboardsFaceCameraPosition: 1 209 | vSyncCount: 1 210 | lodBias: 2 211 | maximumLODLevel: 0 212 | streamingMipmapsActive: 0 213 | streamingMipmapsAddAllCameras: 1 214 | streamingMipmapsMemoryBudget: 512 215 | streamingMipmapsRenderersPerFrame: 512 216 | streamingMipmapsMaxLevelReduction: 2 217 | streamingMipmapsMaxFileIORequests: 1024 218 | particleRaycastBudget: 4096 219 | asyncUploadTimeSlice: 2 220 | asyncUploadBufferSize: 16 221 | asyncUploadPersistentBuffer: 1 222 | resolutionScalingFixedDPIFactor: 1 223 | customRenderPipeline: {fileID: 0} 224 | excludedTargetPlatforms: [] 225 | m_PerPlatformDefaultQuality: 226 | Android: 2 227 | Lumin: 5 228 | Nintendo 3DS: 5 229 | Nintendo Switch: 5 230 | PS4: 5 231 | PSP2: 2 232 | Stadia: 5 233 | Standalone: 5 234 | WebGL: 3 235 | Windows Store Apps: 5 236 | XboxOne: 5 237 | iPhone: 2 238 | tvOS: 2 239 | -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.collab-proxy": { 4 | "version": "1.5.7", 5 | "depth": 0, 6 | "source": "registry", 7 | "dependencies": { 8 | "com.unity.nuget.newtonsoft-json": "2.0.0" 9 | }, 10 | "url": "https://packages.unity.com" 11 | }, 12 | "com.unity.ext.nunit": { 13 | "version": "1.0.6", 14 | "depth": 1, 15 | "source": "registry", 16 | "dependencies": {}, 17 | "url": "https://packages.unity.com" 18 | }, 19 | "com.unity.ide.rider": { 20 | "version": "2.0.7", 21 | "depth": 0, 22 | "source": "registry", 23 | "dependencies": { 24 | "com.unity.test-framework": "1.1.1" 25 | }, 26 | "url": "https://packages.unity.com" 27 | }, 28 | "com.unity.ide.visualstudio": { 29 | "version": "2.0.8", 30 | "depth": 0, 31 | "source": "registry", 32 | "dependencies": { 33 | "com.unity.test-framework": "1.1.9" 34 | }, 35 | "url": "https://packages.unity.com" 36 | }, 37 | "com.unity.ide.vscode": { 38 | "version": "1.2.3", 39 | "depth": 0, 40 | "source": "registry", 41 | "dependencies": {}, 42 | "url": "https://packages.unity.com" 43 | }, 44 | "com.unity.nuget.newtonsoft-json": { 45 | "version": "2.0.0", 46 | "depth": 1, 47 | "source": "registry", 48 | "dependencies": {}, 49 | "url": "https://packages.unity.com" 50 | }, 51 | "com.unity.test-framework": { 52 | "version": "1.1.24", 53 | "depth": 0, 54 | "source": "registry", 55 | "dependencies": { 56 | "com.unity.ext.nunit": "1.0.6", 57 | "com.unity.modules.imgui": "1.0.0", 58 | "com.unity.modules.jsonserialize": "1.0.0" 59 | }, 60 | "url": "https://packages.unity.com" 61 | }, 62 | "com.unity.textmeshpro": { 63 | "version": "3.0.6", 64 | "depth": 0, 65 | "source": "registry", 66 | "dependencies": { 67 | "com.unity.ugui": "1.0.0" 68 | }, 69 | "url": "https://packages.unity.com" 70 | }, 71 | "com.unity.timeline": { 72 | "version": "1.4.8", 73 | "depth": 0, 74 | "source": "registry", 75 | "dependencies": { 76 | "com.unity.modules.director": "1.0.0", 77 | "com.unity.modules.animation": "1.0.0", 78 | "com.unity.modules.audio": "1.0.0", 79 | "com.unity.modules.particlesystem": "1.0.0" 80 | }, 81 | "url": "https://packages.unity.com" 82 | }, 83 | "com.unity.ugui": { 84 | "version": "1.0.0", 85 | "depth": 0, 86 | "source": "builtin", 87 | "dependencies": { 88 | "com.unity.modules.ui": "1.0.0", 89 | "com.unity.modules.imgui": "1.0.0" 90 | } 91 | }, 92 | "com.unity.modules.ai": { 93 | "version": "1.0.0", 94 | "depth": 0, 95 | "source": "builtin", 96 | "dependencies": {} 97 | }, 98 | "com.unity.modules.androidjni": { 99 | "version": "1.0.0", 100 | "depth": 0, 101 | "source": "builtin", 102 | "dependencies": {} 103 | }, 104 | "com.unity.modules.animation": { 105 | "version": "1.0.0", 106 | "depth": 0, 107 | "source": "builtin", 108 | "dependencies": {} 109 | }, 110 | "com.unity.modules.assetbundle": { 111 | "version": "1.0.0", 112 | "depth": 0, 113 | "source": "builtin", 114 | "dependencies": {} 115 | }, 116 | "com.unity.modules.audio": { 117 | "version": "1.0.0", 118 | "depth": 0, 119 | "source": "builtin", 120 | "dependencies": {} 121 | }, 122 | "com.unity.modules.cloth": { 123 | "version": "1.0.0", 124 | "depth": 0, 125 | "source": "builtin", 126 | "dependencies": { 127 | "com.unity.modules.physics": "1.0.0" 128 | } 129 | }, 130 | "com.unity.modules.director": { 131 | "version": "1.0.0", 132 | "depth": 0, 133 | "source": "builtin", 134 | "dependencies": { 135 | "com.unity.modules.audio": "1.0.0", 136 | "com.unity.modules.animation": "1.0.0" 137 | } 138 | }, 139 | "com.unity.modules.imageconversion": { 140 | "version": "1.0.0", 141 | "depth": 0, 142 | "source": "builtin", 143 | "dependencies": {} 144 | }, 145 | "com.unity.modules.imgui": { 146 | "version": "1.0.0", 147 | "depth": 0, 148 | "source": "builtin", 149 | "dependencies": {} 150 | }, 151 | "com.unity.modules.jsonserialize": { 152 | "version": "1.0.0", 153 | "depth": 0, 154 | "source": "builtin", 155 | "dependencies": {} 156 | }, 157 | "com.unity.modules.particlesystem": { 158 | "version": "1.0.0", 159 | "depth": 0, 160 | "source": "builtin", 161 | "dependencies": {} 162 | }, 163 | "com.unity.modules.physics": { 164 | "version": "1.0.0", 165 | "depth": 0, 166 | "source": "builtin", 167 | "dependencies": {} 168 | }, 169 | "com.unity.modules.physics2d": { 170 | "version": "1.0.0", 171 | "depth": 0, 172 | "source": "builtin", 173 | "dependencies": {} 174 | }, 175 | "com.unity.modules.screencapture": { 176 | "version": "1.0.0", 177 | "depth": 0, 178 | "source": "builtin", 179 | "dependencies": { 180 | "com.unity.modules.imageconversion": "1.0.0" 181 | } 182 | }, 183 | "com.unity.modules.subsystems": { 184 | "version": "1.0.0", 185 | "depth": 1, 186 | "source": "builtin", 187 | "dependencies": { 188 | "com.unity.modules.jsonserialize": "1.0.0" 189 | } 190 | }, 191 | "com.unity.modules.terrain": { 192 | "version": "1.0.0", 193 | "depth": 0, 194 | "source": "builtin", 195 | "dependencies": {} 196 | }, 197 | "com.unity.modules.terrainphysics": { 198 | "version": "1.0.0", 199 | "depth": 0, 200 | "source": "builtin", 201 | "dependencies": { 202 | "com.unity.modules.physics": "1.0.0", 203 | "com.unity.modules.terrain": "1.0.0" 204 | } 205 | }, 206 | "com.unity.modules.tilemap": { 207 | "version": "1.0.0", 208 | "depth": 0, 209 | "source": "builtin", 210 | "dependencies": { 211 | "com.unity.modules.physics2d": "1.0.0" 212 | } 213 | }, 214 | "com.unity.modules.ui": { 215 | "version": "1.0.0", 216 | "depth": 0, 217 | "source": "builtin", 218 | "dependencies": {} 219 | }, 220 | "com.unity.modules.uielements": { 221 | "version": "1.0.0", 222 | "depth": 0, 223 | "source": "builtin", 224 | "dependencies": { 225 | "com.unity.modules.ui": "1.0.0", 226 | "com.unity.modules.imgui": "1.0.0", 227 | "com.unity.modules.jsonserialize": "1.0.0", 228 | "com.unity.modules.uielementsnative": "1.0.0" 229 | } 230 | }, 231 | "com.unity.modules.uielementsnative": { 232 | "version": "1.0.0", 233 | "depth": 1, 234 | "source": "builtin", 235 | "dependencies": { 236 | "com.unity.modules.ui": "1.0.0", 237 | "com.unity.modules.imgui": "1.0.0", 238 | "com.unity.modules.jsonserialize": "1.0.0" 239 | } 240 | }, 241 | "com.unity.modules.umbra": { 242 | "version": "1.0.0", 243 | "depth": 0, 244 | "source": "builtin", 245 | "dependencies": {} 246 | }, 247 | "com.unity.modules.unityanalytics": { 248 | "version": "1.0.0", 249 | "depth": 0, 250 | "source": "builtin", 251 | "dependencies": { 252 | "com.unity.modules.unitywebrequest": "1.0.0", 253 | "com.unity.modules.jsonserialize": "1.0.0" 254 | } 255 | }, 256 | "com.unity.modules.unitywebrequest": { 257 | "version": "1.0.0", 258 | "depth": 0, 259 | "source": "builtin", 260 | "dependencies": {} 261 | }, 262 | "com.unity.modules.unitywebrequestassetbundle": { 263 | "version": "1.0.0", 264 | "depth": 0, 265 | "source": "builtin", 266 | "dependencies": { 267 | "com.unity.modules.assetbundle": "1.0.0", 268 | "com.unity.modules.unitywebrequest": "1.0.0" 269 | } 270 | }, 271 | "com.unity.modules.unitywebrequestaudio": { 272 | "version": "1.0.0", 273 | "depth": 0, 274 | "source": "builtin", 275 | "dependencies": { 276 | "com.unity.modules.unitywebrequest": "1.0.0", 277 | "com.unity.modules.audio": "1.0.0" 278 | } 279 | }, 280 | "com.unity.modules.unitywebrequesttexture": { 281 | "version": "1.0.0", 282 | "depth": 0, 283 | "source": "builtin", 284 | "dependencies": { 285 | "com.unity.modules.unitywebrequest": "1.0.0", 286 | "com.unity.modules.imageconversion": "1.0.0" 287 | } 288 | }, 289 | "com.unity.modules.unitywebrequestwww": { 290 | "version": "1.0.0", 291 | "depth": 0, 292 | "source": "builtin", 293 | "dependencies": { 294 | "com.unity.modules.unitywebrequest": "1.0.0", 295 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 296 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 297 | "com.unity.modules.audio": "1.0.0", 298 | "com.unity.modules.assetbundle": "1.0.0", 299 | "com.unity.modules.imageconversion": "1.0.0" 300 | } 301 | }, 302 | "com.unity.modules.vehicles": { 303 | "version": "1.0.0", 304 | "depth": 0, 305 | "source": "builtin", 306 | "dependencies": { 307 | "com.unity.modules.physics": "1.0.0" 308 | } 309 | }, 310 | "com.unity.modules.video": { 311 | "version": "1.0.0", 312 | "depth": 0, 313 | "source": "builtin", 314 | "dependencies": { 315 | "com.unity.modules.audio": "1.0.0", 316 | "com.unity.modules.ui": "1.0.0", 317 | "com.unity.modules.unitywebrequest": "1.0.0" 318 | } 319 | }, 320 | "com.unity.modules.vr": { 321 | "version": "1.0.0", 322 | "depth": 0, 323 | "source": "builtin", 324 | "dependencies": { 325 | "com.unity.modules.jsonserialize": "1.0.0", 326 | "com.unity.modules.physics": "1.0.0", 327 | "com.unity.modules.xr": "1.0.0" 328 | } 329 | }, 330 | "com.unity.modules.wind": { 331 | "version": "1.0.0", 332 | "depth": 0, 333 | "source": "builtin", 334 | "dependencies": {} 335 | }, 336 | "com.unity.modules.xr": { 337 | "version": "1.0.0", 338 | "depth": 0, 339 | "source": "builtin", 340 | "dependencies": { 341 | "com.unity.modules.physics": "1.0.0", 342 | "com.unity.modules.jsonserialize": "1.0.0", 343 | "com.unity.modules.subsystems": "1.0.0" 344 | } 345 | } 346 | } 347 | } 348 | -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!29 &1 4 | OcclusionCullingSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_OcclusionBakeSettings: 8 | smallestOccluder: 5 9 | smallestHole: 0.25 10 | backfaceThreshold: 100 11 | m_SceneGUID: 00000000000000000000000000000000 12 | m_OcclusionCullingData: {fileID: 0} 13 | --- !u!104 &2 14 | RenderSettings: 15 | m_ObjectHideFlags: 0 16 | serializedVersion: 9 17 | m_Fog: 0 18 | m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 19 | m_FogMode: 3 20 | m_FogDensity: 0.01 21 | m_LinearFogStart: 0 22 | m_LinearFogEnd: 300 23 | m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} 24 | m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} 25 | m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} 26 | m_AmbientIntensity: 1 27 | m_AmbientMode: 0 28 | m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} 29 | m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} 30 | m_HaloStrength: 0.5 31 | m_FlareStrength: 1 32 | m_FlareFadeSpeed: 3 33 | m_HaloTexture: {fileID: 0} 34 | m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} 35 | m_DefaultReflectionMode: 0 36 | m_DefaultReflectionResolution: 128 37 | m_ReflectionBounces: 1 38 | m_ReflectionIntensity: 1 39 | m_CustomReflection: {fileID: 0} 40 | m_Sun: {fileID: 705507994} 41 | m_IndirectSpecularColor: {r: 0.44657874, g: 0.49641258, b: 0.5748172, a: 1} 42 | m_UseRadianceAmbientProbe: 0 43 | --- !u!157 &3 44 | LightmapSettings: 45 | m_ObjectHideFlags: 0 46 | serializedVersion: 12 47 | m_GIWorkflowMode: 1 48 | m_GISettings: 49 | serializedVersion: 2 50 | m_BounceScale: 1 51 | m_IndirectOutputScale: 1 52 | m_AlbedoBoost: 1 53 | m_EnvironmentLightingMode: 0 54 | m_EnableBakedLightmaps: 1 55 | m_EnableRealtimeLightmaps: 0 56 | m_LightmapEditorSettings: 57 | serializedVersion: 12 58 | m_Resolution: 2 59 | m_BakeResolution: 40 60 | m_AtlasSize: 1024 61 | m_AO: 0 62 | m_AOMaxDistance: 1 63 | m_CompAOExponent: 1 64 | m_CompAOExponentDirect: 0 65 | m_ExtractAmbientOcclusion: 0 66 | m_Padding: 2 67 | m_LightmapParameters: {fileID: 0} 68 | m_LightmapsBakeMode: 1 69 | m_TextureCompression: 1 70 | m_FinalGather: 0 71 | m_FinalGatherFiltering: 1 72 | m_FinalGatherRayCount: 256 73 | m_ReflectionCompression: 2 74 | m_MixedBakeMode: 2 75 | m_BakeBackend: 1 76 | m_PVRSampling: 1 77 | m_PVRDirectSampleCount: 32 78 | m_PVRSampleCount: 500 79 | m_PVRBounces: 2 80 | m_PVREnvironmentSampleCount: 500 81 | m_PVREnvironmentReferencePointCount: 2048 82 | m_PVRFilteringMode: 2 83 | m_PVRDenoiserTypeDirect: 0 84 | m_PVRDenoiserTypeIndirect: 0 85 | m_PVRDenoiserTypeAO: 0 86 | m_PVRFilterTypeDirect: 0 87 | m_PVRFilterTypeIndirect: 0 88 | m_PVRFilterTypeAO: 0 89 | m_PVREnvironmentMIS: 0 90 | m_PVRCulling: 1 91 | m_PVRFilteringGaussRadiusDirect: 1 92 | m_PVRFilteringGaussRadiusIndirect: 5 93 | m_PVRFilteringGaussRadiusAO: 2 94 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 95 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 96 | m_PVRFilteringAtrousPositionSigmaAO: 1 97 | m_ExportTrainingData: 0 98 | m_TrainingDataDestination: TrainingData 99 | m_LightProbeSampleCountMultiplier: 4 100 | m_LightingDataAsset: {fileID: 0} 101 | m_LightingSettings: {fileID: 0} 102 | --- !u!196 &4 103 | NavMeshSettings: 104 | serializedVersion: 2 105 | m_ObjectHideFlags: 0 106 | m_BuildSettings: 107 | serializedVersion: 2 108 | agentTypeID: 0 109 | agentRadius: 0.5 110 | agentHeight: 2 111 | agentSlope: 45 112 | agentClimb: 0.4 113 | ledgeDropHeight: 0 114 | maxJumpAcrossDistance: 0 115 | minRegionArea: 2 116 | manualCellSize: 0 117 | cellSize: 0.16666667 118 | manualTileSize: 0 119 | tileSize: 256 120 | accuratePlacement: 0 121 | maxJobWorkers: 0 122 | preserveTilesOutsideBounds: 0 123 | debug: 124 | m_Flags: 0 125 | m_NavMeshData: {fileID: 0} 126 | --- !u!1001 &189146663 127 | PrefabInstance: 128 | m_ObjectHideFlags: 0 129 | serializedVersion: 2 130 | m_Modification: 131 | m_TransformParent: {fileID: 0} 132 | m_Modifications: 133 | - target: {fileID: -8679921383154817045, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 134 | propertyPath: m_RootOrder 135 | value: 1 136 | objectReference: {fileID: 0} 137 | - target: {fileID: -8679921383154817045, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 138 | propertyPath: m_LocalScale.x 139 | value: 0.34172 140 | objectReference: {fileID: 0} 141 | - target: {fileID: -8679921383154817045, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 142 | propertyPath: m_LocalScale.y 143 | value: 0.34172 144 | objectReference: {fileID: 0} 145 | - target: {fileID: -8679921383154817045, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 146 | propertyPath: m_LocalScale.z 147 | value: 0.34172 148 | objectReference: {fileID: 0} 149 | - target: {fileID: -8679921383154817045, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 150 | propertyPath: m_LocalPosition.x 151 | value: 8.81 152 | objectReference: {fileID: 0} 153 | - target: {fileID: -8679921383154817045, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 154 | propertyPath: m_LocalPosition.y 155 | value: 4.169 156 | objectReference: {fileID: 0} 157 | - target: {fileID: -8679921383154817045, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 158 | propertyPath: m_LocalPosition.z 159 | value: 5.024 160 | objectReference: {fileID: 0} 161 | - target: {fileID: -8679921383154817045, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 162 | propertyPath: m_LocalRotation.w 163 | value: 1 164 | objectReference: {fileID: 0} 165 | - target: {fileID: -8679921383154817045, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 166 | propertyPath: m_LocalRotation.x 167 | value: 0 168 | objectReference: {fileID: 0} 169 | - target: {fileID: -8679921383154817045, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 170 | propertyPath: m_LocalRotation.y 171 | value: -0 172 | objectReference: {fileID: 0} 173 | - target: {fileID: -8679921383154817045, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 174 | propertyPath: m_LocalRotation.z 175 | value: -0 176 | objectReference: {fileID: 0} 177 | - target: {fileID: -8679921383154817045, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 178 | propertyPath: m_LocalEulerAnglesHint.x 179 | value: 0 180 | objectReference: {fileID: 0} 181 | - target: {fileID: -8679921383154817045, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 182 | propertyPath: m_LocalEulerAnglesHint.y 183 | value: 6.8878493 184 | objectReference: {fileID: 0} 185 | - target: {fileID: -8679921383154817045, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 186 | propertyPath: m_LocalEulerAnglesHint.z 187 | value: 0 188 | objectReference: {fileID: 0} 189 | - target: {fileID: -7635826562936255635, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 190 | propertyPath: m_Materials.Array.data[0] 191 | value: 192 | objectReference: {fileID: 2100000, guid: 42aa393ea772abc41bff1ca9c17f7e46, type: 2} 193 | - target: {fileID: 919132149155446097, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 194 | propertyPath: m_Name 195 | value: Cube 196 | objectReference: {fileID: 0} 197 | m_RemovedComponents: [] 198 | m_SourcePrefab: {fileID: 100100000, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 199 | --- !u!1 &705507993 200 | GameObject: 201 | m_ObjectHideFlags: 0 202 | m_CorrespondingSourceObject: {fileID: 0} 203 | m_PrefabInstance: {fileID: 0} 204 | m_PrefabAsset: {fileID: 0} 205 | serializedVersion: 6 206 | m_Component: 207 | - component: {fileID: 705507995} 208 | - component: {fileID: 705507994} 209 | m_Layer: 0 210 | m_Name: Directional Light 211 | m_TagString: Untagged 212 | m_Icon: {fileID: 0} 213 | m_NavMeshLayer: 0 214 | m_StaticEditorFlags: 0 215 | m_IsActive: 1 216 | --- !u!108 &705507994 217 | Light: 218 | m_ObjectHideFlags: 0 219 | m_CorrespondingSourceObject: {fileID: 0} 220 | m_PrefabInstance: {fileID: 0} 221 | m_PrefabAsset: {fileID: 0} 222 | m_GameObject: {fileID: 705507993} 223 | m_Enabled: 1 224 | serializedVersion: 10 225 | m_Type: 1 226 | m_Shape: 0 227 | m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} 228 | m_Intensity: 1 229 | m_Range: 10 230 | m_SpotAngle: 30 231 | m_InnerSpotAngle: 21.80208 232 | m_CookieSize: 10 233 | m_Shadows: 234 | m_Type: 2 235 | m_Resolution: -1 236 | m_CustomResolution: -1 237 | m_Strength: 1 238 | m_Bias: 0.05 239 | m_NormalBias: 0.4 240 | m_NearPlane: 0.2 241 | m_CullingMatrixOverride: 242 | e00: 1 243 | e01: 0 244 | e02: 0 245 | e03: 0 246 | e10: 0 247 | e11: 1 248 | e12: 0 249 | e13: 0 250 | e20: 0 251 | e21: 0 252 | e22: 1 253 | e23: 0 254 | e30: 0 255 | e31: 0 256 | e32: 0 257 | e33: 1 258 | m_UseCullingMatrixOverride: 0 259 | m_Cookie: {fileID: 0} 260 | m_DrawHalo: 0 261 | m_Flare: {fileID: 0} 262 | m_RenderMode: 0 263 | m_CullingMask: 264 | serializedVersion: 2 265 | m_Bits: 4294967295 266 | m_RenderingLayerMask: 1 267 | m_Lightmapping: 1 268 | m_LightShadowCasterMode: 0 269 | m_AreaSize: {x: 1, y: 1} 270 | m_BounceIntensity: 1 271 | m_ColorTemperature: 6570 272 | m_UseColorTemperature: 0 273 | m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} 274 | m_UseBoundingSphereOverride: 0 275 | m_UseViewFrustumForShadowCasterCull: 1 276 | m_ShadowRadius: 0 277 | m_ShadowAngle: 0 278 | --- !u!4 &705507995 279 | Transform: 280 | m_ObjectHideFlags: 0 281 | m_CorrespondingSourceObject: {fileID: 0} 282 | m_PrefabInstance: {fileID: 0} 283 | m_PrefabAsset: {fileID: 0} 284 | m_GameObject: {fileID: 705507993} 285 | m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} 286 | m_LocalPosition: {x: 0, y: 3, z: 0} 287 | m_LocalScale: {x: 1, y: 1, z: 1} 288 | m_Children: [] 289 | m_Father: {fileID: 0} 290 | m_RootOrder: 2 291 | m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} 292 | --- !u!1 &963194225 293 | GameObject: 294 | m_ObjectHideFlags: 0 295 | m_CorrespondingSourceObject: {fileID: 0} 296 | m_PrefabInstance: {fileID: 0} 297 | m_PrefabAsset: {fileID: 0} 298 | serializedVersion: 6 299 | m_Component: 300 | - component: {fileID: 963194228} 301 | - component: {fileID: 963194227} 302 | - component: {fileID: 963194226} 303 | m_Layer: 0 304 | m_Name: Main Camera 305 | m_TagString: MainCamera 306 | m_Icon: {fileID: 0} 307 | m_NavMeshLayer: 0 308 | m_StaticEditorFlags: 0 309 | m_IsActive: 1 310 | --- !u!81 &963194226 311 | AudioListener: 312 | m_ObjectHideFlags: 0 313 | m_CorrespondingSourceObject: {fileID: 0} 314 | m_PrefabInstance: {fileID: 0} 315 | m_PrefabAsset: {fileID: 0} 316 | m_GameObject: {fileID: 963194225} 317 | m_Enabled: 1 318 | --- !u!20 &963194227 319 | Camera: 320 | m_ObjectHideFlags: 0 321 | m_CorrespondingSourceObject: {fileID: 0} 322 | m_PrefabInstance: {fileID: 0} 323 | m_PrefabAsset: {fileID: 0} 324 | m_GameObject: {fileID: 963194225} 325 | m_Enabled: 1 326 | serializedVersion: 2 327 | m_ClearFlags: 2 328 | m_BackGroundColor: {r: 0.2830189, g: 0.2830189, b: 0.2830189, a: 0} 329 | m_projectionMatrixMode: 1 330 | m_GateFitMode: 2 331 | m_FOVAxisMode: 0 332 | m_SensorSize: {x: 36, y: 24} 333 | m_LensShift: {x: 0, y: 0} 334 | m_FocalLength: 50 335 | m_NormalizedViewPortRect: 336 | serializedVersion: 2 337 | x: 0 338 | y: 0 339 | width: 1 340 | height: 1 341 | near clip plane: 0.3 342 | far clip plane: 1000 343 | field of view: 30 344 | orthographic: 0 345 | orthographic size: 5 346 | m_Depth: -1 347 | m_CullingMask: 348 | serializedVersion: 2 349 | m_Bits: 4294967295 350 | m_RenderingPath: -1 351 | m_TargetTexture: {fileID: 0} 352 | m_TargetDisplay: 0 353 | m_TargetEye: 3 354 | m_HDR: 1 355 | m_AllowMSAA: 1 356 | m_AllowDynamicResolution: 0 357 | m_ForceIntoRT: 0 358 | m_OcclusionCulling: 1 359 | m_StereoConvergence: 10 360 | m_StereoSeparation: 0.022 361 | --- !u!4 &963194228 362 | Transform: 363 | m_ObjectHideFlags: 0 364 | m_CorrespondingSourceObject: {fileID: 0} 365 | m_PrefabInstance: {fileID: 0} 366 | m_PrefabAsset: {fileID: 0} 367 | m_GameObject: {fileID: 963194225} 368 | m_LocalRotation: {x: 0.23776641, y: 0.22856621, z: -0.05767412, w: 0.94228363} 369 | m_LocalPosition: {x: 8.338, y: 5.562, z: 2.301} 370 | m_LocalScale: {x: 1, y: 1, z: 1} 371 | m_Children: [] 372 | m_Father: {fileID: 0} 373 | m_RootOrder: 0 374 | m_LocalEulerAnglesHint: {x: 28.324, y: 27.269, z: 0} 375 | --- !u!1 &2133100136 stripped 376 | GameObject: 377 | m_CorrespondingSourceObject: {fileID: 919132149155446097, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 378 | m_PrefabInstance: {fileID: 189146663} 379 | m_PrefabAsset: {fileID: 0} 380 | --- !u!111 &2133100137 381 | Animation: 382 | m_ObjectHideFlags: 0 383 | m_CorrespondingSourceObject: {fileID: 0} 384 | m_PrefabInstance: {fileID: 0} 385 | m_PrefabAsset: {fileID: 0} 386 | m_GameObject: {fileID: 2133100136} 387 | m_Enabled: 1 388 | serializedVersion: 3 389 | m_Animation: {fileID: 7400000, guid: 23f241e3645627542ba867e2643eb3bf, type: 2} 390 | m_Animations: 391 | - {fileID: 7400000, guid: 23f241e3645627542ba867e2643eb3bf, type: 2} 392 | m_WrapMode: 0 393 | m_PlayAutomatically: 1 394 | m_AnimatePhysics: 0 395 | m_CullingType: 0 396 | --- !u!4 &362274408018181042 397 | Transform: 398 | m_ObjectHideFlags: 0 399 | m_CorrespondingSourceObject: {fileID: 0} 400 | m_PrefabInstance: {fileID: 0} 401 | m_PrefabAsset: {fileID: 0} 402 | m_GameObject: {fileID: 1030442553646981384} 403 | m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} 404 | m_LocalPosition: {x: 9.91, y: 4.169, z: 4.18} 405 | m_LocalScale: {x: 0.34172, y: 0.34172, z: 0.34172} 406 | m_Children: 407 | - {fileID: 970308657146120938} 408 | m_Father: {fileID: 0} 409 | m_RootOrder: 3 410 | m_LocalEulerAnglesHint: {x: 0, y: 6.8878493, z: 0} 411 | --- !u!4 &970308657146120938 412 | Transform: 413 | m_ObjectHideFlags: 0 414 | m_CorrespondingSourceObject: {fileID: 0} 415 | m_PrefabInstance: {fileID: 0} 416 | m_PrefabAsset: {fileID: 0} 417 | m_GameObject: {fileID: 8340972085177244113} 418 | m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} 419 | m_LocalPosition: {x: -0, y: 0, z: 0} 420 | m_LocalScale: {x: 1, y: 1, z: 1} 421 | m_Children: [] 422 | m_Father: {fileID: 362274408018181042} 423 | m_RootOrder: 0 424 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 425 | --- !u!1 &1030442553646981384 426 | GameObject: 427 | m_ObjectHideFlags: 0 428 | m_CorrespondingSourceObject: {fileID: 0} 429 | m_PrefabInstance: {fileID: 0} 430 | m_PrefabAsset: {fileID: 0} 431 | serializedVersion: 6 432 | m_Component: 433 | - component: {fileID: 362274408018181042} 434 | - component: {fileID: 1030442553646981385} 435 | m_Layer: 0 436 | m_Name: Cube W shader 437 | m_TagString: Untagged 438 | m_Icon: {fileID: 0} 439 | m_NavMeshLayer: 0 440 | m_StaticEditorFlags: 0 441 | m_IsActive: 1 442 | --- !u!111 &1030442553646981385 443 | Animation: 444 | m_ObjectHideFlags: 0 445 | m_CorrespondingSourceObject: {fileID: 0} 446 | m_PrefabInstance: {fileID: 0} 447 | m_PrefabAsset: {fileID: 0} 448 | m_GameObject: {fileID: 1030442553646981384} 449 | m_Enabled: 1 450 | serializedVersion: 3 451 | m_Animation: {fileID: 7400000, guid: 23f241e3645627542ba867e2643eb3bf, type: 2} 452 | m_Animations: 453 | - {fileID: 7400000, guid: 23f241e3645627542ba867e2643eb3bf, type: 2} 454 | m_WrapMode: 0 455 | m_PlayAutomatically: 1 456 | m_AnimatePhysics: 0 457 | m_CullingType: 0 458 | --- !u!23 &1478781465275619124 459 | MeshRenderer: 460 | m_ObjectHideFlags: 0 461 | m_CorrespondingSourceObject: {fileID: 0} 462 | m_PrefabInstance: {fileID: 0} 463 | m_PrefabAsset: {fileID: 0} 464 | m_GameObject: {fileID: 8340972085177244113} 465 | m_Enabled: 1 466 | m_CastShadows: 1 467 | m_ReceiveShadows: 1 468 | m_DynamicOccludee: 1 469 | m_MotionVectors: 1 470 | m_LightProbeUsage: 1 471 | m_ReflectionProbeUsage: 1 472 | m_RayTracingMode: 2 473 | m_RayTraceProcedural: 0 474 | m_RenderingLayerMask: 1 475 | m_RendererPriority: 0 476 | m_Materials: 477 | - {fileID: 2100000, guid: 80200ab3441e1e04b8950c70abcadb05, type: 2} 478 | m_StaticBatchInfo: 479 | firstSubMesh: 0 480 | subMeshCount: 0 481 | m_StaticBatchRoot: {fileID: 0} 482 | m_ProbeAnchor: {fileID: 0} 483 | m_LightProbeVolumeOverride: {fileID: 0} 484 | m_ScaleInLightmap: 1 485 | m_ReceiveGI: 1 486 | m_PreserveUVs: 0 487 | m_IgnoreNormalsForChartDetection: 0 488 | m_ImportantGI: 0 489 | m_StitchLightmapSeams: 1 490 | m_SelectedEditorRenderState: 3 491 | m_MinimumChartSize: 4 492 | m_AutoUVMaxDistance: 0.5 493 | m_AutoUVMaxAngle: 89 494 | m_LightmapParameters: {fileID: 0} 495 | m_SortingLayerID: 0 496 | m_SortingLayer: 0 497 | m_SortingOrder: 0 498 | m_AdditionalVertexStreams: {fileID: 0} 499 | --- !u!33 &2711190930665010080 500 | MeshFilter: 501 | m_ObjectHideFlags: 0 502 | m_CorrespondingSourceObject: {fileID: 0} 503 | m_PrefabInstance: {fileID: 0} 504 | m_PrefabAsset: {fileID: 0} 505 | m_GameObject: {fileID: 8340972085177244113} 506 | m_Mesh: {fileID: -2432090755550338912, guid: b6ed234cd5f5ef947b7620a8c3b3a73a, type: 3} 507 | --- !u!1 &8340972085177244113 508 | GameObject: 509 | m_ObjectHideFlags: 0 510 | m_CorrespondingSourceObject: {fileID: 0} 511 | m_PrefabInstance: {fileID: 0} 512 | m_PrefabAsset: {fileID: 0} 513 | serializedVersion: 6 514 | m_Component: 515 | - component: {fileID: 970308657146120938} 516 | - component: {fileID: 2711190930665010080} 517 | - component: {fileID: 1478781465275619124} 518 | m_Layer: 0 519 | m_Name: default 520 | m_TagString: Untagged 521 | m_Icon: {fileID: 0} 522 | m_NavMeshLayer: 0 523 | m_StaticEditorFlags: 0 524 | m_IsActive: 1 525 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!129 &1 4 | PlayerSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 22 7 | productGUID: 0ce59417a3ed3704eba32b485a68ab72 8 | AndroidProfiler: 0 9 | AndroidFilterTouchesWhenObscured: 0 10 | AndroidEnableSustainedPerformanceMode: 0 11 | defaultScreenOrientation: 4 12 | targetDevice: 2 13 | useOnDemandResources: 0 14 | accelerometerFrequency: 60 15 | companyName: DefaultCompany 16 | productName: 3D Smooth Pixel Filtering 17 | defaultCursor: {fileID: 0} 18 | cursorHotspot: {x: 0, y: 0} 19 | m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} 20 | m_ShowUnitySplashScreen: 1 21 | m_ShowUnitySplashLogo: 1 22 | m_SplashScreenOverlayOpacity: 1 23 | m_SplashScreenAnimation: 1 24 | m_SplashScreenLogoStyle: 1 25 | m_SplashScreenDrawMode: 0 26 | m_SplashScreenBackgroundAnimationZoom: 1 27 | m_SplashScreenLogoAnimationZoom: 1 28 | m_SplashScreenBackgroundLandscapeAspect: 1 29 | m_SplashScreenBackgroundPortraitAspect: 1 30 | m_SplashScreenBackgroundLandscapeUvs: 31 | serializedVersion: 2 32 | x: 0 33 | y: 0 34 | width: 1 35 | height: 1 36 | m_SplashScreenBackgroundPortraitUvs: 37 | serializedVersion: 2 38 | x: 0 39 | y: 0 40 | width: 1 41 | height: 1 42 | m_SplashScreenLogos: [] 43 | m_VirtualRealitySplashScreen: {fileID: 0} 44 | m_HolographicTrackingLossScreen: {fileID: 0} 45 | defaultScreenWidth: 1024 46 | defaultScreenHeight: 768 47 | defaultScreenWidthWeb: 960 48 | defaultScreenHeightWeb: 600 49 | m_StereoRenderingPath: 0 50 | m_ActiveColorSpace: 0 51 | m_MTRendering: 1 52 | mipStripping: 0 53 | numberOfMipsStripped: 0 54 | m_StackTraceTypes: 010000000100000001000000010000000100000001000000 55 | iosShowActivityIndicatorOnLoading: -1 56 | androidShowActivityIndicatorOnLoading: -1 57 | iosUseCustomAppBackgroundBehavior: 0 58 | iosAllowHTTPDownload: 1 59 | allowedAutorotateToPortrait: 1 60 | allowedAutorotateToPortraitUpsideDown: 1 61 | allowedAutorotateToLandscapeRight: 1 62 | allowedAutorotateToLandscapeLeft: 1 63 | useOSAutorotation: 1 64 | use32BitDisplayBuffer: 1 65 | preserveFramebufferAlpha: 0 66 | disableDepthAndStencilBuffers: 0 67 | androidStartInFullscreen: 1 68 | androidRenderOutsideSafeArea: 1 69 | androidUseSwappy: 1 70 | androidBlitType: 0 71 | defaultIsNativeResolution: 1 72 | macRetinaSupport: 1 73 | runInBackground: 1 74 | captureSingleScreen: 0 75 | muteOtherAudioSources: 0 76 | Prepare IOS For Recording: 0 77 | Force IOS Speakers When Recording: 0 78 | deferSystemGesturesMode: 0 79 | hideHomeButton: 0 80 | submitAnalytics: 1 81 | usePlayerLog: 1 82 | bakeCollisionMeshes: 0 83 | forceSingleInstance: 0 84 | useFlipModelSwapchain: 1 85 | resizableWindow: 0 86 | useMacAppStoreValidation: 0 87 | macAppStoreCategory: public.app-category.games 88 | gpuSkinning: 1 89 | xboxPIXTextureCapture: 0 90 | xboxEnableAvatar: 0 91 | xboxEnableKinect: 0 92 | xboxEnableKinectAutoTracking: 0 93 | xboxEnableFitness: 0 94 | visibleInBackground: 1 95 | allowFullscreenSwitch: 1 96 | fullscreenMode: 1 97 | xboxSpeechDB: 0 98 | xboxEnableHeadOrientation: 0 99 | xboxEnableGuest: 0 100 | xboxEnablePIXSampling: 0 101 | metalFramebufferOnly: 0 102 | xboxOneResolution: 0 103 | xboxOneSResolution: 0 104 | xboxOneXResolution: 3 105 | xboxOneMonoLoggingLevel: 0 106 | xboxOneLoggingLevel: 1 107 | xboxOneDisableEsram: 0 108 | xboxOneEnableTypeOptimization: 0 109 | xboxOnePresentImmediateThreshold: 0 110 | switchQueueCommandMemory: 0 111 | switchQueueControlMemory: 16384 112 | switchQueueComputeMemory: 262144 113 | switchNVNShaderPoolsGranularity: 33554432 114 | switchNVNDefaultPoolsGranularity: 16777216 115 | switchNVNOtherPoolsGranularity: 16777216 116 | switchNVNMaxPublicTextureIDCount: 0 117 | switchNVNMaxPublicSamplerIDCount: 0 118 | stadiaPresentMode: 0 119 | stadiaTargetFramerate: 0 120 | vulkanNumSwapchainBuffers: 3 121 | vulkanEnableSetSRGBWrite: 0 122 | vulkanEnablePreTransform: 0 123 | vulkanEnableLateAcquireNextImage: 0 124 | m_SupportedAspectRatios: 125 | 4:3: 1 126 | 5:4: 1 127 | 16:10: 1 128 | 16:9: 1 129 | Others: 1 130 | bundleVersion: 0.1 131 | preloadedAssets: [] 132 | metroInputSource: 0 133 | wsaTransparentSwapchain: 0 134 | m_HolographicPauseOnTrackingLoss: 1 135 | xboxOneDisableKinectGpuReservation: 1 136 | xboxOneEnable7thCore: 1 137 | vrSettings: 138 | enable360StereoCapture: 0 139 | isWsaHolographicRemotingEnabled: 0 140 | enableFrameTimingStats: 0 141 | useHDRDisplay: 0 142 | D3DHDRBitDepth: 0 143 | m_ColorGamuts: 00000000 144 | targetPixelDensity: 30 145 | resolutionScalingMode: 0 146 | androidSupportedAspectRatio: 1 147 | androidMaxAspectRatio: 2.1 148 | applicationIdentifier: {} 149 | buildNumber: 150 | Standalone: 0 151 | iPhone: 0 152 | tvOS: 0 153 | overrideDefaultApplicationIdentifier: 0 154 | AndroidBundleVersionCode: 1 155 | AndroidMinSdkVersion: 19 156 | AndroidTargetSdkVersion: 0 157 | AndroidPreferredInstallLocation: 1 158 | aotOptions: 159 | stripEngineCode: 1 160 | iPhoneStrippingLevel: 0 161 | iPhoneScriptCallOptimization: 0 162 | ForceInternetPermission: 0 163 | ForceSDCardPermission: 0 164 | CreateWallpaper: 0 165 | APKExpansionFiles: 0 166 | keepLoadedShadersAlive: 0 167 | StripUnusedMeshComponents: 1 168 | VertexChannelCompressionMask: 4054 169 | iPhoneSdkVersion: 988 170 | iOSTargetOSVersionString: 11.0 171 | tvOSSdkVersion: 0 172 | tvOSRequireExtendedGameController: 0 173 | tvOSTargetOSVersionString: 11.0 174 | uIPrerenderedIcon: 0 175 | uIRequiresPersistentWiFi: 0 176 | uIRequiresFullScreen: 1 177 | uIStatusBarHidden: 1 178 | uIExitOnSuspend: 0 179 | uIStatusBarStyle: 0 180 | appleTVSplashScreen: {fileID: 0} 181 | appleTVSplashScreen2x: {fileID: 0} 182 | tvOSSmallIconLayers: [] 183 | tvOSSmallIconLayers2x: [] 184 | tvOSLargeIconLayers: [] 185 | tvOSLargeIconLayers2x: [] 186 | tvOSTopShelfImageLayers: [] 187 | tvOSTopShelfImageLayers2x: [] 188 | tvOSTopShelfImageWideLayers: [] 189 | tvOSTopShelfImageWideLayers2x: [] 190 | iOSLaunchScreenType: 0 191 | iOSLaunchScreenPortrait: {fileID: 0} 192 | iOSLaunchScreenLandscape: {fileID: 0} 193 | iOSLaunchScreenBackgroundColor: 194 | serializedVersion: 2 195 | rgba: 0 196 | iOSLaunchScreenFillPct: 100 197 | iOSLaunchScreenSize: 100 198 | iOSLaunchScreenCustomXibPath: 199 | iOSLaunchScreeniPadType: 0 200 | iOSLaunchScreeniPadImage: {fileID: 0} 201 | iOSLaunchScreeniPadBackgroundColor: 202 | serializedVersion: 2 203 | rgba: 0 204 | iOSLaunchScreeniPadFillPct: 100 205 | iOSLaunchScreeniPadSize: 100 206 | iOSLaunchScreeniPadCustomXibPath: 207 | iOSLaunchScreenCustomStoryboardPath: 208 | iOSLaunchScreeniPadCustomStoryboardPath: 209 | iOSDeviceRequirements: [] 210 | iOSURLSchemes: [] 211 | iOSBackgroundModes: 0 212 | iOSMetalForceHardShadows: 0 213 | metalEditorSupport: 1 214 | metalAPIValidation: 1 215 | iOSRenderExtraFrameOnPause: 0 216 | iosCopyPluginsCodeInsteadOfSymlink: 0 217 | appleDeveloperTeamID: 218 | iOSManualSigningProvisioningProfileID: 219 | tvOSManualSigningProvisioningProfileID: 220 | iOSManualSigningProvisioningProfileType: 0 221 | tvOSManualSigningProvisioningProfileType: 0 222 | appleEnableAutomaticSigning: 0 223 | iOSRequireARKit: 0 224 | iOSAutomaticallyDetectAndAddCapabilities: 1 225 | appleEnableProMotion: 0 226 | shaderPrecisionModel: 0 227 | clonedFromGUID: c0afd0d1d80e3634a9dac47e8a0426ea 228 | templatePackageId: com.unity.template.3d@5.0.4 229 | templateDefaultScene: Assets/Scenes/SampleScene.unity 230 | useCustomMainManifest: 0 231 | useCustomLauncherManifest: 0 232 | useCustomMainGradleTemplate: 0 233 | useCustomLauncherGradleManifest: 0 234 | useCustomBaseGradleTemplate: 0 235 | useCustomGradlePropertiesTemplate: 0 236 | useCustomProguardFile: 0 237 | AndroidTargetArchitectures: 1 238 | AndroidSplashScreenScale: 0 239 | androidSplashScreen: {fileID: 0} 240 | AndroidKeystoreName: 241 | AndroidKeyaliasName: 242 | AndroidBuildApkPerCpuArchitecture: 0 243 | AndroidTVCompatibility: 0 244 | AndroidIsGame: 1 245 | AndroidEnableTango: 0 246 | androidEnableBanner: 1 247 | androidUseLowAccuracyLocation: 0 248 | androidUseCustomKeystore: 0 249 | m_AndroidBanners: 250 | - width: 320 251 | height: 180 252 | banner: {fileID: 0} 253 | androidGamepadSupportLevel: 0 254 | AndroidMinifyWithR8: 0 255 | AndroidMinifyRelease: 0 256 | AndroidMinifyDebug: 0 257 | AndroidValidateAppBundleSize: 1 258 | AndroidAppBundleSizeToValidate: 150 259 | m_BuildTargetIcons: [] 260 | m_BuildTargetPlatformIcons: [] 261 | m_BuildTargetBatching: 262 | - m_BuildTarget: Standalone 263 | m_StaticBatching: 1 264 | m_DynamicBatching: 0 265 | - m_BuildTarget: tvOS 266 | m_StaticBatching: 1 267 | m_DynamicBatching: 0 268 | - m_BuildTarget: Android 269 | m_StaticBatching: 1 270 | m_DynamicBatching: 0 271 | - m_BuildTarget: iPhone 272 | m_StaticBatching: 1 273 | m_DynamicBatching: 0 274 | - m_BuildTarget: WebGL 275 | m_StaticBatching: 0 276 | m_DynamicBatching: 0 277 | m_BuildTargetGraphicsJobs: 278 | - m_BuildTarget: MacStandaloneSupport 279 | m_GraphicsJobs: 0 280 | - m_BuildTarget: Switch 281 | m_GraphicsJobs: 1 282 | - m_BuildTarget: MetroSupport 283 | m_GraphicsJobs: 1 284 | - m_BuildTarget: AppleTVSupport 285 | m_GraphicsJobs: 0 286 | - m_BuildTarget: BJMSupport 287 | m_GraphicsJobs: 1 288 | - m_BuildTarget: LinuxStandaloneSupport 289 | m_GraphicsJobs: 1 290 | - m_BuildTarget: PS4Player 291 | m_GraphicsJobs: 1 292 | - m_BuildTarget: iOSSupport 293 | m_GraphicsJobs: 0 294 | - m_BuildTarget: WindowsStandaloneSupport 295 | m_GraphicsJobs: 1 296 | - m_BuildTarget: XboxOnePlayer 297 | m_GraphicsJobs: 1 298 | - m_BuildTarget: LuminSupport 299 | m_GraphicsJobs: 0 300 | - m_BuildTarget: AndroidPlayer 301 | m_GraphicsJobs: 0 302 | - m_BuildTarget: WebGLSupport 303 | m_GraphicsJobs: 0 304 | m_BuildTargetGraphicsJobMode: 305 | - m_BuildTarget: PS4Player 306 | m_GraphicsJobMode: 0 307 | - m_BuildTarget: XboxOnePlayer 308 | m_GraphicsJobMode: 0 309 | m_BuildTargetGraphicsAPIs: 310 | - m_BuildTarget: AndroidPlayer 311 | m_APIs: 150000000b000000 312 | m_Automatic: 0 313 | - m_BuildTarget: iOSSupport 314 | m_APIs: 10000000 315 | m_Automatic: 1 316 | - m_BuildTarget: AppleTVSupport 317 | m_APIs: 10000000 318 | m_Automatic: 1 319 | - m_BuildTarget: WebGLSupport 320 | m_APIs: 0b000000 321 | m_Automatic: 1 322 | m_BuildTargetVRSettings: 323 | - m_BuildTarget: Standalone 324 | m_Enabled: 0 325 | m_Devices: 326 | - Oculus 327 | - OpenVR 328 | openGLRequireES31: 0 329 | openGLRequireES31AEP: 0 330 | openGLRequireES32: 0 331 | m_TemplateCustomTags: {} 332 | mobileMTRendering: 333 | Android: 1 334 | iPhone: 1 335 | tvOS: 1 336 | m_BuildTargetGroupLightmapEncodingQuality: [] 337 | m_BuildTargetGroupLightmapSettings: [] 338 | m_BuildTargetNormalMapEncoding: [] 339 | playModeTestRunnerEnabled: 0 340 | runPlayModeTestAsEditModeTest: 0 341 | actionOnDotNetUnhandledException: 1 342 | enableInternalProfiler: 0 343 | logObjCUncaughtExceptions: 1 344 | enableCrashReportAPI: 0 345 | cameraUsageDescription: 346 | locationUsageDescription: 347 | microphoneUsageDescription: 348 | switchNMETAOverride: 349 | switchNetLibKey: 350 | switchSocketMemoryPoolSize: 6144 351 | switchSocketAllocatorPoolSize: 128 352 | switchSocketConcurrencyLimit: 14 353 | switchScreenResolutionBehavior: 2 354 | switchUseCPUProfiler: 0 355 | switchUseGOLDLinker: 0 356 | switchApplicationID: 0x01004b9000490000 357 | switchNSODependencies: 358 | switchTitleNames_0: 359 | switchTitleNames_1: 360 | switchTitleNames_2: 361 | switchTitleNames_3: 362 | switchTitleNames_4: 363 | switchTitleNames_5: 364 | switchTitleNames_6: 365 | switchTitleNames_7: 366 | switchTitleNames_8: 367 | switchTitleNames_9: 368 | switchTitleNames_10: 369 | switchTitleNames_11: 370 | switchTitleNames_12: 371 | switchTitleNames_13: 372 | switchTitleNames_14: 373 | switchTitleNames_15: 374 | switchPublisherNames_0: 375 | switchPublisherNames_1: 376 | switchPublisherNames_2: 377 | switchPublisherNames_3: 378 | switchPublisherNames_4: 379 | switchPublisherNames_5: 380 | switchPublisherNames_6: 381 | switchPublisherNames_7: 382 | switchPublisherNames_8: 383 | switchPublisherNames_9: 384 | switchPublisherNames_10: 385 | switchPublisherNames_11: 386 | switchPublisherNames_12: 387 | switchPublisherNames_13: 388 | switchPublisherNames_14: 389 | switchPublisherNames_15: 390 | switchIcons_0: {fileID: 0} 391 | switchIcons_1: {fileID: 0} 392 | switchIcons_2: {fileID: 0} 393 | switchIcons_3: {fileID: 0} 394 | switchIcons_4: {fileID: 0} 395 | switchIcons_5: {fileID: 0} 396 | switchIcons_6: {fileID: 0} 397 | switchIcons_7: {fileID: 0} 398 | switchIcons_8: {fileID: 0} 399 | switchIcons_9: {fileID: 0} 400 | switchIcons_10: {fileID: 0} 401 | switchIcons_11: {fileID: 0} 402 | switchIcons_12: {fileID: 0} 403 | switchIcons_13: {fileID: 0} 404 | switchIcons_14: {fileID: 0} 405 | switchIcons_15: {fileID: 0} 406 | switchSmallIcons_0: {fileID: 0} 407 | switchSmallIcons_1: {fileID: 0} 408 | switchSmallIcons_2: {fileID: 0} 409 | switchSmallIcons_3: {fileID: 0} 410 | switchSmallIcons_4: {fileID: 0} 411 | switchSmallIcons_5: {fileID: 0} 412 | switchSmallIcons_6: {fileID: 0} 413 | switchSmallIcons_7: {fileID: 0} 414 | switchSmallIcons_8: {fileID: 0} 415 | switchSmallIcons_9: {fileID: 0} 416 | switchSmallIcons_10: {fileID: 0} 417 | switchSmallIcons_11: {fileID: 0} 418 | switchSmallIcons_12: {fileID: 0} 419 | switchSmallIcons_13: {fileID: 0} 420 | switchSmallIcons_14: {fileID: 0} 421 | switchSmallIcons_15: {fileID: 0} 422 | switchManualHTML: 423 | switchAccessibleURLs: 424 | switchLegalInformation: 425 | switchMainThreadStackSize: 1048576 426 | switchPresenceGroupId: 427 | switchLogoHandling: 0 428 | switchReleaseVersion: 0 429 | switchDisplayVersion: 1.0.0 430 | switchStartupUserAccount: 0 431 | switchTouchScreenUsage: 0 432 | switchSupportedLanguagesMask: 0 433 | switchLogoType: 0 434 | switchApplicationErrorCodeCategory: 435 | switchUserAccountSaveDataSize: 0 436 | switchUserAccountSaveDataJournalSize: 0 437 | switchApplicationAttribute: 0 438 | switchCardSpecSize: -1 439 | switchCardSpecClock: -1 440 | switchRatingsMask: 0 441 | switchRatingsInt_0: 0 442 | switchRatingsInt_1: 0 443 | switchRatingsInt_2: 0 444 | switchRatingsInt_3: 0 445 | switchRatingsInt_4: 0 446 | switchRatingsInt_5: 0 447 | switchRatingsInt_6: 0 448 | switchRatingsInt_7: 0 449 | switchRatingsInt_8: 0 450 | switchRatingsInt_9: 0 451 | switchRatingsInt_10: 0 452 | switchRatingsInt_11: 0 453 | switchRatingsInt_12: 0 454 | switchLocalCommunicationIds_0: 455 | switchLocalCommunicationIds_1: 456 | switchLocalCommunicationIds_2: 457 | switchLocalCommunicationIds_3: 458 | switchLocalCommunicationIds_4: 459 | switchLocalCommunicationIds_5: 460 | switchLocalCommunicationIds_6: 461 | switchLocalCommunicationIds_7: 462 | switchParentalControl: 0 463 | switchAllowsScreenshot: 1 464 | switchAllowsVideoCapturing: 1 465 | switchAllowsRuntimeAddOnContentInstall: 0 466 | switchDataLossConfirmation: 0 467 | switchUserAccountLockEnabled: 0 468 | switchSystemResourceMemory: 16777216 469 | switchSupportedNpadStyles: 22 470 | switchNativeFsCacheSize: 32 471 | switchIsHoldTypeHorizontal: 0 472 | switchSupportedNpadCount: 8 473 | switchSocketConfigEnabled: 0 474 | switchTcpInitialSendBufferSize: 32 475 | switchTcpInitialReceiveBufferSize: 64 476 | switchTcpAutoSendBufferSizeMax: 256 477 | switchTcpAutoReceiveBufferSizeMax: 256 478 | switchUdpSendBufferSize: 9 479 | switchUdpReceiveBufferSize: 42 480 | switchSocketBufferEfficiency: 4 481 | switchSocketInitializeEnabled: 1 482 | switchNetworkInterfaceManagerInitializeEnabled: 1 483 | switchPlayerConnectionEnabled: 1 484 | switchUseNewStyleFilepaths: 0 485 | switchUseMicroSleepForYield: 1 486 | switchMicroSleepForYieldTime: 25 487 | ps4NPAgeRating: 12 488 | ps4NPTitleSecret: 489 | ps4NPTrophyPackPath: 490 | ps4ParentalLevel: 11 491 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000 492 | ps4Category: 0 493 | ps4MasterVersion: 01.00 494 | ps4AppVersion: 01.00 495 | ps4AppType: 0 496 | ps4ParamSfxPath: 497 | ps4VideoOutPixelFormat: 0 498 | ps4VideoOutInitialWidth: 1920 499 | ps4VideoOutBaseModeInitialWidth: 1920 500 | ps4VideoOutReprojectionRate: 60 501 | ps4PronunciationXMLPath: 502 | ps4PronunciationSIGPath: 503 | ps4BackgroundImagePath: 504 | ps4StartupImagePath: 505 | ps4StartupImagesFolder: 506 | ps4IconImagesFolder: 507 | ps4SaveDataImagePath: 508 | ps4SdkOverride: 509 | ps4BGMPath: 510 | ps4ShareFilePath: 511 | ps4ShareOverlayImagePath: 512 | ps4PrivacyGuardImagePath: 513 | ps4ExtraSceSysFile: 514 | ps4NPtitleDatPath: 515 | ps4RemotePlayKeyAssignment: -1 516 | ps4RemotePlayKeyMappingDir: 517 | ps4PlayTogetherPlayerCount: 0 518 | ps4EnterButtonAssignment: 1 519 | ps4ApplicationParam1: 0 520 | ps4ApplicationParam2: 0 521 | ps4ApplicationParam3: 0 522 | ps4ApplicationParam4: 0 523 | ps4DownloadDataSize: 0 524 | ps4GarlicHeapSize: 2048 525 | ps4ProGarlicHeapSize: 2560 526 | playerPrefsMaxSize: 32768 527 | ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ 528 | ps4pnSessions: 1 529 | ps4pnPresence: 1 530 | ps4pnFriends: 1 531 | ps4pnGameCustomData: 1 532 | playerPrefsSupport: 0 533 | enableApplicationExit: 0 534 | resetTempFolder: 1 535 | restrictedAudioUsageRights: 0 536 | ps4UseResolutionFallback: 0 537 | ps4ReprojectionSupport: 0 538 | ps4UseAudio3dBackend: 0 539 | ps4UseLowGarlicFragmentationMode: 1 540 | ps4SocialScreenEnabled: 0 541 | ps4ScriptOptimizationLevel: 0 542 | ps4Audio3dVirtualSpeakerCount: 14 543 | ps4attribCpuUsage: 0 544 | ps4PatchPkgPath: 545 | ps4PatchLatestPkgPath: 546 | ps4PatchChangeinfoPath: 547 | ps4PatchDayOne: 0 548 | ps4attribUserManagement: 0 549 | ps4attribMoveSupport: 0 550 | ps4attrib3DSupport: 0 551 | ps4attribShareSupport: 0 552 | ps4attribExclusiveVR: 0 553 | ps4disableAutoHideSplash: 0 554 | ps4videoRecordingFeaturesUsed: 0 555 | ps4contentSearchFeaturesUsed: 0 556 | ps4CompatibilityPS5: 0 557 | ps4GPU800MHz: 1 558 | ps4attribEyeToEyeDistanceSettingVR: 0 559 | ps4IncludedModules: [] 560 | ps4attribVROutputEnabled: 0 561 | monoEnv: 562 | splashScreenBackgroundSourceLandscape: {fileID: 0} 563 | splashScreenBackgroundSourcePortrait: {fileID: 0} 564 | blurSplashScreenBackground: 1 565 | spritePackerPolicy: 566 | webGLMemorySize: 16 567 | webGLExceptionSupport: 1 568 | webGLNameFilesAsHashes: 0 569 | webGLDataCaching: 1 570 | webGLDebugSymbols: 0 571 | webGLEmscriptenArgs: 572 | webGLModulesDirectory: 573 | webGLTemplate: APPLICATION:Default 574 | webGLAnalyzeBuildSize: 0 575 | webGLUseEmbeddedResources: 0 576 | webGLCompressionFormat: 1 577 | webGLWasmArithmeticExceptions: 0 578 | webGLLinkerTarget: 1 579 | webGLThreadsSupport: 0 580 | webGLDecompressionFallback: 0 581 | scriptingDefineSymbols: {} 582 | additionalCompilerArguments: {} 583 | platformArchitecture: {} 584 | scriptingBackend: {} 585 | il2cppCompilerConfiguration: {} 586 | managedStrippingLevel: {} 587 | incrementalIl2cppBuild: {} 588 | suppressCommonWarnings: 1 589 | allowUnsafeCode: 0 590 | useDeterministicCompilation: 1 591 | useReferenceAssemblies: 1 592 | enableRoslynAnalyzers: 1 593 | additionalIl2CppArgs: 594 | scriptingRuntimeVersion: 1 595 | gcIncremental: 1 596 | assemblyVersionValidation: 1 597 | gcWBarrierValidation: 0 598 | apiCompatibilityLevelPerPlatform: {} 599 | m_RenderingPath: 1 600 | m_MobileRenderingPath: 1 601 | metroPackageName: Template3D 602 | metroPackageVersion: 1.0.0.0 603 | metroCertificatePath: 604 | metroCertificatePassword: 605 | metroCertificateSubject: 606 | metroCertificateIssuer: 607 | metroCertificateNotAfter: 0000000000000000 608 | metroApplicationDescription: Template_3D 609 | wsaImages: {} 610 | metroTileShortName: 3D Smooth Pixel Filtering 611 | metroTileShowName: 0 612 | metroMediumTileShowName: 0 613 | metroLargeTileShowName: 0 614 | metroWideTileShowName: 0 615 | metroSupportStreamingInstall: 0 616 | metroLastRequiredScene: 0 617 | metroDefaultTileSize: 1 618 | metroTileForegroundText: 2 619 | metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} 620 | metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1} 621 | metroSplashScreenUseBackgroundColor: 0 622 | platformCapabilities: {} 623 | metroTargetDeviceFamilies: {} 624 | metroFTAName: 625 | metroFTAFileTypes: [] 626 | metroProtocolName: 627 | XboxOneProductId: 628 | XboxOneUpdateKey: 629 | XboxOneSandboxId: 630 | XboxOneContentId: 631 | XboxOneTitleId: 632 | XboxOneSCId: 633 | XboxOneGameOsOverridePath: 634 | XboxOnePackagingOverridePath: 635 | XboxOneAppManifestOverridePath: 636 | XboxOneVersion: 1.0.0.0 637 | XboxOnePackageEncryption: 0 638 | XboxOnePackageUpdateGranularity: 2 639 | XboxOneDescription: 640 | XboxOneLanguage: 641 | - enus 642 | XboxOneCapability: [] 643 | XboxOneGameRating: {} 644 | XboxOneIsContentPackage: 0 645 | XboxOneEnhancedXboxCompatibilityMode: 0 646 | XboxOneEnableGPUVariability: 1 647 | XboxOneSockets: {} 648 | XboxOneSplashScreen: {fileID: 0} 649 | XboxOneAllowedProductIds: [] 650 | XboxOnePersistentLocalStorageSize: 0 651 | XboxOneXTitleMemory: 8 652 | XboxOneOverrideIdentityName: 653 | XboxOneOverrideIdentityPublisher: 654 | vrEditorSettings: {} 655 | cloudServicesEnabled: 656 | UNet: 1 657 | luminIcon: 658 | m_Name: 659 | m_ModelFolderPath: 660 | m_PortalFolderPath: 661 | luminCert: 662 | m_CertPath: 663 | m_SignPackage: 1 664 | luminIsChannelApp: 0 665 | luminVersion: 666 | m_VersionCode: 1 667 | m_VersionName: 668 | apiCompatibilityLevel: 6 669 | activeInputHandler: 0 670 | cloudProjectId: 671 | framebufferDepthMemorylessMode: 0 672 | qualitySettingsNames: [] 673 | projectName: 674 | organizationId: 675 | cloudEnabled: 0 676 | legacyClampBlendShapeWeights: 0 677 | virtualTexturingSupportEnabled: 0 678 | -------------------------------------------------------------------------------- /Logs/AssetImportWorker0-prev.log: -------------------------------------------------------------------------------- 1 | Using pre-set license 2 | Built from '2020.3/release' branch; Version is '2020.3.12f1 (b3b2c6512326) revision 11776710'; Using compiler version '192528614'; Build Type 'Release' 3 | OS: 'Windows 10 Home; OS build 19042.1348; Version 2009; 64bit' Language: 'en' Physical Memory: 16342 MB 4 | BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0 5 | 6 | COMMAND LINE ARGUMENTS: 7 | C:\Program Files\Unity\Hub\Editor\2020.3.12f1\Editor\Unity.exe 8 | -adb2 9 | -batchMode 10 | -noUpm 11 | -name 12 | AssetImportWorker0 13 | -projectPath 14 | C:/Users/TonyPC/Documents/UnityProjects/3D Smooth Pixel Filtering 15 | -logFile 16 | Logs/AssetImportWorker0.log 17 | -srvPort 18 | 52598 19 | Successfully changed project path to: C:/Users/TonyPC/Documents/UnityProjects/3D Smooth Pixel Filtering 20 | C:/Users/TonyPC/Documents/UnityProjects/3D Smooth Pixel Filtering 21 | Using Asset Import Pipeline V2. 22 | Refreshing native plugins compatible for Editor in 31.25 ms, found 2 plugins. 23 | Preloading 0 native plugins for Editor in 0.00 ms. 24 | Initialize engine version: 2020.3.12f1 (b3b2c6512326) 25 | [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.12f1/Editor/Data/Resources/UnitySubsystems 26 | [Subsystems] Discovering subsystems at path C:/Users/TonyPC/Documents/UnityProjects/3D Smooth Pixel Filtering/Assets 27 | GfxDevice: creating device client; threaded=0 28 | Direct3D: 29 | Version: Direct3D 11.0 [level 11.1] 30 | Renderer: Radeon (TM) RX 480 Graphics (ID=0x67df) 31 | Vendor: 32 | VRAM: 4075 MB 33 | Driver: 27.20.14501.18003 34 | Initialize mono 35 | Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.12f1/Editor/Data/Managed' 36 | Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.12f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' 37 | Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.12f1/Editor/Data/MonoBleedingEdge/etc' 38 | Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56396 39 | Begin MonoManager ReloadAssembly 40 | Registering precompiled unity dll's ... 41 | Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.12f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll 42 | Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.12f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll 43 | Registered in 0.002711 seconds. 44 | Native extension for WindowsStandalone target not found 45 | Native extension for WebGL target not found 46 | Refreshing native plugins compatible for Editor in 30.91 ms, found 2 plugins. 47 | Preloading 0 native plugins for Editor in 0.00 ms. 48 | Mono: successfully reloaded assembly 49 | - Completed reload, in 2.263 seconds 50 | Platform modules already initialized, skipping 51 | Registering precompiled user dll's ... 52 | Registered in 0.005189 seconds. 53 | Begin MonoManager ReloadAssembly 54 | Native extension for WindowsStandalone target not found 55 | Native extension for WebGL target not found 56 | Refreshing native plugins compatible for Editor in 0.29 ms, found 2 plugins. 57 | Preloading 0 native plugins for Editor in 0.00 ms. 58 | Mono: successfully reloaded assembly 59 | - Completed reload, in 1.201 seconds 60 | Platform modules already initialized, skipping 61 | ======================================================================== 62 | Worker process is ready to serve import requests 63 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds 64 | Refreshing native plugins compatible for Editor in 0.27 ms, found 2 plugins. 65 | Preloading 0 native plugins for Editor in 0.00 ms. 66 | Unloading 1386 Unused Serialized files (Serialized files now loaded: 0) 67 | System memory in use before: 64.7 MB. 68 | System memory in use after: 64.7 MB. 69 | 70 | Unloading 19 unused Assets to reduce memory usage. Loaded Objects now: 1819. 71 | Total: 1.903700 ms (FindLiveObjects: 0.135500 ms CreateObjectMapping: 0.042700 ms MarkObjects: 1.612800 ms DeleteObjects: 0.111900 ms) 72 | 73 | AssetImportParameters requested are different than current active one (requested -> active): 74 | custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 75 | custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 76 | custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 77 | custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 78 | custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 79 | custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 80 | custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 81 | custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 82 | custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 83 | ======================================================================== 84 | Received Import Request. 85 | path: Assets/Textures 86 | artifactKey: Guid(d14c2187503614a45b905f2ba7b20825) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 87 | Start importing Assets/Textures using Guid(d14c2187503614a45b905f2ba7b20825) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5f4882a9e0624a5c57ab51d94c15ebdc') in 0.006467 seconds 88 | Import took 0.008459 seconds . 89 | 90 | ======================================================================== 91 | Received Import Request. 92 | Time since last request: 0.000407 seconds. 93 | path: Assets/Textures/Cube.png 94 | artifactKey: Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 95 | Start importing Assets/Textures/Cube.png using Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b3eb2afd4fbbb28752dd0ef5d20bf0bd') in 0.102643 seconds 96 | Import took 0.104612 seconds . 97 | 98 | ======================================================================== 99 | Received Import Request. 100 | Time since last request: 1147.510477 seconds. 101 | path: Assets/Textures/Cube.png 102 | artifactKey: Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 103 | Start importing Assets/Textures/Cube.png using Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '371ac859cdfd36a84351d0ee00128985') in 0.020691 seconds 104 | Import took 0.032031 seconds . 105 | 106 | ======================================================================== 107 | Received Import Request. 108 | Time since last request: 3.323385 seconds. 109 | path: Assets/Models/Cube.obj 110 | artifactKey: Guid(b6ed234cd5f5ef947b7620a8c3b3a73a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 111 | Start importing Assets/Models/Cube.obj using Guid(b6ed234cd5f5ef947b7620a8c3b3a73a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c0fa4df6db4298924c9c530e680f668') in 0.360170 seconds 112 | Import took 0.362508 seconds . 113 | 114 | ======================================================================== 115 | Received Import Request. 116 | Time since last request: 25.451720 seconds. 117 | path: Assets/Models/Cube.obj 118 | artifactKey: Guid(b6ed234cd5f5ef947b7620a8c3b3a73a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 119 | Start importing Assets/Models/Cube.obj using Guid(b6ed234cd5f5ef947b7620a8c3b3a73a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e2b04c19663563b37be0dbfe0cd730de') in 0.019391 seconds 120 | Import took 0.022483 seconds . 121 | 122 | ======================================================================== 123 | Received Import Request. 124 | Time since last request: 0.000276 seconds. 125 | path: Assets/Models/Material.mat 126 | artifactKey: Guid(70da84f4dcba05f4099e2b97719ead28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 127 | Start importing Assets/Models/Material.mat using Guid(70da84f4dcba05f4099e2b97719ead28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4a5581f6e32ad5ffc4f9c0e4425f7b89') in 0.015092 seconds 128 | Import took 0.018042 seconds . 129 | 130 | ======================================================================== 131 | Received Import Request. 132 | Time since last request: 56.394118 seconds. 133 | path: Assets/Models 134 | artifactKey: Guid(af2dcd7b5940b3b4692c2c58dfc7c8f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 135 | Start importing Assets/Models using Guid(af2dcd7b5940b3b4692c2c58dfc7c8f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '421b88d458f3b97de642b0aed8d31fb2') in 0.002649 seconds 136 | Import took 0.005003 seconds . 137 | 138 | ======================================================================== 139 | Received Import Request. 140 | Time since last request: 12.075692 seconds. 141 | path: Assets/Models/Cube Material.mat 142 | artifactKey: Guid(42aa393ea772abc41bff1ca9c17f7e46) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 143 | Start importing Assets/Models/Cube Material.mat using Guid(42aa393ea772abc41bff1ca9c17f7e46) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '14adf46813a7c2125e8139171a0e5803') in 0.008704 seconds 144 | Import took 0.011362 seconds . 145 | 146 | ======================================================================== 147 | Received Import Request. 148 | Time since last request: 5.586760 seconds. 149 | path: Assets/Textures/Cube.png 150 | artifactKey: Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 151 | Start importing Assets/Textures/Cube.png using Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd523d991e07ad09595a9d5a7e1fad12') in 0.005628 seconds 152 | Import took 0.008479 seconds . 153 | 154 | ======================================================================== 155 | Received Import Request. 156 | Time since last request: 0.013714 seconds. 157 | path: Assets/Textures/Cube.png 158 | artifactKey: Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 159 | Start importing Assets/Textures/Cube.png using Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd523d991e07ad09595a9d5a7e1fad12') in 0.006871 seconds 160 | Import took 0.010022 seconds . 161 | 162 | ======================================================================== 163 | Received Import Request. 164 | Time since last request: 30.395728 seconds. 165 | path: Assets/Shaders 166 | artifactKey: Guid(5c2fc2cd73f2de44996a942f722d02e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 167 | Start importing Assets/Shaders using Guid(5c2fc2cd73f2de44996a942f722d02e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '028fd60d8e751fcb77ec3e5de49e9a90') in 0.003424 seconds 168 | Import took 0.005700 seconds . 169 | 170 | ======================================================================== 171 | Received Import Request. 172 | Time since last request: 71.413826 seconds. 173 | path: Assets/Shaders/3DSmoothPixelShader.shader 174 | artifactKey: Guid(6c8d921643657124db9fbeb98227fc5b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 175 | Start importing Assets/Shaders/3DSmoothPixelShader.shader using Guid(6c8d921643657124db9fbeb98227fc5b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '11891dda2cf90f08d01599a12f103ef1') in 0.007707 seconds 176 | Import took 0.010357 seconds . 177 | 178 | ======================================================================== 179 | Received Import Request. 180 | Time since last request: 0.109915 seconds. 181 | path: Assets/Shaders/3DSmoothPixelShader.shader 182 | artifactKey: Guid(6c8d921643657124db9fbeb98227fc5b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 183 | Start importing Assets/Shaders/3DSmoothPixelShader.shader using Guid(6c8d921643657124db9fbeb98227fc5b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '11891dda2cf90f08d01599a12f103ef1') in 0.004893 seconds 184 | Import took 0.007973 seconds . 185 | 186 | ======================================================================== 187 | Received Import Request. 188 | Time since last request: 271.866349 seconds. 189 | path: Assets/Shaders/3DSmoothPixelShader.shader 190 | artifactKey: Guid(6c8d921643657124db9fbeb98227fc5b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 191 | Start importing Assets/Shaders/3DSmoothPixelShader.shader using Guid(6c8d921643657124db9fbeb98227fc5b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e6b549409960935e9e285a2bba4e0785') in 0.012486 seconds 192 | Import took 0.017028 seconds . 193 | 194 | ======================================================================== 195 | Received Import Request. 196 | Time since last request: 2213.088740 seconds. 197 | path: Assets/Shaders/3DSmoothPixelShader.shader 198 | artifactKey: Guid(6c8d921643657124db9fbeb98227fc5b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 199 | Start importing Assets/Shaders/3DSmoothPixelShader.shader using Guid(6c8d921643657124db9fbeb98227fc5b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9caf73226b9baec70b6952004827e4d0') in 0.004184 seconds 200 | Import took 0.007003 seconds . 201 | 202 | ======================================================================== 203 | Received Import Request. 204 | Time since last request: 24.896517 seconds. 205 | path: Assets/Textures/Cube.png 206 | artifactKey: Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 207 | Start importing Assets/Textures/Cube.png using Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e10e1f4e9392382ebae2b46c14089177') in 0.012817 seconds 208 | Import took 0.015730 seconds . 209 | 210 | ======================================================================== 211 | Received Import Request. 212 | Time since last request: 10.222112 seconds. 213 | path: Assets/Textures/Cube.png 214 | artifactKey: Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 215 | Start importing Assets/Textures/Cube.png using Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b2eb44bca8f83a36f6bb6158f6f6569c') in 0.006789 seconds 216 | Import took 0.009545 seconds . 217 | 218 | ======================================================================== 219 | Received Import Request. 220 | Time since last request: 8.000611 seconds. 221 | path: Assets/Textures/Cube.png 222 | artifactKey: Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 223 | Start importing Assets/Textures/Cube.png using Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '799a1b89833826b703a53f70df9e6c9f') in 0.007208 seconds 224 | Import took 0.009535 seconds . 225 | 226 | ======================================================================== 227 | Received Import Request. 228 | Time since last request: 3.932500 seconds. 229 | path: Assets/Textures/Cube.png 230 | artifactKey: Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 231 | Start importing Assets/Textures/Cube.png using Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd8981154612ce84fd38bd49d57c4517d') in 0.007380 seconds 232 | Import took 0.009980 seconds . 233 | 234 | ======================================================================== 235 | Received Import Request. 236 | Time since last request: 1106.171133 seconds. 237 | path: Assets/Models/Cube.mtl 238 | artifactKey: Guid(7e5169dc5e6a68d4f90ca44d265b4914) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 239 | Start importing Assets/Models/Cube.mtl using Guid(7e5169dc5e6a68d4f90ca44d265b4914) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd0f39cb67997a26ddfe5ce7a9bc7ce87') in 0.005823 seconds 240 | Import took 0.008682 seconds . 241 | 242 | ======================================================================== 243 | Received Import Request. 244 | Time since last request: 372.708694 seconds. 245 | path: Assets/Textures/Cube.png 246 | artifactKey: Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 247 | Start importing Assets/Textures/Cube.png using Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9e71855888233a6a74bd3320761352c0') in 0.014628 seconds 248 | Import took 0.017402 seconds . 249 | 250 | ======================================================================== 251 | Received Import Request. 252 | Time since last request: 4423.053189 seconds. 253 | path: Assets/Textures/Cube.png 254 | artifactKey: Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 255 | Start importing Assets/Textures/Cube.png using Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f26aa281b822b832ad22c0373a9c0d5d') in 0.012288 seconds 256 | Import took 0.015369 seconds . 257 | 258 | ======================================================================== 259 | Received Import Request. 260 | Time since last request: 9.790681 seconds. 261 | path: Assets/Textures/Cube.png 262 | artifactKey: Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 263 | Start importing Assets/Textures/Cube.png using Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5695b51c4ad608fc7b4b5f90dc99613b') in 0.009339 seconds 264 | Import took 0.011659 seconds . 265 | 266 | ======================================================================== 267 | Received Import Request. 268 | Time since last request: 433.331929 seconds. 269 | path: Assets/Textures/Cube.png 270 | artifactKey: Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 271 | Start importing Assets/Textures/Cube.png using Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b7c8e92b1470cb365c2363074716a91') in 0.007681 seconds 272 | Import took 0.010453 seconds . 273 | 274 | ======================================================================== 275 | Received Import Request. 276 | Time since last request: 1165.241389 seconds. 277 | path: Assets/Textures/Cube.png 278 | artifactKey: Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 279 | Start importing Assets/Textures/Cube.png using Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '073111d7a06206323c84d2646aeecf16') in 0.024176 seconds 280 | Import took 0.030253 seconds . 281 | 282 | ======================================================================== 283 | Received Import Request. 284 | Time since last request: 29.923351 seconds. 285 | path: Assets/Textures/Cube.png 286 | artifactKey: Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 287 | Start importing Assets/Textures/Cube.png using Guid(3a28e0e35594433439c3e4d47461aca9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6f8455f9a585a72fe40f191fd8eaa0dd') in 0.007180 seconds 288 | Import took 0.009704 seconds . 289 | 290 | ======================================================================== 291 | Received Import Request. 292 | Time since last request: 252.940304 seconds. 293 | path: Assets/Scenes 294 | artifactKey: Guid(4df63ab1fc22ccd4eb99d447037c82e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 295 | Start importing Assets/Scenes using Guid(4df63ab1fc22ccd4eb99d447037c82e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c55f90352db2208d83d9439c5c48aeb5') in 0.003692 seconds 296 | Import took 0.006486 seconds . 297 | 298 | ======================================================================== 299 | Received Import Request. 300 | Time since last request: 1.615844 seconds. 301 | path: Assets 302 | artifactKey: Guid(00000000000000001000000000000000) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 303 | Start importing Assets using Guid(00000000000000001000000000000000) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '42d402b061de3733987d63b9cc3b64de') in 0.007515 seconds 304 | Import took 0.012484 seconds . 305 | 306 | ======================================================================== 307 | Received Import Request. 308 | Time since last request: 7.812464 seconds. 309 | path: Assets/Animation 310 | artifactKey: Guid(fcc2ee9e81d082f469292a11c6663cf1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 311 | Start importing Assets/Animation using Guid(fcc2ee9e81d082f469292a11c6663cf1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a00692908d9f5ae0520b9437876bbab') in 0.006230 seconds 312 | Import took 0.009652 seconds . 313 | 314 | ======================================================================== 315 | Received Import Request. 316 | Time since last request: 13.890358 seconds. 317 | path: Assets/Animation/CubeAnimator.controller 318 | artifactKey: Guid(b1933c3335a4be14083606fc5989c67f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 319 | Start importing Assets/Animation/CubeAnimator.controller using Guid(b1933c3335a4be14083606fc5989c67f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '903accae36707e812efc2ffa4f37e0c9') in 0.012651 seconds 320 | Import took 0.014937 seconds . 321 | 322 | ======================================================================== 323 | Received Import Request. 324 | Time since last request: 0.006282 seconds. 325 | path: Assets/Animation/CubeAnimator.controller 326 | artifactKey: Guid(b1933c3335a4be14083606fc5989c67f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 327 | Start importing Assets/Animation/CubeAnimator.controller using Guid(b1933c3335a4be14083606fc5989c67f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '903accae36707e812efc2ffa4f37e0c9') in 0.003409 seconds 328 | Import took 0.006392 seconds . 329 | 330 | ======================================================================== 331 | Received Import Request. 332 | Time since last request: 12.423467 seconds. 333 | path: Assets/Animation/CubeAnimation.anim 334 | artifactKey: Guid(4bf1582f5ba286f448aaed3fce97bcc4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 335 | Start importing Assets/Animation/CubeAnimation.anim using Guid(4bf1582f5ba286f448aaed3fce97bcc4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7dbdedb53527266c2c5b774fa4eb6d8d') in 0.007112 seconds 336 | Import took 0.009730 seconds . 337 | 338 | ======================================================================== 339 | Received Import Request. 340 | Time since last request: 208.003085 seconds. 341 | path: Assets/Animation/New Animation.anim 342 | artifactKey: Guid(23f241e3645627542ba867e2643eb3bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 343 | Start importing Assets/Animation/New Animation.anim using Guid(23f241e3645627542ba867e2643eb3bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6d76b1301feb5d39c6794c1aa2a23fe2') in 0.003253 seconds 344 | Import took 0.005462 seconds . 345 | 346 | ======================================================================== 347 | Received Import Request. 348 | Time since last request: 0.004714 seconds. 349 | path: Assets/Animation/New Animation.anim 350 | artifactKey: Guid(23f241e3645627542ba867e2643eb3bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 351 | Start importing Assets/Animation/New Animation.anim using Guid(23f241e3645627542ba867e2643eb3bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6d76b1301feb5d39c6794c1aa2a23fe2') in 0.003347 seconds 352 | Import took 0.005801 seconds . 353 | 354 | ======================================================================== 355 | Received Import Request. 356 | Time since last request: 42.368342 seconds. 357 | path: Assets/Models/Cube Material.mat 358 | artifactKey: Guid(42aa393ea772abc41bff1ca9c17f7e46) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 359 | Start importing Assets/Models/Cube Material.mat using Guid(42aa393ea772abc41bff1ca9c17f7e46) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2e058322f603a4bf2d724218606fba7b') in 0.024717 seconds 360 | Import took 0.028140 seconds . 361 | 362 | ======================================================================== 363 | Received Prepare 364 | Registering precompiled user dll's ... 365 | Registered in 0.007812 seconds. 366 | Begin MonoManager ReloadAssembly 367 | Native extension for WindowsStandalone target not found 368 | Native extension for WebGL target not found 369 | Refreshing native plugins compatible for Editor in 0.29 ms, found 2 plugins. 370 | Preloading 0 native plugins for Editor in 0.00 ms. 371 | Mono: successfully reloaded assembly 372 | - Completed reload, in 1.210 seconds 373 | Platform modules already initialized, skipping 374 | Refreshing native plugins compatible for Editor in 0.38 ms, found 2 plugins. 375 | Preloading 0 native plugins for Editor in 0.00 ms. 376 | Unloading 1382 Unused Serialized files (Serialized files now loaded: 0) 377 | System memory in use before: 69.0 MB. 378 | System memory in use after: 69.1 MB. 379 | 380 | Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1868. 381 | Total: 1.952300 ms (FindLiveObjects: 0.127200 ms CreateObjectMapping: 0.036300 ms MarkObjects: 1.689300 ms DeleteObjects: 0.098600 ms) 382 | 383 | AssetImportParameters requested are different than current active one (requested -> active): 384 | custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 385 | custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 386 | custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 387 | custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 388 | custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 389 | custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 390 | custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 391 | custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 392 | custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 393 | ======================================================================== 394 | Received Prepare 395 | Registering precompiled user dll's ... 396 | Registered in 0.005951 seconds. 397 | Begin MonoManager ReloadAssembly 398 | Native extension for WindowsStandalone target not found 399 | Native extension for WebGL target not found 400 | Refreshing native plugins compatible for Editor in 0.29 ms, found 2 plugins. 401 | Preloading 0 native plugins for Editor in 0.00 ms. 402 | Mono: successfully reloaded assembly 403 | - Completed reload, in 0.999 seconds 404 | Platform modules already initialized, skipping 405 | Refreshing native plugins compatible for Editor in 0.28 ms, found 2 plugins. 406 | Preloading 0 native plugins for Editor in 0.00 ms. 407 | Unloading 1381 Unused Serialized files (Serialized files now loaded: 0) 408 | System memory in use before: 68.9 MB. 409 | System memory in use after: 69.0 MB. 410 | 411 | Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1871. 412 | Total: 2.019300 ms (FindLiveObjects: 0.135200 ms CreateObjectMapping: 0.042500 ms MarkObjects: 1.789300 ms DeleteObjects: 0.051300 ms) 413 | 414 | AssetImportParameters requested are different than current active one (requested -> active): 415 | custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 416 | custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 417 | custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 418 | custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 419 | custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 420 | custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 421 | custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 422 | custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 423 | custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 424 | ======================================================================== 425 | Received Import Request. 426 | Time since last request: 36.510065 seconds. 427 | path: Assets/Animation/Cube Animation.anim 428 | artifactKey: Guid(23f241e3645627542ba867e2643eb3bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 429 | Start importing Assets/Animation/Cube Animation.anim using Guid(23f241e3645627542ba867e2643eb3bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '96e87361a332e80d7d8f99661bdc8cc2') in 0.019631 seconds 430 | Import took 0.022055 seconds . 431 | 432 | ======================================================================== 433 | Received Import Request. 434 | Time since last request: 9.190795 seconds. 435 | path: Assets/Animation/Cube Animation.anim 436 | artifactKey: Guid(23f241e3645627542ba867e2643eb3bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 437 | Start importing Assets/Animation/Cube Animation.anim using Guid(23f241e3645627542ba867e2643eb3bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ba343588bcb1b2d85f5bfc0862a62868') in 0.012326 seconds 438 | Import took 0.015330 seconds . 439 | 440 | ======================================================================== 441 | Received Prepare 442 | Registering precompiled user dll's ... 443 | Registered in 0.005327 seconds. 444 | Begin MonoManager ReloadAssembly 445 | Native extension for WindowsStandalone target not found 446 | Native extension for WebGL target not found 447 | Refreshing native plugins compatible for Editor in 0.55 ms, found 2 plugins. 448 | Preloading 0 native plugins for Editor in 0.00 ms. 449 | Mono: successfully reloaded assembly 450 | - Completed reload, in 0.999 seconds 451 | Platform modules already initialized, skipping 452 | Refreshing native plugins compatible for Editor in 0.31 ms, found 2 plugins. 453 | Preloading 0 native plugins for Editor in 0.00 ms. 454 | Unloading 1381 Unused Serialized files (Serialized files now loaded: 0) 455 | System memory in use before: 68.9 MB. 456 | System memory in use after: 69.0 MB. 457 | 458 | Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1874. 459 | Total: 2.449500 ms (FindLiveObjects: 0.149500 ms CreateObjectMapping: 0.061400 ms MarkObjects: 2.171000 ms DeleteObjects: 0.066600 ms) 460 | 461 | AssetImportParameters requested are different than current active one (requested -> active): 462 | custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 463 | custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 464 | custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 465 | custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 466 | custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 467 | custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 468 | custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 469 | custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 470 | custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 471 | ======================================================================== 472 | Received Import Request. 473 | Time since last request: 182.123929 seconds. 474 | path: Assets/Textures/Cube Default.png 475 | artifactKey: Guid(2cea060f0d0a1804787e80286a5f577b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 476 | Start importing Assets/Textures/Cube Default.png using Guid(2cea060f0d0a1804787e80286a5f577b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '23a899e45edc8f43deb5adf8cd75370b') in 0.034490 seconds 477 | Import took 0.037128 seconds . 478 | 479 | ======================================================================== 480 | Received Import Request. 481 | Time since last request: 0.000379 seconds. 482 | path: Assets/Textures/CubeShader.png 483 | artifactKey: Guid(51bb37a2dc47c434db4ab87f8d3cb4f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 484 | Start importing Assets/Textures/CubeShader.png using Guid(51bb37a2dc47c434db4ab87f8d3cb4f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f17084e14c34ad470073347acd58ee68') in 0.007870 seconds 485 | Import took 0.010097 seconds . 486 | 487 | ======================================================================== 488 | Received Prepare 489 | Registering precompiled user dll's ... 490 | Registered in 0.006077 seconds. 491 | Begin MonoManager ReloadAssembly 492 | Native extension for WindowsStandalone target not found 493 | Native extension for WebGL target not found 494 | Refreshing native plugins compatible for Editor in 0.36 ms, found 2 plugins. 495 | Preloading 0 native plugins for Editor in 0.00 ms. 496 | Mono: successfully reloaded assembly 497 | - Completed reload, in 1.007 seconds 498 | Platform modules already initialized, skipping 499 | Refreshing native plugins compatible for Editor in 0.36 ms, found 2 plugins. 500 | Preloading 0 native plugins for Editor in 0.00 ms. 501 | Unloading 1381 Unused Serialized files (Serialized files now loaded: 0) 502 | System memory in use before: 68.9 MB. 503 | System memory in use after: 69.0 MB. 504 | 505 | Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1877. 506 | Total: 2.008800 ms (FindLiveObjects: 0.189000 ms CreateObjectMapping: 0.054000 ms MarkObjects: 1.711900 ms DeleteObjects: 0.052700 ms) 507 | 508 | AssetImportParameters requested are different than current active one (requested -> active): 509 | custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 510 | custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 511 | custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 512 | custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 513 | custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 514 | custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 515 | custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 516 | custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 517 | custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 518 | ======================================================================== 519 | Received Import Request. 520 | Time since last request: 50.065192 seconds. 521 | path: Assets/Textures/Cube Default.png 522 | artifactKey: Guid(2cea060f0d0a1804787e80286a5f577b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 523 | Start importing Assets/Textures/Cube Default.png using Guid(2cea060f0d0a1804787e80286a5f577b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c3184f0318f422b78629e8364eb01a26') in 0.038834 seconds 524 | Import took 0.041540 seconds . 525 | 526 | ======================================================================== 527 | Received Prepare 528 | Registering precompiled user dll's ... 529 | Registered in 0.005340 seconds. 530 | Begin MonoManager ReloadAssembly 531 | Native extension for WindowsStandalone target not found 532 | Native extension for WebGL target not found 533 | Refreshing native plugins compatible for Editor in 0.30 ms, found 2 plugins. 534 | Preloading 0 native plugins for Editor in 0.00 ms. 535 | Mono: successfully reloaded assembly 536 | - Completed reload, in 1.049 seconds 537 | Platform modules already initialized, skipping 538 | Refreshing native plugins compatible for Editor in 0.28 ms, found 2 plugins. 539 | Preloading 0 native plugins for Editor in 0.00 ms. 540 | Unloading 1381 Unused Serialized files (Serialized files now loaded: 0) 541 | System memory in use before: 68.9 MB. 542 | System memory in use after: 69.0 MB. 543 | 544 | Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1880. 545 | Total: 2.343700 ms (FindLiveObjects: 0.267600 ms CreateObjectMapping: 0.075200 ms MarkObjects: 1.927300 ms DeleteObjects: 0.072200 ms) 546 | 547 | AssetImportParameters requested are different than current active one (requested -> active): 548 | custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 549 | custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 550 | custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 551 | custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 552 | custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 553 | custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 554 | custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 555 | custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 556 | custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 557 | ======================================================================== 558 | Received Prepare 559 | Registering precompiled user dll's ... 560 | Registered in 0.005575 seconds. 561 | Begin MonoManager ReloadAssembly 562 | Native extension for WindowsStandalone target not found 563 | Native extension for WebGL target not found 564 | Refreshing native plugins compatible for Editor in 0.39 ms, found 2 plugins. 565 | Preloading 0 native plugins for Editor in 0.00 ms. 566 | Mono: successfully reloaded assembly 567 | - Completed reload, in 1.061 seconds 568 | Platform modules already initialized, skipping 569 | Refreshing native plugins compatible for Editor in 0.28 ms, found 2 plugins. 570 | Preloading 0 native plugins for Editor in 0.00 ms. 571 | Unloading 1381 Unused Serialized files (Serialized files now loaded: 0) 572 | System memory in use before: 69.0 MB. 573 | System memory in use after: 69.0 MB. 574 | 575 | Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1883. 576 | Total: 1.793200 ms (FindLiveObjects: 0.133600 ms CreateObjectMapping: 0.040100 ms MarkObjects: 1.525600 ms DeleteObjects: 0.092900 ms) 577 | 578 | AssetImportParameters requested are different than current active one (requested -> active): 579 | custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 580 | custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 581 | custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 582 | custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 583 | custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 584 | custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 585 | custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 586 | custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 587 | custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 588 | ======================================================================== 589 | Received Import Request. 590 | Time since last request: 200.952651 seconds. 591 | path: Assets/Models/Cube Material.mat 592 | artifactKey: Guid(42aa393ea772abc41bff1ca9c17f7e46) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 593 | Start importing Assets/Models/Cube Material.mat using Guid(42aa393ea772abc41bff1ca9c17f7e46) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b99acaffeb9e3db1381aef5fdbf3c290') in 0.058348 seconds 594 | Import took 0.060712 seconds . 595 | 596 | ======================================================================== 597 | Received Import Request. 598 | Time since last request: 0.000383 seconds. 599 | path: Assets/Models/Cube Material W shader.mat 600 | artifactKey: Guid(80200ab3441e1e04b8950c70abcadb05) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 601 | Start importing Assets/Models/Cube Material W shader.mat using Guid(80200ab3441e1e04b8950c70abcadb05) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fdf7699b66f06f6e0760658b86779219') in 0.010262 seconds 602 | Import took 0.012881 seconds . 603 | 604 | ======================================================================== 605 | Received Import Request. 606 | Time since last request: 4.982172 seconds. 607 | path: Packages/com.unity.ide.rider 608 | artifactKey: Guid(ea5aa18a49e4f29d74984ea0ea11a238) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 609 | Start importing Packages/com.unity.ide.rider using Guid(ea5aa18a49e4f29d74984ea0ea11a238) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38d02623396ab86594f3405d33b9714f') in 0.003640 seconds 610 | Import took 0.006661 seconds . 611 | 612 | ======================================================================== 613 | Received Import Request. 614 | Time since last request: 0.000621 seconds. 615 | path: Packages/com.unity.ide.rider 616 | artifactKey: Guid(ea5aa18a49e4f29d74984ea0ea11a238) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 617 | Start importing Packages/com.unity.ide.rider using Guid(ea5aa18a49e4f29d74984ea0ea11a238) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38d02623396ab86594f3405d33b9714f') in 0.002229 seconds 618 | Import took 0.004741 seconds . 619 | 620 | ======================================================================== 621 | Received Import Request. 622 | Time since last request: 0.728694 seconds. 623 | path: Packages/com.unity.test-framework 624 | artifactKey: Guid(6023f2b823fc19b4e4a90875281ff117) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 625 | Start importing Packages/com.unity.test-framework using Guid(6023f2b823fc19b4e4a90875281ff117) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b3fecfc8d873fe96244889d860a7252') in 0.003306 seconds 626 | Import took 0.005926 seconds . 627 | 628 | ======================================================================== 629 | Received Import Request. 630 | Time since last request: 0.000329 seconds. 631 | path: Packages/com.unity.test-framework 632 | artifactKey: Guid(6023f2b823fc19b4e4a90875281ff117) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 633 | Start importing Packages/com.unity.test-framework using Guid(6023f2b823fc19b4e4a90875281ff117) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b3fecfc8d873fe96244889d860a7252') in 0.002744 seconds 634 | Import took 0.005101 seconds . 635 | 636 | ======================================================================== 637 | Received Import Request. 638 | Time since last request: 7.960323 seconds. 639 | path: Packages/com.unity.ext.nunit/package.json 640 | artifactKey: Guid(8143d3a8390f2c64685e3bc272bd9e90) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 641 | Start importing Packages/com.unity.ext.nunit/package.json using Guid(8143d3a8390f2c64685e3bc272bd9e90) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '36f449bd9ed4a92e06d659da724da745') in 0.017593 seconds 642 | Import took 0.022089 seconds . 643 | 644 | ======================================================================== 645 | Received Import Request. 646 | Time since last request: 3.860686 seconds. 647 | path: Packages/com.unity.ide.rider/package.json 648 | artifactKey: Guid(66c95bb3c74257f41bae2622511dc02d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 649 | Start importing Packages/com.unity.ide.rider/package.json using Guid(66c95bb3c74257f41bae2622511dc02d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff96f7b61e94a0dc9b975679be81ead9') in 0.006136 seconds 650 | Import took 0.012543 seconds . 651 | 652 | ======================================================================== 653 | Received Import Request. 654 | Time since last request: 0.659637 seconds. 655 | path: Packages/com.unity.test-framework/package.json 656 | artifactKey: Guid(d6a2e6e4803de7b43baacdc355fc144d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 657 | Start importing Packages/com.unity.test-framework/package.json using Guid(d6a2e6e4803de7b43baacdc355fc144d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ceca15118ea03e7ba9b0a601798f3381') in 0.005246 seconds 658 | Import took 0.009758 seconds . 659 | 660 | ======================================================================== 661 | Received Import Request. 662 | Time since last request: 0.595182 seconds. 663 | path: Packages/com.unity.nuget.newtonsoft-json/package.json 664 | artifactKey: Guid(f8d4e5c2f2df25449ae8c391afbe5114) Importer(815301076,1909f56bfc062723c751e8b465ee728b) 665 | Start importing Packages/com.unity.nuget.newtonsoft-json/package.json using Guid(f8d4e5c2f2df25449ae8c391afbe5114) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3887d1616531507fa9c4f23ac1ba7ce0') in 0.005186 seconds 666 | Import took 0.010022 seconds . 667 | 668 | AssetImportWorkerClient::OnTransportError - code=2 error=End of file 669 | --------------------------------------------------------------------------------