From 7f5de81b9f658d70f3c6daf7317870a6038bb87a Mon Sep 17 00:00:00 2001 From: firefighter198 Date: Sat, 2 Oct 2021 23:20:54 +0200 Subject: [PATCH] The Game Version 1.0 --- Chess/.idea/.idea.Chess/.idea/.gitignore | 13 + Chess/.idea/.idea.Chess/.idea/encodings.xml | 4 + Chess/.idea/.idea.Chess/.idea/indexLayout.xml | 8 + Chess/Assets/Graphics.meta | 8 + Chess/Assets/Graphics/BlackField.png | Bin 0 -> 596 bytes Chess/Assets/Graphics/BlackField.png.meta | 120 + Chess/Assets/Graphics/BlackField.prefab | 126 + Chess/Assets/Graphics/BlackField.prefab.meta | 7 + Chess/Assets/Graphics/Characters.meta | 8 + .../Graphics/Characters/blackBishop.png | Bin 0 -> 905 bytes .../Graphics/Characters/blackBishop.png.meta | 120 + .../Assets/Graphics/Characters/blackKing.png | Bin 0 -> 1955 bytes .../Graphics/Characters/blackKing.png.meta | 120 + .../Graphics/Characters/blackKnight.png | Bin 0 -> 1239 bytes .../Graphics/Characters/blackKnight.png.meta | 120 + .../Assets/Graphics/Characters/blackPawn.png | Bin 0 -> 558 bytes .../Graphics/Characters/blackPawn.png.meta | 120 + .../Assets/Graphics/Characters/blackQueen.png | Bin 0 -> 1797 bytes .../Graphics/Characters/blackQueen.png.meta | 120 + .../Assets/Graphics/Characters/blackRook.png | Bin 0 -> 622 bytes .../Graphics/Characters/blackRook.png.meta | 120 + .../Graphics/Characters/whiteBishop.png | Bin 0 -> 1481 bytes .../Graphics/Characters/whiteBishop.png.meta | 120 + .../Assets/Graphics/Characters/whiteKing.png | Bin 0 -> 1910 bytes .../Graphics/Characters/whiteKing.png.meta | 120 + .../Graphics/Characters/whiteKnight.png | Bin 0 -> 1508 bytes .../Graphics/Characters/whiteKnight.png.meta | 120 + .../Assets/Graphics/Characters/whitePawn.png | Bin 0 -> 970 bytes .../Graphics/Characters/whitePawn.png.meta | 120 + .../Assets/Graphics/Characters/whiteQueen.png | Bin 0 -> 2342 bytes .../Graphics/Characters/whiteQueen.png.meta | 120 + .../Assets/Graphics/Characters/whiteRook.png | Bin 0 -> 814 bytes .../Graphics/Characters/whiteRook.png.meta | 120 + Chess/Assets/Graphics/WhiteField.png | Bin 0 -> 594 bytes Chess/Assets/Graphics/WhiteField.png.meta | 120 + Chess/Assets/Graphics/WhiteField.prefab | 126 + Chess/Assets/Graphics/WhiteField.prefab.meta | 7 + Chess/Assets/Scenes.meta | 8 + Chess/Assets/Scenes/Game.unity | 7626 +++++++++++++++ Chess/Assets/Scenes/Game.unity.meta | 7 + Chess/Assets/Scripts.meta | 8 + Chess/Assets/Scripts/Cell.cs | 8 + Chess/Assets/Scripts/Cell.cs.meta | 11 + Chess/Assets/Scripts/Character.cs | 14 + Chess/Assets/Scripts/Character.cs.meta | 11 + Chess/Assets/Scripts/CharacterData.cs | 245 + Chess/Assets/Scripts/CharacterData.cs.meta | 11 + Chess/Assets/Scripts/Game.cs | 439 + Chess/Assets/Scripts/Game.cs.meta | 11 + Chess/Logs/AssetImportWorker0-prev.log | 8164 +++++++++++++++++ Chess/Logs/AssetImportWorker1-prev.log | 820 ++ Chess/Logs/Packages-Update.log | 50 + ...hadercompiler-UnityShaderCompiler.exe0.log | 4 + Chess/Packages/manifest.json | 51 + Chess/Packages/packages-lock.json | 451 + Chess/ProjectSettings/AudioManager.asset | 19 + .../ProjectSettings/ClusterInputManager.asset | 6 + Chess/ProjectSettings/DynamicsManager.asset | 37 + .../ProjectSettings/EditorBuildSettings.asset | 11 + Chess/ProjectSettings/EditorSettings.asset | 40 + Chess/ProjectSettings/GraphicsSettings.asset | 64 + Chess/ProjectSettings/InputManager.asset | 487 + Chess/ProjectSettings/NavMeshAreas.asset | 93 + Chess/ProjectSettings/NetworkManager.asset | 8 + .../PackageManagerSettings.asset | 44 + Chess/ProjectSettings/Physics2DSettings.asset | 56 + Chess/ProjectSettings/PresetManager.asset | 7 + Chess/ProjectSettings/ProjectSettings.asset | 747 ++ Chess/ProjectSettings/ProjectVersion.txt | 2 + Chess/ProjectSettings/QualitySettings.asset | 236 + .../SceneTemplateSettings.json | 167 + Chess/ProjectSettings/TagManager.asset | 43 + Chess/ProjectSettings/TimeManager.asset | 9 + .../UnityConnectSettings.asset | 35 + Chess/ProjectSettings/VFXManager.asset | 14 + .../VersionControlSettings.asset | 8 + Chess/ProjectSettings/XRSettings.asset | 10 + Chess/UserSettings/EditorUserSettings.asset | 24 + Chess/UserSettings/Search.index | 13 + Chess/UserSettings/Search.settings | 56 + 80 files changed, 22162 insertions(+) create mode 100644 Chess/.idea/.idea.Chess/.idea/.gitignore create mode 100644 Chess/.idea/.idea.Chess/.idea/encodings.xml create mode 100644 Chess/.idea/.idea.Chess/.idea/indexLayout.xml create mode 100644 Chess/Assets/Graphics.meta create mode 100644 Chess/Assets/Graphics/BlackField.png create mode 100644 Chess/Assets/Graphics/BlackField.png.meta create mode 100644 Chess/Assets/Graphics/BlackField.prefab create mode 100644 Chess/Assets/Graphics/BlackField.prefab.meta create mode 100644 Chess/Assets/Graphics/Characters.meta create mode 100644 Chess/Assets/Graphics/Characters/blackBishop.png create mode 100644 Chess/Assets/Graphics/Characters/blackBishop.png.meta create mode 100644 Chess/Assets/Graphics/Characters/blackKing.png create mode 100644 Chess/Assets/Graphics/Characters/blackKing.png.meta create mode 100644 Chess/Assets/Graphics/Characters/blackKnight.png create mode 100644 Chess/Assets/Graphics/Characters/blackKnight.png.meta create mode 100644 Chess/Assets/Graphics/Characters/blackPawn.png create mode 100644 Chess/Assets/Graphics/Characters/blackPawn.png.meta create mode 100644 Chess/Assets/Graphics/Characters/blackQueen.png create mode 100644 Chess/Assets/Graphics/Characters/blackQueen.png.meta create mode 100644 Chess/Assets/Graphics/Characters/blackRook.png create mode 100644 Chess/Assets/Graphics/Characters/blackRook.png.meta create mode 100644 Chess/Assets/Graphics/Characters/whiteBishop.png create mode 100644 Chess/Assets/Graphics/Characters/whiteBishop.png.meta create mode 100644 Chess/Assets/Graphics/Characters/whiteKing.png create mode 100644 Chess/Assets/Graphics/Characters/whiteKing.png.meta create mode 100644 Chess/Assets/Graphics/Characters/whiteKnight.png create mode 100644 Chess/Assets/Graphics/Characters/whiteKnight.png.meta create mode 100644 Chess/Assets/Graphics/Characters/whitePawn.png create mode 100644 Chess/Assets/Graphics/Characters/whitePawn.png.meta create mode 100644 Chess/Assets/Graphics/Characters/whiteQueen.png create mode 100644 Chess/Assets/Graphics/Characters/whiteQueen.png.meta create mode 100644 Chess/Assets/Graphics/Characters/whiteRook.png create mode 100644 Chess/Assets/Graphics/Characters/whiteRook.png.meta create mode 100644 Chess/Assets/Graphics/WhiteField.png create mode 100644 Chess/Assets/Graphics/WhiteField.png.meta create mode 100644 Chess/Assets/Graphics/WhiteField.prefab create mode 100644 Chess/Assets/Graphics/WhiteField.prefab.meta create mode 100644 Chess/Assets/Scenes.meta create mode 100644 Chess/Assets/Scenes/Game.unity create mode 100644 Chess/Assets/Scenes/Game.unity.meta create mode 100644 Chess/Assets/Scripts.meta create mode 100644 Chess/Assets/Scripts/Cell.cs create mode 100644 Chess/Assets/Scripts/Cell.cs.meta create mode 100644 Chess/Assets/Scripts/Character.cs create mode 100644 Chess/Assets/Scripts/Character.cs.meta create mode 100644 Chess/Assets/Scripts/CharacterData.cs create mode 100644 Chess/Assets/Scripts/CharacterData.cs.meta create mode 100644 Chess/Assets/Scripts/Game.cs create mode 100644 Chess/Assets/Scripts/Game.cs.meta create mode 100644 Chess/Logs/AssetImportWorker0-prev.log create mode 100644 Chess/Logs/AssetImportWorker1-prev.log create mode 100644 Chess/Logs/Packages-Update.log create mode 100644 Chess/Logs/shadercompiler-UnityShaderCompiler.exe0.log create mode 100644 Chess/Packages/manifest.json create mode 100644 Chess/Packages/packages-lock.json create mode 100644 Chess/ProjectSettings/AudioManager.asset create mode 100644 Chess/ProjectSettings/ClusterInputManager.asset create mode 100644 Chess/ProjectSettings/DynamicsManager.asset create mode 100644 Chess/ProjectSettings/EditorBuildSettings.asset create mode 100644 Chess/ProjectSettings/EditorSettings.asset create mode 100644 Chess/ProjectSettings/GraphicsSettings.asset create mode 100644 Chess/ProjectSettings/InputManager.asset create mode 100644 Chess/ProjectSettings/NavMeshAreas.asset create mode 100644 Chess/ProjectSettings/NetworkManager.asset create mode 100644 Chess/ProjectSettings/PackageManagerSettings.asset create mode 100644 Chess/ProjectSettings/Physics2DSettings.asset create mode 100644 Chess/ProjectSettings/PresetManager.asset create mode 100644 Chess/ProjectSettings/ProjectSettings.asset create mode 100644 Chess/ProjectSettings/ProjectVersion.txt create mode 100644 Chess/ProjectSettings/QualitySettings.asset create mode 100644 Chess/ProjectSettings/SceneTemplateSettings.json create mode 100644 Chess/ProjectSettings/TagManager.asset create mode 100644 Chess/ProjectSettings/TimeManager.asset create mode 100644 Chess/ProjectSettings/UnityConnectSettings.asset create mode 100644 Chess/ProjectSettings/VFXManager.asset create mode 100644 Chess/ProjectSettings/VersionControlSettings.asset create mode 100644 Chess/ProjectSettings/XRSettings.asset create mode 100644 Chess/UserSettings/EditorUserSettings.asset create mode 100644 Chess/UserSettings/Search.index create mode 100644 Chess/UserSettings/Search.settings diff --git a/Chess/.idea/.idea.Chess/.idea/.gitignore b/Chess/.idea/.idea.Chess/.idea/.gitignore new file mode 100644 index 0000000..a05962f --- /dev/null +++ b/Chess/.idea/.idea.Chess/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/.idea.Chess.iml +/contentModel.xml +/projectSettingsUpdater.xml +/modules.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/Chess/.idea/.idea.Chess/.idea/encodings.xml b/Chess/.idea/.idea.Chess/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/Chess/.idea/.idea.Chess/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Chess/.idea/.idea.Chess/.idea/indexLayout.xml b/Chess/.idea/.idea.Chess/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/Chess/.idea/.idea.Chess/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Chess/Assets/Graphics.meta b/Chess/Assets/Graphics.meta new file mode 100644 index 0000000..e5fcb0e --- /dev/null +++ b/Chess/Assets/Graphics.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7cf9c00492b65eb44bf896cf966cc1b5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Chess/Assets/Graphics/BlackField.png b/Chess/Assets/Graphics/BlackField.png new file mode 100644 index 0000000000000000000000000000000000000000..55e8b5833ab850347b8ae8206ebfe9e96c816446 GIT binary patch literal 596 zcmeAS@N?(olHy`uVBq!ia0vp^Mj*_=1SBWM%0FXZU~I{Bb`J1#c2+1T%1_J8No8Qr zm{>c}*5j~)%+dJZqd{6+WdemK0_N&;bXj?cb|);{A{td{u=5M|EE5$?y}qXGg9rPM zu4?YyypC^Olfn)0vjmGgfWf6=O(%xE{UqVHv!>mEm&y_qlP zeD6HGMn&_;^CQV@u@inwe7)&({+w<;ZX4sAl%UT?5|cLGI9SBKdD225e?fPV(8V>1 zuQwg4?A{!;a^p4IpWM!sxvFPNXC3ZH=HygSbaLZO4M|Y+TJ6@=Df0HX%^&AJdr!TY zF{uVcIt#c&Cp~8W-+ce>tk#p9=9(hRyW(?xC$qe`$vUg__CLFAZ=Z2KsApTZW!wH+ z3~BbB>$h(`A$VasZ%oW~(@OpwcNp2`mzbsBcHlDlp&-U`G_v{4*Maw4WdG`UMg|omTvY3HEPZ@+6E0)@q z0R`DhJbhi+pK>t?Scp`&Tl)fqBuiW)N}Tg^b5rw57@Uhz6H8K46v{J8G8EiBeFMT9 z`NV;W>^xl@Ln02pJ!iqP_) zId~EgEZ($!9z6LE1bPtZz2JdX)&D&g@Rcq6x^oS3b0#7i0p=V4cOVrj-n_iO3Q8(U>9&zQcGZB zh>>iF3sqIkTrOwk^Lf)IpU<1QT+V5l8Gr_C3o1tDi;N>ivK?1}9$=7=4wP=(#KY=T zEEdgTvFLRryAf2(mcVX!+?@@>@MCjNFe!45=w2$#%*^<)`7@9bNiN}i^YdEL9reIs zKjK*4E+=#%JWM|JAkb@h)M4$L7zRrCJ7YE5LrTCt86oZ10}caEM@L5w&Ckyhi^V)O zs#GdWOiZx2xVQ{V0qZ$;2Dxmw2M=S=@Ddl z8HhvU$&RaT!UEndQ>{+FFJwi?#>hZAon9Rp8j>h388ej2Wi(COA!S68aoV>b9_g&~My3%dQaf<{1i6Vw zp-y*PwF3#@3h)Z=>7bXuWvi_;epjtwtK&hd?RLbK7sPFG05|{~1C9b)>)QVU-T_O% zM?~Uc)p}O}ejprO0lomAeCl&V0WJUqt5ZK4U66P6r3^d)j>|X^2j1X+?uSvTz(X3p zuq(a5>xjiSD+@RzOq^mQjz~t^7)}OU_y&Bio(}^30c_OwJxDFC{^GPDmJx@+TZr|2 z8F&li5J6bB>h&TLbT)P-z6yM{>TV=~STGdCAP#JJw`R2iF^~x$1)M_%pmGg)^wU#3jw&Nw-aHuHS< zk9oOv^JT^w*>xujT;6DHa0BNqW{{nEhuKgl;;xfMy=zeedMK=Kj zfOt3qo(%WXn9jbRq+S?+MR0DQKF?imEBpq)Ujh6N&K~^%fCa!y0A~UGZo<7PFZ_Mu z`ur_`qX3=)cn_clz#9N&0RI4x10cZ57-!^95fKr#ZQHi7zP_G)eSI_7mhRWJgB_FJ8PTu3NW` z0NUVP=S)jsR#q1K`};|fMx&9ft*vZmXkb@Y7stoPNsB*~$nA-1)(v7w=X&z?Q=l;68|kMZ&GKLSXZt%${|SFg6&Y&H%K4zi%2 zfPx@=6i|40I1362_~5|5Ls1mDefxHw{ViXPygX=y2&b4p#YqD zo7epQ#EBCm$+);UpL-AhB@zkS+uP~p;lqcYEEe8cMn(onvZSPhaPB=`qu8)v!-ol# zXJuJgSso#4*RGwlpY!L>Qxrw2)#`ruxynB*Mk=jT<+LB-z;5NQp!;=R#B}6$b_eI5INA#Kgn_Or77&Na?9lr|1?F z85uceLXwk{sn_dix7(SQmp6`&^Esah2o4UeI&N%GaJSIo}N{-{Ag5V&H+3YL_V z@WO=)ynFX9U%Yt1H*el>czBp3X|Y(?-``KIR?GVOdY(RgnmcyvU~+Quq**{=VIeIR z3vD(V3kwS!0RH$nB0ORMlou5hiDt8zBw1Tq%l!O&*45QGt8qU@-8?l`G82$zf7b5^vwWO_J>G?PW$r#wdVqzl4a1 ze5X_@O|7l192prQN!n~SHa0f0w6v5N85xX@j`nKU#Ky*Q{rdGhc<>CN$%gjf7-wWL7+mRU`$L56$-_)iR9wNi&;@o z!LhM1c6WCZz<&6ciun4cMJ|)cOjfHEcDvmz4p~`QNJ~qDTCK*?rAwhyDiIPA@=4{< z(NT1FcSEPsL95k5qtT$bxfxcg6#x(#8j9fH;1P?(;`8d{vk(9#nM{VFq9SbCvHQHA5!|(F7j-%v@87>~pG|B&53Rt!K$9qno`S^0MC9h?B0W7FYPA|_wHi|C)TcdW zvl%*_4qaVc&}cNcbLS59dcEhmAP5$R!{PJLn$;YMkB`Uh-MdjxPylzjZ@1f_*XyCx zYVrE@YYYz$V|aKN4u=C0i3C!q6j4!8P%4#BtJR2$i$h?b^AM-IyBjq%HK?qt#M`%T z=Vp$aJ9o~r?ss%_@W_!PT(f4)l*4Q)lS-w`$;n|wMFn5JeCgSj%FD~g{4D~94jl^W z?CczU{`@&JGczY1hklj?1_m-OFHdZ2Y-CeY(}3TFxR3zY4xrB!$ma-}SXT>YPBrJR zIzj;a0YDXip-BRCObGPnzundc;2eNVINxr~nlE)6DZqIs;I?nzTo`1oPcwiY0hj>1 p0MHJg1Hf}Q14NpGx!O{}BdOe$XJm90{Xc%xS<5rfy#z64&$QujFU10Z1FC{0<> zFBnD>z}so%j{!d=>jd08dTXUA!ahhGcs^NvoqY&1P9KB6qIDYsKxv;pvk#XJ5(cgU zF90Ww!)!i%#-nEAX^}Z20@T~vtM>Nxhc1`vCh$7oJPzZTnjnYajJOA=y1H6BJ3Er3 zXf&$H$w{3(d-iW&h+_mg4QzAp7RnZJKpu}rLqkKFo12rVcs#C&i3$09zTbdnjvC@5 z@OzOES);A3P2q4j1$5`m9i2IIW*d0zC_yGoL!nSeu~qobpiX2gth=guh>i%F7h-MW>is;c@6@EsP!tLZ;JH8mwkT3A?+$K$cI zR??%tzdv?1bF%xmKMe1 zaY<5NU!Q>Y?0~2P)+ui`O71%|Gb2d~hrYUYx!rC7Pn82v z4{Tz6Hq3rgrS=U30;#RItE)@El|p9oovAMZ9>C#nIB+-|#a{vg!U22?d|paNfaT?7 z?%ur%KzDaH>>t{4st`!R@AnglL|9y0#P9bP z(0aHHJef9*3-|{M>#V!GJ9PmAfq;OQt$=vQb7aj3^LTrmgD1VKr2?4I+S-}|>Fn$j z@Rk)2cr>|?4`LGtW$FJkuz|&0&+T@nKn4Z|1dQi1n{TmyQJ`MQ&pwPiR=Vne?@8`@ z`3&UJ?(QxtD=PprH8lwcx@07x-umcroG2_4^Pyx!oSM^x|E`ULI((Gvm?)eqoD2{-fD}lDG@wb86SkSImyJhAu zLZg^hu2B+3$bD3fJ zS&1n&DrU1Z(FMF??yEFSd;wQvct$BI8>o-PEKCGMU%(}aGO(Y8k%^QH)OWEVsW9oL zaYkA}406C!oFoa8m{v<0l~ZFFucY6#%D}NynBBR09QGmL{QI9l9*@TX-*#7C(JP*Tx&QzG07*qoM6N<$g6UWGPyhe` literal 0 HcmV?d00001 diff --git a/Chess/Assets/Graphics/Characters/blackPawn.png.meta b/Chess/Assets/Graphics/Characters/blackPawn.png.meta new file mode 100644 index 0000000..b43dcc8 --- /dev/null +++ b/Chess/Assets/Graphics/Characters/blackPawn.png.meta @@ -0,0 +1,120 @@ +fileFormatVersion: 2 +guid: 03eeda42f4c4db5458d4441eb8049128 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 50 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 1 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 1 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 1 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Chess/Assets/Graphics/Characters/blackQueen.png b/Chess/Assets/Graphics/Characters/blackQueen.png new file mode 100644 index 0000000000000000000000000000000000000000..9044de255ab2061c84a3706f4b97305a6a984b89 GIT binary patch literal 1797 zcmV+g2m1JlP)25o+55}3`3$kHur#&Q#+ zPJk0|3^<0fhkGwMzP{IgfNXozU!Zz!b0!`~w&=kof~olhDTR4djM^d#bH3fZk^iuOVIp9_j*I13D!c z8<3+kk;f{h;bm1jnNQ@voZL>yTtROk_?;GLw`x`$dzO zdSoGeY57c?>C5XT@SQStG(=3k%MjA{L#k~VFJg?MSoHyn19=0b&rOVJ_=(B&Zj3r{!_;uh*9p6c5gX(9t zFI8QQH+nuzOMIZ#Bs9p=-Z>q&*C0@N#(B$te@o(f4fwq}ALk@)VXH|1jPkU`^C~5$@(8`Cz00-oV}xR?FO6x-bAVGyaAV2xi?L8+g01|7;vv`ClR^fwSRR5cnRg! z>z!%SY`00ELgln+SN{?N6G}d)nR0F+l{V4Zg_318(fne%b(S9!61IWAD7ETV`C$Ab;=Sg zpU;!cX31nSq*5tTsT9d%lIiJba=Bb3-xX19BEJKErTu7bZf0{Z}Xo{rBX~xOc0O9xp(j0=D+>u(IZ1cE|&|x-;dw#XaD~FL?RJ-dV28r ze1LN2*4EbO@9!s(Nc;)-KFUnCV`w^i_G~(r%ZX?-Du#!Lg~#LBv4-||JYslwSVW^y zv9huv&YU@u#(00SBY4SbwXRbBIk4R!FN3N^wLPL?W_^AAy-Sxa{rbp}BQ>g4hg-L9 zSx%om{T?t=i{4gF8Y>+{>;(QBKFTf#cWQi8Yf#nBS{lARG&D3>Ute#zapQ*R%(PXw zTrQ3uKaSOE<;s;SUf`>0b!$q*YPH@d6bb{N%>OrU-Xs=_5s$}-$K%Y+&D9jR$KxRq zi4YEl>FevGx3?FY&Bo&5BCV~hzbq6A=bl9(2Y|mHIBgHW@xm?)oc3N6m@caFEyTf{*(_sYV_d&}oom;wasU4P z3^lyzswI)%I2?|jKY8+mLP2>mV6)jcc<>;RNQ6U&4iO9n@p`=k0s$NjhoO;NE=MYr zBArf?OeRSr62#+i?%usC+ud-vTzeK47QPA0*AQc6?Ay2RvyF`nF+V>qMn*=&$&)9A z)9EyASi9XW+-|q<`Fz6X^9i@xE$nu?sl3za6sJy|5+frcVt#&Jm;V?Fg)HH47*P6TYHEtxw{Me3B$%0*VRm+wxw$!nFkUcQEEYT-4}m~{j*gDa zB}yn1!e+A}gkW-VlB-v*u3ors;RTd8SUZ{sC`X*X@Or)9I&tE}o})*Pa`^CJ+S-Z_ z>(|!Sc>MS=4<9~cWn~2bhr@x}?WUojf%^LTBKdSW&G`5@u~>{~G`f*ar!y#Tv;JId zV6`Tqp$Yf_FaR9!cs!k~gFV`B-Ruj>~fpP*81pFumZO^OM?W)Ww${K1O<@t~T n{)KY3yRt)Z>|z(YFu{KSoHk;<25s2a0;BQMISf{kay;dJ^Uy4$g8m{Pbu#JcSAG-=DFT)>of!AZRMIs z@)qjA!P@oVmfQ!x=e6syiUw2|aXB|}uwmTTFm}g_UAaQU_7QvdHLz)1Bv%MgBdV67 z^0|bJn5KE?I1aAsh8m9JV4CKAk=}&<(nKP0FO^DtU9DEPMRcOXVzFQI`TVitI6s1F zWY*?Q-~;faQmMGvY=l3#>n+}JpQ)TYMo>< z840;R)9I8(qw#*ZT)qTs5v|P9dSw{KiDg+#CKCy{KbBqP z{GuPE!ArA8uAGtZcAuiTgFe}B0Jr3O*^3dd_)l|dG@7XK2M_jq_=&B1v;Y7A07*qo IM6N<$feU&*1df(hb}nB6+Sb-)j*X4w zHDU4K!2@k=ZMD+vm8qNkfNtNuU6aXVj_7bWtl@AtXMZA*(DwFrC3|PyFS7^gL?lsH zSC<(dAD^@L8yg$7si|qs-^RwqbnV);84;NzJ4lp`uK~Su=~CV_3IqZg2n6!}-q+V> zJ@LOPmx)y(GQDlvHghg<_4W1Y_xsi9bgI+oRKMS^_4V}{i9~YDw6wICB9Z{S3l(GM z6=jF2y7%wjpEDIOO%t!zi_ho7;c(z^IPm#=c)eas)65BU;J^V2++OVwTx3vId~Gwzl9whG8I5c>cC--8!rJ`a;FnF_H#Ir_%)w zI(F>X{DGdwC>*Q+c8uHsh(@D-@6jCg?b|nRpuxexf5d#*)B|RBcXz@3FNVE)_gW9e zP315G@STWgUtiyXOCxrOmz#!R zj01&7jh8@^i2O!&@?`byyqk5bh};FkH6fn@+$Cg+dyO#fna?M~@z9Fc`Foyraw>KtzVzZnt^o&YhAAeROnG zT`rd?A~)^ou$x-ds@lA9<3`S&J-eU)e!pLahlfLe4~W~;vtYU@vbc-by6p(Ddq*k( z&YU?zN5{g_{PN|?96Wdspu(mWTZ8}&1OjGnZ?C4)>7wf+l}c$i9M*=025au#Vn@h} z_*>yK5&2YAot2f9+SS!1&CShh-MW>ksw%wR>|AMTYKnL~&dA6J(P)(Z{(haBni3It zqN>MvMHV4yflowah~jJFXW(NX{~KoslzK;M$&N17fD>2=tN`4AYvywc5E7A~sybG# zT&V!l)6*g%8C4wwZUUn~itMX<3U~rc15bh2%=W;Zz2__kJ_LRekv}N1w|zcern9qC zPo6xf@pxQgv6!AXaYA?R-mO(tRheSr%v|##@b-K{3*C_#5xJtO%^r_OL!po~H#g(+ z`KYe0#^rM1cDr%8T(fPD$3sIy1FKf8nhi2JISD{zW##O?$B!Q~GBQFknIx4;kxr*c zr_;0TSS&_79%pcHkb!{#Ow+VhS&jgImSV&KTnFAdeE2X&j~?az{re0J4UtNvNG6j! zefl(S52z~l?%iW(Xowp(ZYV%&YpVo70$#Ceg*n} zV6~TXAS2FxiXfs^B3o!#3Poz&TBsz5jLv=tKiHZS6;`xj?t(e3)>!CT?)Wl|ra8~G zALa#1Jf#S}jgF~0P(=O4ZlQKBO40GRU`d_;_I zfgZpKjQWz(_w3t9IE++_JOds92H-2-vws2}-@BhB&At>-v`9PnTtr&PTwsF(|pi^bwmN;!e)Uph#DL?9WMG0FR_fSf*kT0W$rqC)Vt%5NtqX9DKqT|h$~yTKNi z2mD#nGzZ>=?HSF|( z2d)9@02NGt!7PY-lu{LdF)J%eva_=>o6Yp}^w8AQl+x7H^u37uUMY1~L=FLNfPsO5 zafbT(`uw*>pjs)lRYa84YL)ElY&B=j97aY)Xm4+yaqHHt-wX~8exsCX5Rsk0e}WM- z8AX7krlxuxJa{m!tB8nnc6LfhNr}Y9#(Dr9xDH5FRn@q>7cX8EKr~Hzt7)3-*|SGl zTU#fz>vFl|$dMyrFc@@A)BXo!hAZNiN~yt=loZdaSFa{?HkKDJUPyj^zJIEf!otFF zd9t&!1(5mk=j#m(4Ii~BB2rURBSxc9*EH<~Ff$w>e+A^mjT=EZ6cO=wJaXvJAps;R zDoVyyz}d5B1(2mnmr7SxSI{;^M9!Z-@1G?85~>K3QtHi$6)Qq==%=)_Q~S5pvU~ULPpU-`3AD(kpzFHWY&MUk zX&nT)K#t{y=;&yDvU&b<3aP59^4kfkS%0OJ@+@1nOn1B8Urb1IbF-LCCSB9CPA1>q zeUyWMY~H+C1_uW}yAZqGE_3J3^(dv@^8S8q93Sg%3iuoFU0z-u)z#HlESC2&csw2& z8yjh8XyD0{C)n+F91aIAmy5x{L0m2uF)=YDCMFUW7e`7;3RbI?#fuk{o105UMg~fa z598jwdu-XVMeptH6%pA1Tn@heCl~W4Ku=0a@?5%fN#4DCCs(gtm4bo-nK^T2pw!0*yLPRdIB`Pm+_@vKU%w8j%XD^jN_~C396fqe zR<2wr27^KHZcb(1ym>m_{aPci_@@@(Ck0mkohVVyLNj*e1ZUe1*( zS9tjFAs&w>5NLXOI{Eqe#Ky)F7Z-=gWMXJ&i2nY5+-^7R?d@E@ew}OAt^r^)8p+AY zp|G&fZ(a{4rcj9o0$m^}DM@zi+9j7RU6SX|pZ{q0`LNqPefm_+ojWJnwr!L6_;~T# z^-Z-AC&BOV!i5X+_U+pV1MTVQk+!xrX=-YcM~@y!b91w_wY5oKU*ClJ2L=YDqM|~k zPoFM$54O#ZB1eHMgfRt&BgBsp_%-m2rfFa6x*j;HnKo^j#Kpx) zLPCN{NJvnDDgd9YIBx*(W8fO4lw;cvTSSaxWMnWuKVJzUGyvs+^GyJF=FAy7ole3p zv}e1542J=$)v65*4bf;cYVZgAD*zT16)B(3N0-Z`i*y5U0C*RGar;6J&Nl#f7xf`9ys1Na2nD6~gPIlq7Zeih1sq_+CR%aK_vi>|INy@S5p42cvW#Hh(+(mWmyNpfOhf)_4apx5gS8Qk359IL9T*w@z= zmP}1e4TTU(0P^B3;sn6+=g&vg%lGcxBLKQwuCVSO85yC$U{CeML)2EH|3B3}aF)vH&dk{BBsquFex)oP8X+~DA#K32YnheU>y zayl4_>EB-!8JuV>`bXgUHyhyk0;rcF;zlO(-f@A6-)y}g~IqodrpbEhVR zm<3Q3q>6kg!?Hk)C1sw0|)4GxoEfBmqpxeH;apl^=+VF z5}87X(H%Q>sDXijs3mlgl9CksJ26qyEQFZX1@z<4p+oxbvq8$F0q6t3%aV5py6=j$Pr2@U&K>nJp}w~2Ra;%xC!VSJ$jTvh=r{XaR8v*ZjWmw zbWWT&p^wQ;C0$B6vv==awYV5^vm`1`o;<0GnAZy;9$S?kE2UoR=;%Ola&jE1TZ_@S zyzjm4vLj{@A;j_ByLYR~%F1p1Iu&c}x`QyPSL;<|02S^z`F(QBuJ3p|IEL;XNHF^SLt#90000< KMNUMnLSTXiD$bq& literal 0 HcmV?d00001 diff --git a/Chess/Assets/Graphics/Characters/whiteKnight.png.meta b/Chess/Assets/Graphics/Characters/whiteKnight.png.meta new file mode 100644 index 0000000..ed9dc78 --- /dev/null +++ b/Chess/Assets/Graphics/Characters/whiteKnight.png.meta @@ -0,0 +1,120 @@ +fileFormatVersion: 2 +guid: b60cb63960a9aa04ea6cc2fb27108d2c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 50 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 1 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 1 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 1 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Chess/Assets/Graphics/Characters/whitePawn.png b/Chess/Assets/Graphics/Characters/whitePawn.png new file mode 100644 index 0000000000000000000000000000000000000000..519ee540d8367dea5744c89c7d355fd0054fb970 GIT binary patch literal 970 zcmV;*12z1KP)Nz`Q3SPXUcYB3?&F zM>!l0dw`0_uRwc)^;N|y#+WCL<9PG)^I9krR8{rh;6St4tcr+=$Pa*Nw9uFFHJ}R% z3tEY(sVM~%$TV2zOL-KHM!nC5!ncZLf+!yV#U!=RV|fD=gTngJ-2X!ybtKo($bYC zE|Se={S=#Sub=uzE z_8)gFXs}}BXMnY}wLqO#S646fzYRFXn19;a+r7iX!>U%T&CN}XMx&mHJZ`l37x@Cv zk&zKCm&^ZaqF5|yUtgaB9&oq8y8nX#e&e~BVzF4!#Qy%i_V@Suo8d#-0&3-T&T8`a zTU%Q-8ja$*Zp9aKxg5!4(m%?73VZ|Hv7n)5-ZaKM1$1m|Om}y8tC}OO>*~OkSKd6z905X~SToh(98C2B(AJ!$n1s;aO;VW+vYsGb4f1cd0s|ykNyQin8E+%{u ziG&CI7*t!3)N)ic+1c3{G)5r0y1GO}>N-bW1*EO5Eoh8D#9}dkSUqFB#aaH|)GyH4 sE65sp4162p&uiq?e++8Uq)7vK27R!VDO1BBLI3~&07*qoM6N<$f3EB3EP)nEuMjN*fFYH4q4B zMMZ@*#`L9$*DNBzSe#FQmA70$3_k$0t*uQjT)3dScI|QmJ(1w!0U{eVY)}Wy&CLo- z#B2`k5s`_xbLU1{T3R$eKR;rO838K42_a7d`tG~$s;cUR3l|(AFD5#P$a`+L+wR-9 zPoIDOdCkemu_AINCDv~M{osQSR8{rOH{VP*DK`ucum?B>bO5)f*dGLR-MV$!)zzhK zZEeorTT}d&7-RZGL`6i6F`ol>rxW5#${TOI;l%n$ir*c;D=|*H$s(T&@Ml0>E|&$= z7;_1@GsW)@BX(E^0e$`T*Hu+@bad1yoyXGnKA1qVK0~~pC;05j;8P$XBQc)`)7al~xm-Fn zHm0hoM~)nE;%%Nx$eki`t+uw-c6N5^`t|FbPCuPO$O{?b{n5!0;7A6a9SL#L3E2f` zb91wHc6Mq_O^p?iFwwl36i>gsB{aN$BLB0cE_ z6Oq47AtV;%GZ;%f$OU%kU8`J4ZNkQ9|0I+UIG@RbKJIV8(yzhxqg-!0n^mfL{n3f zGuAyRK05)nZrz%J1`CWaF9O84yaoJcIzk+r1+dooNME@qEG%T>#*IR>Le-@Rp|P=% z#>U2^wis>`kk$!vh6H=7s^+z~w`UsrAz)K%>^PT9m`cdU0PXGV_iRcp3v z*&<%AH(j{>*4p_84jeFpgM&`nq@UK5FveWG@4ovq5{c-_l`EaO^Jx%q|fKG)>`f9=~0izV@0Hw=++`GL{)X;#*NMa>J>n{ySwAIQ>RWjWDknS zwfpbCKWU!LdZ*i27^IWRo%UNw=?KpQ-vHqe%!Hz zMMQ^&hT^ut!9iz%9VKBKlp^F5pnLZ0QB~DIAdvQmaHDt}(5|j7RaG4u8`HYFI%gM} zBqS1vXjN5J1kgo`7FkU}b#=7`w4|iOj*pM06QXr>b#dF2R0~nYQ1Fm{;G_|9!4ry^7oI##)Q2Vy(?0 zTrzRzueBDB$HUU4OIfsN5vy0P=H$tf96fr};qc|n3PD6hRrR_}VQy|NWo2blR#xKk z`Is|j4t~F%f`S5EE?3%E6B82*4-YdmG{nfr2*bm}1Ofs2`ueVWLkVN2yQN7&x>MbC zP}M$T%w2o;?xn7-j+&Yps;a6eE-ucdd)5erLVWhwXMFnUr<^-?j{W=hqpF|J ze~5@(yLPQMG&E>wX{owgu6XIZ(Z}U-X<1pBHZ(Nonl)=wM68JX9mvm?T()n-!MA~b z0#aRF&Emz2DJdzTxVRV*Aulfvuh&a{em)+LCn@P8kqB3=Tp=6|^VL^hF*-WR*w`4V z%D}(?p-_n4-d@h1KTk~HGT>j+)<;J$(bb zrj1_#T3cJIRaI5$cDrvnN8E0=R#jDLZEda7ws*Rurkf*8B63<)z4PYHqq4G+ii!#< zDk>;1FQ=rW1QBsgloS;eC3SXY+<8->P>8<1J_3ON!C;VJFvu5Qe1V9JtLojr`RNME z3L^5J$K$bQ&YYR?{BY3K)#bdE-`)}tM6dewvBw^}Wg=9gJLuSUKi%!-jNtboq9;zA zxTQi=RhKVc9*Ny1X8k)!Hrsdyx98>M>EgwUr#}VL#P;pmjjFmyzCM~1(@FMCKqp{| zi;Hb(X{l6JR?7VO^Qow)proV(kH-^V6mxQN@cEK27Kew2nV6V}FNWc8m{2H0AP{i= zYJY#f4h#$!W6X%Pwg$-RyguEk^)RrF=x-h6B2uoZxzmi1o=CJ(^#OfE$-hGM=$l>t z8Q^dmQDMbI7g#UR3vD+rC&hOJxCV?7J-bf;14PLWGK*QvVir^3e_Ig`4Vzy7bN~PV M07*qoM6N<$f{KNA%m4rY literal 0 HcmV?d00001 diff --git a/Chess/Assets/Graphics/Characters/whiteQueen.png.meta b/Chess/Assets/Graphics/Characters/whiteQueen.png.meta new file mode 100644 index 0000000..7138902 --- /dev/null +++ b/Chess/Assets/Graphics/Characters/whiteQueen.png.meta @@ -0,0 +1,120 @@ +fileFormatVersion: 2 +guid: 7c3810169d4cdff4abcf1a32ccd94bb5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 50 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 1 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 1 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 1 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Chess/Assets/Graphics/Characters/whiteRook.png b/Chess/Assets/Graphics/Characters/whiteRook.png new file mode 100644 index 0000000000000000000000000000000000000000..ab0fea9a79826d6ea15986fb30ffeaf27a318341 GIT binary patch literal 814 zcmV+}1JV46P)Km4q~#@cGGjIm_-U5baBvsp%fg% zt&1Q|BGSS2#Hmm+7ag2Bv=o;PS#oqrkU|s5)TD4NA;tV0+S(+wP43=RgWLxmj}{I5eA04h{~^T(fOkrBbKiQ>hfST1^E(a7H^eHby#~Hc2J4k!t|!>+4vS zWi;@4?Cx*1Da~=Or%k`MhYY+gj@#U?OZ%VQ1uo+gj@l+qN^=Y_>fzG7>S&5r>C| zR4Nr61VOdkZqESUjRJ;b9uUv-jAz61ypwe?A2k_mV5DZyH};q&Muv*S$gq(Z88#9l z!$x9c*!XXZ80`=N>h(JHdfhmNDJDklDy3LnUS?%w#VCm&2vABPB6onVM!`ZdqLeD9 z(`nh>-ZuXCTPPF+5T#TZh_ok&G9#maCnA%%T#izyM5$DYGIkd;Gc#;#Y)k?lffqo_ zIA|YUa{2r9g|JCQnGqXcc6Qdd7S&6&T4il*4d6zsfzRO;9hJd2>8M=351Z6~^Bozq z`0xgJdi?t)kU1$j$4N&~yarT{Pk#a4_Uk*Sks{zuPfrsB0hLMx5s8#+--MJRo6Ta| zHibd~zz6Qd6~E}ZZtQEKAFk^PM>nxA1HZL=-)C`gG4h>=g75pW$6V#_)qH!~>L3XY sx<;-7w+7V4%@3gYkH$_&NEkML0VW#S17sBPZvX%Q07*qoM6N<$f`wsrLjV8( literal 0 HcmV?d00001 diff --git a/Chess/Assets/Graphics/Characters/whiteRook.png.meta b/Chess/Assets/Graphics/Characters/whiteRook.png.meta new file mode 100644 index 0000000..303f5fd --- /dev/null +++ b/Chess/Assets/Graphics/Characters/whiteRook.png.meta @@ -0,0 +1,120 @@ +fileFormatVersion: 2 +guid: 2940e28a1caefed45adfa57795b6b5b8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 50 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 1 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 1 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 1 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Chess/Assets/Graphics/WhiteField.png b/Chess/Assets/Graphics/WhiteField.png new file mode 100644 index 0000000000000000000000000000000000000000..5436448c37ca6a9563dd18d83dd086f3c7467710 GIT binary patch literal 594 zcmeAS@N?(olHy`uVBq!ia0vp^Mj*_=1SBWM%0FXZU~I{Bb`J1#c2+1T%1_J8No8Qr zm{>c}*5j~)%+dJZqd{6+WdemK0_N&;bXj?cb|);{A{td{u=5M|EE5$?y}qXGg9rPM zu4?YyypC^Olfn)0vjmGgfWf6=O(%xE{UqVHv!>mEm&y_qlP zeD6HGMn&_;^CQV@u@inwe7)&({+w<;ZX4sAl%UT?5|cLGI9SBKdD225e?fPV(8V>1 zuQwg4?A{!;a^p4IpWM!sxvFPNXC3ZH=HygSbaLZO4M|Y+TJ6@=Df0HX%^&AJdr!TY zF{uVcIt#c&Cp~8W-+ce>tk#p9=9(hRyW(?xC$qe`$vUg__CLFAZ=Z2KsApTZW!wH+ z3~BbB>$h(`A$VasZ%oW~(@OpwcNp2`mzbsBcHlDlp&-U`G_v{4*Maw4WdG`UMg|omTvY3HEPZ@+6E0)@q z0R`DhJbhi+pK>t?m>WlmPI?Ixk}PqJC~?lu%}vcKVQ?-=O)N=GQ7F$W$xv|j^bH7a z possibleMoves = new Queue(); + + private void Start() + { + for (int x = 0; x < 8; x++) + { + for (int y = 0; y < 8; y++) + { + cells[x, y] = GameObject.Find("Field" + x + "," + y).gameObject; + } + } + } + + private void Update() + { + if (Input.GetMouseButtonDown(0)) + { + //Coloring and selecting cells + GetCellCoord(Input.mousePosition, out int x, out int y); + GameObject cellObject = cells[x, y]; + cellObject.GetComponent().color = new Color(.72f, .36f, .36f); + + if (possibleMoves.Contains(cells[x, y])) + { + //change current team + if (currentTeam == Team.White) + { + currentTeam = Team.Black; + } + else + { + currentTeam = Team.White; + } + + //move the object, disconnect it from the old cell, connect it to the new cell + GameObject selectedObject = selectedCell.GetComponent().connected; + selectedCell.GetComponent().connected = null; + + //kill enemy if necassary + if (cells[x, y].GetComponent().connected != null) + { + Destroy(cells[x, y].GetComponent().connected); + } + + cells[x, y].GetComponent().connected = selectedObject; + selectedObject.transform.position = cells[x, y].transform.position - Vector3.forward; + + //discolor all cells, deselect all cells + selectedCell.GetComponent().color = Color.white; + selectedCell = null; + while (possibleMoves.Count > 0) + { + possibleMoves.Dequeue().GetComponent().color = Color.white; + } + } + else + { + //if there is already a cell selected, deselect it + if (selectedCell != null) + { + selectedCell.GetComponent().color = Color.white; + + while (possibleMoves.Count > 0) + { + possibleMoves.Dequeue().GetComponent().color = Color.white; + } + } + + //if the last selected cell is the current cell, deselect it + if (selectedCell == cellObject) + { + selectedCell = null; + + while (possibleMoves.Count > 0) + { + possibleMoves.Dequeue().GetComponent().color = Color.white; + } + } + else + { + selectedCell = cellObject; + } + + //Futher game logic + if (selectedCell != null) + { + Cell cell = selectedCell.GetComponent(); + if (cell.connected != null) + { + //get the selected character, with all its information + Character selectedCharacter = cell.connected.GetComponent(); + Team selectedTeam = selectedCharacter.team; + CharacterType selectedType = selectedCharacter.type; + + //check if the character is in the current players team + if (selectedTeam == currentTeam) + { + //logic for the knight + if (selectedType == CharacterType.Knight) + { + foreach (Vector2 move in CharacterData.movesKnight) + { + Vector2 absPosition = selectedCell.transform.position + (Vector3)move; + GetCellCoordDirect(absPosition, out int testX, out int testY); + if (!(testX == 9 || testY == 9)) + { + Cell testCell = cells[testX, testY].GetComponent(); + if (testCell.connected == null) + { + testCell.GetComponent().color = new Color(.2f, .9f, .3f); + possibleMoves.Enqueue(cells[testX, testY]); + } + else + { + Character otherCharacter = testCell.connected.GetComponent(); + if (otherCharacter.team != currentTeam) + { + testCell.GetComponent().color = new Color(.92f, .61f, .4f); + possibleMoves.Enqueue(cells[testX, testY]); + } + } + } + } + } + + //logic for the pawn + if (selectedType == CharacterType.Pawn) + { + //stepping 2 forward at beggining + if (currentTeam == Team.White) + { + if (x == 6) //should be y but buggy + { + Vector2 absPosition = selectedCell.transform.position + Vector3.up * 2; + GetCellCoordDirect(absPosition, out int testX, out int testY); + if (!(testX == 9 || testY == 9)) + { + Cell testCell = cells[testX, testY].GetComponent(); + if (testCell.connected == null) + { + testCell.GetComponent().color = new Color(.2f, .9f, .3f); + possibleMoves.Enqueue(cells[testX, testY]); + } + } + } + + Vector2 abs2Position = selectedCell.transform.position + Vector3.up; + GetCellCoordDirect(abs2Position, out int testX2, out int testY2); + if (!(testX2 == 9 || testY2 == 9)) + { + Cell testCell = cells[testX2, testY2].GetComponent(); + if (testCell.connected == null) + { + testCell.GetComponent().color = new Color(.2f, .9f, .3f); + possibleMoves.Enqueue(cells[testX2, testY2]); + } + } + + + abs2Position = selectedCharacter.transform.position + Vector3.up + Vector3.right; + GetCellCoordDirect(abs2Position, out int testX3, out int testY3); + if (!(testX3 == 9 || testY3 == 9)) + { + Cell testCell = cells[testX3, testY3].GetComponent(); + if (testCell.connected != null) + { + Character otherCharacter = testCell.connected.GetComponent(); + if (otherCharacter.team != currentTeam) + { + testCell.GetComponent().color = new Color(.92f, .61f, .4f); + possibleMoves.Enqueue(cells[testX3, testY3]); + } + } + } + + abs2Position = selectedCharacter.transform.position + Vector3.up + Vector3.left; + GetCellCoordDirect(abs2Position, out int testX4, out int testY4); + if (!(testX4 == 9 || testY4 == 9)) + { + Cell testCell = cells[testX4, testY4].GetComponent(); + if (testCell.connected != null) + { + Character otherCharacter = testCell.connected.GetComponent(); + if (otherCharacter.team != currentTeam) + { + testCell.GetComponent().color = new Color(.92f, .61f, .4f); + possibleMoves.Enqueue(cells[testX4, testY4]); + } + } + } + } + else + { + if (x == 1) + { + Vector2 absPosition = selectedCell.transform.position + Vector3.down * 2; + GetCellCoordDirect(absPosition, out int testX, out int testY); + if (!(testX == 9 || testY == 9)) + { + Cell testCell = cells[testX, testY].GetComponent(); + if (testCell.connected == null) + { + testCell.GetComponent().color = + new Color(.2f, .9f, .3f); + possibleMoves.Enqueue(cells[testX, testY]); + } + } + } + + Vector2 abs2Position = selectedCell.transform.position + Vector3.down; + GetCellCoordDirect(abs2Position, out int testX2, out int testY2); + if (!(testX2 == 9 || testY2 == 9)) + { + Cell testCell = cells[testX2, testY2].GetComponent(); + if (testCell.connected == null) + { + testCell.GetComponent().color = new Color(.2f, .9f, .3f); + possibleMoves.Enqueue(cells[testX2, testY2]); + } + } + + abs2Position = selectedCharacter.transform.position + Vector3.down + Vector3.right; + GetCellCoordDirect(abs2Position, out int testX3, out int testY3); + if (!(testX3 == 9 || testY3 == 9)) + { + Cell testCell = cells[testX3, testY3].GetComponent(); + if (testCell.connected != null) + { + Character otherCharacter = testCell.connected.GetComponent(); + if (otherCharacter.team != currentTeam) + { + testCell.GetComponent().color = new Color(.92f, .61f, .4f); + possibleMoves.Enqueue(cells[testX3, testY3]); + } + } + } + + abs2Position = selectedCharacter.transform.position + Vector3.down + Vector3.left; + GetCellCoordDirect(abs2Position, out int testX4, out int testY4); + if (!(testX4 == 9 || testY4 == 9)) + { + Cell testCell = cells[testX4, testY4].GetComponent(); + if (testCell.connected != null) + { + Character otherCharacter = testCell.connected.GetComponent(); + if (otherCharacter.team != currentTeam) + { + testCell.GetComponent().color = new Color(.92f, .61f, .4f); + possibleMoves.Enqueue(cells[testX4, testY4]); + } + } + } + } + } + + //logic for the rook + if (selectedType == CharacterType.Rook) + { + for (int i = 0; i < 4; i++) + { + for (int j = 0; j < 8; j++) + { + Vector3 absPosition = (Vector3)selectedCell.transform.position + (Vector3)CharacterData.movesRook[i, j]; + GetCellCoordDirect(absPosition, out int testX, out int testY); + if (!(testX == 9 || testY == 9)) + { + Cell testCell = cells[testX, testY].GetComponent(); + if (testCell.connected == null) + { + testCell.GetComponent().color = new Color(.2f, .9f, .3f); + possibleMoves.Enqueue(cells[testX, testY]); + } + else + { + Character otherCharacter = testCell.connected.GetComponent(); + if (otherCharacter.team != currentTeam) + { + testCell.GetComponent().color = new Color(.92f, .61f, .4f); + possibleMoves.Enqueue(cells[testX, testY]); + } + + j = 8; + } + } + } + } + } + + //logic for bishop + if (selectedType == CharacterType.Bishop) + { + for (int i = 0; i < 4; i++) + { + for (int j = 0; j < 8; j++) + { + Vector3 absPosition = (Vector3)selectedCell.transform.position + (Vector3)CharacterData.movesBishop[i, j]; + GetCellCoordDirect(absPosition, out int testX, out int testY); + if (!(testX == 9 || testY == 9)) + { + Cell testCell = cells[testX, testY].GetComponent(); + if (testCell.connected == null) + { + testCell.GetComponent().color = new Color(.2f, .9f, .3f); + possibleMoves.Enqueue(cells[testX, testY]); + } + else + { + Character otherCharacter = testCell.connected.GetComponent(); + if (otherCharacter.team != currentTeam) + { + testCell.GetComponent().color = new Color(.92f, .61f, .4f); + possibleMoves.Enqueue(cells[testX, testY]); + } + + j = 8; + } + } + } + } + } + + //logic for queen + if (selectedType == CharacterType.Queen) + { + for (int i = 0; i < 8; i++) + { + for (int j = 0; j < 8; j++) + { + Vector3 absPosition = (Vector3)selectedCell.transform.position + (Vector3)CharacterData.movesQueen[i, j]; + GetCellCoordDirect(absPosition, out int testX, out int testY); + if (!(testX == 9 || testY == 9)) + { + Cell testCell = cells[testX, testY].GetComponent(); + if (testCell.connected == null) + { + testCell.GetComponent().color = new Color(.2f, .9f, .3f); + possibleMoves.Enqueue(cells[testX, testY]); + } + else + { + Character otherCharacter = testCell.connected.GetComponent(); + if (otherCharacter.team != currentTeam) + { + testCell.GetComponent().color = new Color(.92f, .61f, .4f); + possibleMoves.Enqueue(cells[testX, testY]); + } + + j = 8; + } + } + } + } + } + + //logic for king + if (selectedType == CharacterType.King) + { + foreach (Vector2 move in CharacterData.movesKing) + { + Vector2 absPosition = selectedCell.transform.position + (Vector3)move; + GetCellCoordDirect(absPosition, out int testX, out int testY); + if (!(testX == 9 || testY == 9)) + { + Cell testCell = cells[testX, testY].GetComponent(); + if (testCell.connected == null) + { + testCell.GetComponent().color = new Color(.2f, .9f, .3f); + possibleMoves.Enqueue(cells[testX, testY]); + } + else + { + Character otherCharacter = testCell.connected.GetComponent(); + if (otherCharacter.team != currentTeam) + { + testCell.GetComponent().color = new Color(.92f, .61f, .4f); + possibleMoves.Enqueue(cells[testX, testY]); + } + } + } + } + } + } + } + } + } + } + } + + private void GetCellCoord(Vector3 point, out int x, out int y) + { + RaycastHit2D hit = Physics2D.Raycast(cam.ScreenToWorldPoint(point), cam.transform.forward); + if (hit.collider != null) + { + string name = hit.collider.name; + x = int.Parse(name.Substring(5, 1)); + y = int.Parse(name.Substring(7, 1)); + return; + } + + x = 9; + y = 9; + } + + private void GetCellCoordDirect(Vector3 point, out int x, out int y) + { + RaycastHit2D hit = Physics2D.Raycast(point, Vector3.forward); + if (hit.collider != null) + { + string name = hit.collider.name; + x = int.Parse(name.Substring(5, 1)); + y = int.Parse(name.Substring(7, 1)); + } + else + { + x = 9; + y = 9; + } + } +} + +public enum Team +{ + Black, + White +} \ No newline at end of file diff --git a/Chess/Assets/Scripts/Game.cs.meta b/Chess/Assets/Scripts/Game.cs.meta new file mode 100644 index 0000000..d43d7b1 --- /dev/null +++ b/Chess/Assets/Scripts/Game.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 64bccbbe14a86034a904585f5656f5e4 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Chess/Logs/AssetImportWorker0-prev.log b/Chess/Logs/AssetImportWorker0-prev.log new file mode 100644 index 0000000..2f0b52f --- /dev/null +++ b/Chess/Logs/AssetImportWorker0-prev.log @@ -0,0 +1,8164 @@ +Using pre-set license +Built from '2021.1/staging' branch; Version is '2021.1.13f1 (a03098edbbe0) revision 10498200'; Using compiler version '192528614'; Build Type 'Release' +OS: 'Windows 10 Pro; OS build 22000.194; Version 2009; 64bit' Language: 'en' Physical Memory: 16299 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0 + + COMMAND LINE ARGUMENTS: +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker0 +-projectPath +F:/Unity Projects/Chess +-logFile +Logs/AssetImportWorker0.log +-srvPort +54010 +Successfully changed project path to: F:/Unity Projects/Chess +F:/Unity Projects/Chess +Using Asset Import Pipeline V2. +Refreshing native plugins compatible for Editor in 131.10 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2021.1.13f1 (a03098edbbe0) +[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path F:/Unity Projects/Chess/Assets +GfxDevice: creating device client; threaded=0; jobified=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce GTX 1060 6GB (ID=0x1c03) + Vendor: NVIDIA + VRAM: 6052 MB + Driver: 30.0.14.7141 +Initialize mono +Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/Managed' +Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' +Mono config path = 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56304 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.001656 seconds. +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 107.13 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.701 seconds +Domain Reload Profiling: + ReloadAssembly (1701ms) + BeginReloadAssembly (53ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + EndReloadAssembly (523ms) + LoadAssemblies (51ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (266ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (107ms) + BeforeProcessingInitializeOnLoad (1ms) + ProcessInitializeOnLoadAttributes (118ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +Platform modules already initialized, skipping +Registering precompiled user dll's ... +Registered in 0.004587 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 115.78 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.373 seconds +Domain Reload Profiling: + ReloadAssembly (1373ms) + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (1152ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (394ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (60ms) + SetupLoadedEditorAssemblies (494ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (116ms) + BeforeProcessingInitializeOnLoad (98ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Platform modules already initialized, skipping +======================================================================== +Worker process is ready to serve import requests +Launched and connected shader compiler UnityShaderCompiler.exe after 0.21 seconds +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3668 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.1 MB. +System memory in use after: 136.2 MB. + +Unloading 37 unused Assets to reduce memory usage. Loaded Objects now: 4112. +Total: 3.431500 ms (FindLiveObjects: 0.338000 ms CreateObjectMapping: 0.265800 ms MarkObjects: 2.697200 ms DeleteObjects: 0.128800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + path: Assets/Graphics + artifactKey: Guid(7cf9c00492b65eb44bf896cf966cc1b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics using Guid(7cf9c00492b65eb44bf896cf966cc1b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bbc51d7d960899e92abea8ddbc966edf') in 0.011103 seconds +======================================================================== +Received Import Request. + Time since last request: 80.739201 seconds. + path: Assets/Graphics/BlackField.png + artifactKey: Guid(c260f07e86bdb4c41aed2c8e4e548aec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/BlackField.png using Guid(c260f07e86bdb4c41aed2c8e4e548aec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '494df332399120801c117917194babb1') in 0.173373 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000364 seconds. + path: Assets/Graphics/WhiteField.png + artifactKey: Guid(97e4a780da3f5ba4880bba62e9acfb51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/WhiteField.png using Guid(97e4a780da3f5ba4880bba62e9acfb51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f542ed6137dad3e3d02188e2676a8ae4') in 0.018015 seconds +======================================================================== +Received Import Request. + Time since last request: 9.822410 seconds. + path: Assets/Graphics/BlackField.png + artifactKey: Guid(c260f07e86bdb4c41aed2c8e4e548aec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/BlackField.png using Guid(c260f07e86bdb4c41aed2c8e4e548aec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a7c08cf887dc80ee26c820578c48b75f') in 0.009972 seconds +======================================================================== +Received Import Request. + Time since last request: 3.072344 seconds. + path: Assets/Graphics/WhiteField.png + artifactKey: Guid(97e4a780da3f5ba4880bba62e9acfb51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/WhiteField.png using Guid(97e4a780da3f5ba4880bba62e9acfb51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9dff91e3774bfe35e0fe85b9b699e625') in 0.013899 seconds +======================================================================== +Received Import Request. + Time since last request: 2.092867 seconds. + path: Assets/Graphics/WhiteField.png + artifactKey: Guid(97e4a780da3f5ba4880bba62e9acfb51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/WhiteField.png using Guid(97e4a780da3f5ba4880bba62e9acfb51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e3416b236da177702c82a772bd5c8a7a') in 0.011712 seconds +======================================================================== +Received Import Request. + Time since last request: 3.324680 seconds. + path: Assets/Graphics/BlackField.png + artifactKey: Guid(c260f07e86bdb4c41aed2c8e4e548aec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/BlackField.png using Guid(c260f07e86bdb4c41aed2c8e4e548aec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a96b90353c205c951e11a18f79495a76') in 0.011875 seconds +======================================================================== +Received Import Request. + Time since last request: 8.568553 seconds. + path: Assets/Graphics/WhiteField.prefab + artifactKey: Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/WhiteField.prefab using Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '256301c62f3d9593fea9a87c1d05e00d') in 0.040888 seconds +======================================================================== +Received Import Request. + Time since last request: 9.549158 seconds. + path: Assets/Graphics/BlackField.prefab + artifactKey: Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/BlackField.prefab using Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c27dd988a89cd202c3f4237453ae32b3') in 0.013841 seconds +======================================================================== +Received Import Request. + Time since last request: 342.480595 seconds. + path: Assets/Graphics/BlackField.png + artifactKey: Guid(c260f07e86bdb4c41aed2c8e4e548aec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/BlackField.png using Guid(c260f07e86bdb4c41aed2c8e4e548aec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ddc4cf0c95d84520dae65db29750e76f') in 0.011187 seconds +======================================================================== +Received Import Request. + Time since last request: 629.399706 seconds. + path: Assets/Graphics/Characters + artifactKey: Guid(0152924e44d6b5042a8bd35bac6f4102) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters using Guid(0152924e44d6b5042a8bd35bac6f4102) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2505c87f82a2162b8a9bff1a17196495') in 0.008926 seconds +======================================================================== +Received Import Request. + Time since last request: 7.932346 seconds. + path: Assets/Graphics/Characters/blackBishop.png + artifactKey: Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackBishop.png using Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '829ca16fbe3da0c10aac2629e510d853') in 0.019813 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000413 seconds. + path: Assets/Graphics/Characters/whiteQueen.png + artifactKey: Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteQueen.png using Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e76ad9af41706c49226fa2c66e4510c4') in 0.020943 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000195 seconds. + path: Assets/Graphics/Characters/blackQueen.png + artifactKey: Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackQueen.png using Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f6cc913f237f5757ba58276c64a80a86') in 0.018912 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000206 seconds. + path: Assets/Graphics/Characters/whiteKnight.png + artifactKey: Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKnight.png using Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '800a8fc6b7897a88c81c5cda25fe70b0') in 0.012632 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000293 seconds. + path: Assets/Graphics/Characters/whiteBishop.png + artifactKey: Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteBishop.png using Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7f35fac55e2ecab42fc52e7f0ac7bc3c') in 0.012381 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000145 seconds. + path: Assets/Graphics/Characters/whiteRook.png + artifactKey: Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteRook.png using Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '82aea9a6fbac0d5bcfb4bd93aeec3b0e') in 0.011626 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000152 seconds. + path: Assets/Graphics/Characters/whiteKing.png + artifactKey: Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKing.png using Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '512da08dab191bd6e8a3f01810660573') in 0.011676 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000143 seconds. + path: Assets/Graphics/Characters/blackRook.png + artifactKey: Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackRook.png using Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '159d868c5bcb0e22b3200b3e10f4e26b') in 0.011859 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000236 seconds. + path: Assets/Graphics/Characters/whitePawn.png + artifactKey: Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whitePawn.png using Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7fcac8310d93d1f6d6df9e66b8ba6373') in 0.015667 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000075 seconds. + path: Assets/Graphics/Characters/blackPawn.png + artifactKey: Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackPawn.png using Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8eef541aa066c3ecc578bfb9e1d335f0') in 0.013338 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000268 seconds. + path: Assets/Graphics/Characters/blackKnight.png + artifactKey: Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKnight.png using Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '76375f9370a029d5bdf606c82dd4edaa') in 0.012685 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000253 seconds. + path: Assets/Graphics/Characters/blackKing.png + artifactKey: Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKing.png using Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7f931dcec68d583652d2303607088f92') in 0.011647 seconds +======================================================================== +Received Import Request. + Time since last request: 7.867748 seconds. + path: Assets/Graphics/Characters/blackBishop.png + artifactKey: Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackBishop.png using Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '271e608ecec72f8b70ee9a59291a32b9') in 0.008967 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000294 seconds. + path: Assets/Graphics/Characters/whiteQueen.png + artifactKey: Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteQueen.png using Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '012a584319a922b36d42f2c6ad4b9c0b') in 0.012627 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000323 seconds. + path: Assets/Graphics/Characters/blackQueen.png + artifactKey: Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackQueen.png using Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1153be09509b1c615027372f9c9f6b9b') in 0.017387 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000309 seconds. + path: Assets/Graphics/Characters/whiteKnight.png + artifactKey: Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKnight.png using Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0948109f3fa669492e17e6800d05073b') in 0.012927 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000197 seconds. + path: Assets/Graphics/Characters/whiteBishop.png + artifactKey: Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteBishop.png using Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f3377c86510833ade6fc1b98306da55a') in 0.011145 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000189 seconds. + path: Assets/Graphics/Characters/whiteRook.png + artifactKey: Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteRook.png using Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2bffa73d79ae9d53348d116a54e7181e') in 0.010995 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000297 seconds. + path: Assets/Graphics/Characters/whiteKing.png + artifactKey: Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKing.png using Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '747601dd255e91566431c68c27104ba2') in 0.009309 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000191 seconds. + path: Assets/Graphics/Characters/blackRook.png + artifactKey: Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackRook.png using Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0508cfd6649db2cce24d1a47b99d173b') in 0.009129 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000172 seconds. + path: Assets/Graphics/Characters/whitePawn.png + artifactKey: Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whitePawn.png using Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6175be94f05cc0771af00a2c84bd2cac') in 0.011485 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000172 seconds. + path: Assets/Graphics/Characters/blackPawn.png + artifactKey: Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackPawn.png using Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aa85995216053b6e22daec03168bf6b5') in 0.010179 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000172 seconds. + path: Assets/Graphics/Characters/blackKnight.png + artifactKey: Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKnight.png using Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9d1bd093685edd55ad11d18066402444') in 0.009838 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000187 seconds. + path: Assets/Graphics/Characters/blackKing.png + artifactKey: Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKing.png using Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'faa1d942d5567cbcf62e013622228977') in 0.009808 seconds +======================================================================== +Received Import Request. + Time since last request: 49.454995 seconds. + path: Assets/Graphics/Characters/blackBishop.png + artifactKey: Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackBishop.png using Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9cc57e4034026ebe288fc179cfb28067') in 0.012266 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000077 seconds. + path: Assets/Graphics/Characters/whiteQueen.png + artifactKey: Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteQueen.png using Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38f4b5821a922b8da86a1b0827659113') in 0.011655 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000373 seconds. + path: Assets/Graphics/Characters/blackQueen.png + artifactKey: Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackQueen.png using Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2ec7753980a46ed48caad55e1d575bcc') in 0.012875 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000276 seconds. + path: Assets/Graphics/Characters/whiteKnight.png + artifactKey: Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKnight.png using Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9987fa7367f9ebb1349d04e9aed23da') in 0.014968 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000417 seconds. + path: Assets/Graphics/Characters/whiteBishop.png + artifactKey: Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteBishop.png using Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6eabd853ba250f03f903a22019b7b677') in 0.013098 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000265 seconds. + path: Assets/Graphics/Characters/whiteRook.png + artifactKey: Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteRook.png using Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2089198fe8210eda6026f1618e5a8e65') in 0.010072 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000189 seconds. + path: Assets/Graphics/Characters/whiteKing.png + artifactKey: Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKing.png using Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aface17ee0a5305f6e531ef8d10e3ec9') in 0.009815 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000164 seconds. + path: Assets/Graphics/Characters/blackRook.png + artifactKey: Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackRook.png using Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '706290f58a0fd0257eecba3b83c270d0') in 0.007239 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000182 seconds. + path: Assets/Graphics/Characters/whitePawn.png + artifactKey: Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whitePawn.png using Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7353027c7304cfc14963bfbed50f58ea') in 0.008909 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000196 seconds. + path: Assets/Graphics/Characters/blackPawn.png + artifactKey: Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackPawn.png using Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c0c84de8ac8870da998e4f15158a83e0') in 0.012579 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000262 seconds. + path: Assets/Graphics/Characters/blackKnight.png + artifactKey: Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKnight.png using Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'edd1a306dd728617bf3a07713b4c2bab') in 0.008108 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000183 seconds. + path: Assets/Graphics/Characters/blackKing.png + artifactKey: Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKing.png using Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5c76ea57a06e05c947812508cb42be19') in 0.007030 seconds +======================================================================== +Received Import Request. + Time since last request: 28.949921 seconds. + path: Assets/Graphics/Characters/whiteRook.png + artifactKey: Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteRook.png using Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6313babfe56b493ba641a2bbd17ff007') in 0.008989 seconds +======================================================================== +Received Import Request. + Time since last request: 298.432954 seconds. + path: Assets/Graphics/Characters/whiteKnight.png + artifactKey: Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKnight.png using Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c5658889a98248318c5f5292da3eb51') in 0.011592 seconds +======================================================================== +Received Import Request. + Time since last request: 5.375279 seconds. + path: Assets/Graphics/Characters/blackBishop.png + artifactKey: Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackBishop.png using Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5408e005cff2b98566c7ce557448b8f9') in 0.019034 seconds +======================================================================== +Received Import Request. + Time since last request: 0.007281 seconds. + path: Assets/Graphics/Characters/whiteQueen.png + artifactKey: Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteQueen.png using Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3ba8afa71503a1354aff1f8313d77217') in 0.016838 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000188 seconds. + path: Assets/Graphics/Characters/blackQueen.png + artifactKey: Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackQueen.png using Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0c320542cad2c5f27b926ddd47c34274') in 0.013707 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000278 seconds. + path: Assets/Graphics/Characters/whiteBishop.png + artifactKey: Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteBishop.png using Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '753d20f1eb5982a1c8980014acd5e3ef') in 0.012055 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000275 seconds. + path: Assets/Graphics/Characters/whiteKing.png + artifactKey: Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKing.png using Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1181e9bfe4440c67c817a638c22ba27e') in 0.017018 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000181 seconds. + path: Assets/Graphics/Characters/blackRook.png + artifactKey: Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackRook.png using Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '982af9ffec28d130d851b8dbadf61e64') in 0.011884 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000164 seconds. + path: Assets/Graphics/Characters/whitePawn.png + artifactKey: Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whitePawn.png using Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f5ebb7a2dc18a9d9ca63214ae37c130') in 0.012081 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000210 seconds. + path: Assets/Graphics/Characters/blackPawn.png + artifactKey: Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackPawn.png using Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '54281317d3367748db8db83cc6157342') in 0.024245 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000168 seconds. + path: Assets/Graphics/Characters/blackKnight.png + artifactKey: Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKnight.png using Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c6c51f5f059be7fb65abac925073ac17') in 0.019081 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000177 seconds. + path: Assets/Graphics/Characters/blackKing.png + artifactKey: Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKing.png using Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08a14e463d4613c07432e3793b422a06') in 0.009036 seconds +======================================================================== +Received Import Request. + Time since last request: 625.056925 seconds. + path: Assets + artifactKey: Guid(00000000000000001000000000000000) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets using Guid(00000000000000001000000000000000) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '68a4034d3d715da871e781da702f0bc5') in 0.012344 seconds +======================================================================== +Received Import Request. + Time since last request: 4.160746 seconds. + path: Assets/Scripts + artifactKey: Guid(0ab2dba996759814390db3c92e086d76) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts using Guid(0ab2dba996759814390db3c92e086d76) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9456f5f44c47eaf9ecfbec9dc2de298e') in 0.010401 seconds +======================================================================== +Received Import Request. + Time since last request: 6.507524 seconds. + path: Assets/Scripts/Cell.cs + artifactKey: Guid(914ccdfc751746744ab0d9986aaf1420) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Cell.cs using Guid(914ccdfc751746744ab0d9986aaf1420) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd3b6bf045ae41118c02bd2cbab501b24') in 0.030436 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004170 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 1.07 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.210 seconds +Domain Reload Profiling: + ReloadAssembly (1211ms) + BeginReloadAssembly (120ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1030ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (396ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (340ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (249ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (26ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3678 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 162.9 MB. +System memory in use after: 163.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4911. +Total: 4.526900 ms (FindLiveObjects: 0.343400 ms CreateObjectMapping: 0.220200 ms MarkObjects: 3.831800 ms DeleteObjects: 0.130200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 17.129726 seconds. + path: Assets/Graphics/BlackField.prefab + artifactKey: Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/BlackField.prefab using Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aefa9079676b6b073c2e946b44d848fe') in 0.063705 seconds +======================================================================== +Received Import Request. + Time since last request: 8.763383 seconds. + path: Assets/Graphics/WhiteField.prefab + artifactKey: Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/WhiteField.prefab using Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec04aa859ec9b0e0202b0a4454e2e238') in 0.018357 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005349 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 5.936 seconds +Domain Reload Profiling: + ReloadAssembly (5936ms) + BeginReloadAssembly (1035ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (103ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (206ms) + EndReloadAssembly (4786ms) + LoadAssemblies (414ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (1658ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (208ms) + SetupLoadedEditorAssemblies (1307ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (216ms) + ProcessInitializeOnLoadAttributes (1052ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (37ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3664 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 162.5 MB. +System memory in use after: 162.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4916. +Total: 3.186500 ms (FindLiveObjects: 0.331000 ms CreateObjectMapping: 0.193900 ms MarkObjects: 2.548500 ms DeleteObjects: 0.111600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 58.138973 seconds. + path: Assets/Scripts/Cell.cs + artifactKey: Guid(914ccdfc751746744ab0d9986aaf1420) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Cell.cs using Guid(914ccdfc751746744ab0d9986aaf1420) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9a113fe0050b8c4fb2d73baff7a01dad') in 0.013641 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004456 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.509 seconds +Domain Reload Profiling: + ReloadAssembly (1510ms) + BeginReloadAssembly (125ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1321ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (519ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (114ms) + SetupLoadedEditorAssemblies (390ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (293ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3664 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 162.5 MB. +System memory in use after: 162.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4920. +Total: 3.283500 ms (FindLiveObjects: 0.343900 ms CreateObjectMapping: 0.192100 ms MarkObjects: 2.633200 ms DeleteObjects: 0.112900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 21.355013 seconds. + path: Assets/Scripts/Game.cs + artifactKey: Guid(64bccbbe14a86034a904585f5656f5e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Game.cs using Guid(64bccbbe14a86034a904585f5656f5e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c572e961b1b3442c2d449aac044ddae5') in 0.015662 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004420 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.239 seconds +Domain Reload Profiling: + ReloadAssembly (1240ms) + BeginReloadAssembly (130ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (12ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1040ms) + LoadAssemblies (106ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (404ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (344ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (254ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.85 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 162.6 MB. +System memory in use after: 162.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4925. +Total: 3.506700 ms (FindLiveObjects: 0.338600 ms CreateObjectMapping: 0.349200 ms MarkObjects: 2.715500 ms DeleteObjects: 0.102300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004514 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 1.06 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.254 seconds +Domain Reload Profiling: + ReloadAssembly (1255ms) + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (12ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (59ms) + EndReloadAssembly (1033ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (390ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (351ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (257ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 162.6 MB. +System memory in use after: 162.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4929. +Total: 5.590500 ms (FindLiveObjects: 0.485600 ms CreateObjectMapping: 0.326700 ms MarkObjects: 4.662400 ms DeleteObjects: 0.114200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006392 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.548 seconds +Domain Reload Profiling: + ReloadAssembly (1548ms) + BeginReloadAssembly (190ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (74ms) + EndReloadAssembly (1191ms) + LoadAssemblies (126ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (526ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (77ms) + SetupLoadedEditorAssemblies (329ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 162.7 MB. +System memory in use after: 162.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4933. +Total: 3.740800 ms (FindLiveObjects: 0.468000 ms CreateObjectMapping: 0.244300 ms MarkObjects: 2.928200 ms DeleteObjects: 0.099200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005467 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.66 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.452 seconds +Domain Reload Profiling: + ReloadAssembly (1452ms) + BeginReloadAssembly (282ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (12ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1023ms) + LoadAssemblies (242ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (382ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (364ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (280ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 162.7 MB. +System memory in use after: 162.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4937. +Total: 2.997500 ms (FindLiveObjects: 0.327100 ms CreateObjectMapping: 0.193700 ms MarkObjects: 2.357400 ms DeleteObjects: 0.118400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004422 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.726 seconds +Domain Reload Profiling: + ReloadAssembly (1726ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1537ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (641ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (72ms) + SetupLoadedEditorAssemblies (456ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (172ms) + ProcessInitializeOnLoadAttributes (260ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (29ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 162.7 MB. +System memory in use after: 162.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4941. +Total: 26.872900 ms (FindLiveObjects: 0.481100 ms CreateObjectMapping: 0.326100 ms MarkObjects: 24.950800 ms DeleteObjects: 1.113000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004304 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.358 seconds +Domain Reload Profiling: + ReloadAssembly (1358ms) + BeginReloadAssembly (132ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1142ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (441ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (55ms) + SetupLoadedEditorAssemblies (379ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (290ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 162.7 MB. +System memory in use after: 162.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4945. +Total: 3.497500 ms (FindLiveObjects: 0.560900 ms CreateObjectMapping: 0.241900 ms MarkObjects: 2.583900 ms DeleteObjects: 0.109200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004183 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.320 seconds +Domain Reload Profiling: + ReloadAssembly (1321ms) + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + EndReloadAssembly (1094ms) + LoadAssemblies (130ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (459ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (335ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (248ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 162.7 MB. +System memory in use after: 162.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4949. +Total: 6.251200 ms (FindLiveObjects: 0.367000 ms CreateObjectMapping: 0.252400 ms MarkObjects: 5.211900 ms DeleteObjects: 0.418400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004161 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.88 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.388 seconds +Domain Reload Profiling: + ReloadAssembly (1389ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (17ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1195ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (512ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (376ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (275ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 162.8 MB. +System memory in use after: 162.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4953. +Total: 10.836600 ms (FindLiveObjects: 0.340500 ms CreateObjectMapping: 0.188000 ms MarkObjects: 9.128400 ms DeleteObjects: 1.178300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006889 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.84 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.389 seconds +Domain Reload Profiling: + ReloadAssembly (1390ms) + BeginReloadAssembly (194ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (71ms) + EndReloadAssembly (1115ms) + LoadAssemblies (120ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (473ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (344ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (251ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.45 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 162.8 MB. +System memory in use after: 162.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4957. +Total: 3.735000 ms (FindLiveObjects: 0.311700 ms CreateObjectMapping: 0.163000 ms MarkObjects: 3.122200 ms DeleteObjects: 0.137000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004453 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.204 seconds +Domain Reload Profiling: + ReloadAssembly (1204ms) + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (991ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (395ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (326ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.11 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.0 MB. +System memory in use after: 163.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4961. +Total: 7.403500 ms (FindLiveObjects: 0.758700 ms CreateObjectMapping: 0.603300 ms MarkObjects: 5.729200 ms DeleteObjects: 0.311100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005526 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.214 seconds +Domain Reload Profiling: + ReloadAssembly (1215ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (12ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1014ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (380ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (360ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (270ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.0 MB. +System memory in use after: 163.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4965. +Total: 3.716900 ms (FindLiveObjects: 0.309500 ms CreateObjectMapping: 0.167500 ms MarkObjects: 3.073300 ms DeleteObjects: 0.165500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004170 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.204 seconds +Domain Reload Profiling: + ReloadAssembly (1205ms) + BeginReloadAssembly (126ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1017ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (387ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (340ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (251ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.88 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.0 MB. +System memory in use after: 163.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4969. +Total: 3.655000 ms (FindLiveObjects: 0.352100 ms CreateObjectMapping: 0.204500 ms MarkObjects: 2.991900 ms DeleteObjects: 0.104800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 535.141635 seconds. + path: Assets/Graphics/BlackField.png + artifactKey: Guid(c260f07e86bdb4c41aed2c8e4e548aec) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Graphics/BlackField.png using Guid(c260f07e86bdb4c41aed2c8e4e548aec) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: 'ba96a084778c9228b4cdffd3b386b3ee') in 0.109620 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000184 seconds. + path: Assets/Scripts/Cell.cs + artifactKey: Guid(914ccdfc751746744ab0d9986aaf1420) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Scripts/Cell.cs using Guid(914ccdfc751746744ab0d9986aaf1420) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: 'f76bc70838d8ab63d0bdbef280c1ef48') in 0.013491 seconds +======================================================================== +Received Import Request. + Time since last request: 0.001282 seconds. + path: Assets/Graphics/BlackField.prefab + artifactKey: Guid(0793b24456cf4524993e150ea5b45400) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Graphics/BlackField.prefab using Guid(0793b24456cf4524993e150ea5b45400) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: '7417923b70d652c6ec41678df97a1f3d') in 0.019918 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000202 seconds. + path: Assets/Graphics/Characters/blackQueen.png + artifactKey: Guid(cefa153c358d0d849aa87c0060366220) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Graphics/Characters/blackQueen.png using Guid(cefa153c358d0d849aa87c0060366220) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: '30499f239db9ac5ba1a12e1281c79cdb') in 0.016236 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000194 seconds. + path: Assets/Graphics/Characters/blackRook.png + artifactKey: Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Graphics/Characters/blackRook.png using Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: 'f6385e17e3da6d7605f581b03ada5203') in 0.019072 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000176 seconds. + path: Assets/Scripts/Game.cs + artifactKey: Guid(64bccbbe14a86034a904585f5656f5e4) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Scripts/Game.cs using Guid(64bccbbe14a86034a904585f5656f5e4) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: 'b784d8e1c2400206ce80d8cab4ae3b65') in 0.017303 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000183 seconds. + path: Assets/Graphics/WhiteField.png + artifactKey: Guid(97e4a780da3f5ba4880bba62e9acfb51) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Graphics/WhiteField.png using Guid(97e4a780da3f5ba4880bba62e9acfb51) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: 'c47b0337cf4d55222f0014f0a862c9d8') in 0.015059 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000175 seconds. + path: Assets/Graphics/Characters/blackBishop.png + artifactKey: Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Graphics/Characters/blackBishop.png using Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: '0e627ca794bfd9ed2dbe814705d9fb37') in 0.017069 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000171 seconds. + path: Assets/Graphics/Characters/blackKnight.png + artifactKey: Guid(51758841b7ebece46b8c25b547faed45) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Graphics/Characters/blackKnight.png using Guid(51758841b7ebece46b8c25b547faed45) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: 'ee1a99e356d3985becc0807721f49610') in 0.022494 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000209 seconds. + path: Assets/Graphics/Characters/whiteRook.png + artifactKey: Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Graphics/Characters/whiteRook.png using Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: '9f978d3974a21114b591876ba3ef1486') in 0.014124 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000166 seconds. + path: Assets/Graphics/Characters/whiteKing.png + artifactKey: Guid(d5621a225fbee1345a5c900f375fc159) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Graphics/Characters/whiteKing.png using Guid(d5621a225fbee1345a5c900f375fc159) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: '3feecd54faf86ade6e9ba5c3245ef96f') in 0.014151 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000163 seconds. + path: Assets/Graphics/Characters/whiteBishop.png + artifactKey: Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Graphics/Characters/whiteBishop.png using Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: '1dca3734366682f76f19b27ac7eb095b') in 0.013696 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000182 seconds. + path: Assets/Graphics/Characters/whiteKnight.png + artifactKey: Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Graphics/Characters/whiteKnight.png using Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: '8b0f7f6c43dd849bbb2abf4c5f34d016') in 0.013909 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000203 seconds. + path: Assets/Graphics/Characters/whiteQueen.png + artifactKey: Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Graphics/Characters/whiteQueen.png using Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: '2b0729ffb4549ab8c17e4a301488419b') in 0.018930 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000179 seconds. + path: Assets/Graphics/Characters/blackKing.png + artifactKey: Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Graphics/Characters/blackKing.png using Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: '23781998b97d98a1113744184f1c9c88') in 0.016983 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000185 seconds. + path: Assets/Graphics/WhiteField.prefab + artifactKey: Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Graphics/WhiteField.prefab using Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: 'f92db4ceb4e2cce4e7ce7fdba028d1fa') in 0.014232 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000198 seconds. + path: Assets/Graphics/Characters/whitePawn.png + artifactKey: Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Graphics/Characters/whitePawn.png using Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: 'e1f7b41ca591aa955cf30bc5c368775c') in 0.017277 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000181 seconds. + path: Assets/Graphics/Characters/blackPawn.png + artifactKey: Guid(03eeda42f4c4db5458d4441eb8049128) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Graphics/Characters/blackPawn.png using Guid(03eeda42f4c4db5458d4441eb8049128) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: 'ade1d272627f42a8477f321671c8bd8e') in 0.016870 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000175 seconds. + path: Assets/Scenes/SampleScene.unity + artifactKey: Guid(2cda990e2423bbf4892e6590ba056729) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) +Start importing Assets/Scenes/SampleScene.unity using Guid(2cda990e2423bbf4892e6590ba056729) Importer(2089858483,934ff659095e30574adcf32a4c2f97b5) -> (artifact id: '5d895399dae3b0de1a76cd7f1a356af5') in 0.013889 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004658 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.94 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.544 seconds +Domain Reload Profiling: + ReloadAssembly (1544ms) + BeginReloadAssembly (150ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (17ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1316ms) + LoadAssemblies (121ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (502ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (74ms) + SetupLoadedEditorAssemblies (443ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (329ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (30ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.1 MB. +System memory in use after: 163.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4973. +Total: 3.336500 ms (FindLiveObjects: 0.339200 ms CreateObjectMapping: 0.192700 ms MarkObjects: 2.702100 ms DeleteObjects: 0.101200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004140 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.219 seconds +Domain Reload Profiling: + ReloadAssembly (1219ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1027ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (421ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.27 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.1 MB. +System memory in use after: 163.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4977. +Total: 4.948200 ms (FindLiveObjects: 0.530300 ms CreateObjectMapping: 0.505700 ms MarkObjects: 3.799200 ms DeleteObjects: 0.111200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004668 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.632 seconds +Domain Reload Profiling: + ReloadAssembly (1632ms) + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1392ms) + LoadAssemblies (124ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (525ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (60ms) + SetupLoadedEditorAssemblies (406ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (311ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.1 MB. +System memory in use after: 163.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4981. +Total: 3.071100 ms (FindLiveObjects: 0.336900 ms CreateObjectMapping: 0.201000 ms MarkObjects: 2.431100 ms DeleteObjects: 0.100700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004193 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.96 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.592 seconds +Domain Reload Profiling: + ReloadAssembly (1593ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1406ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (558ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (401ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (100ms) + ProcessInitializeOnLoadAttributes (270ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.1 MB. +System memory in use after: 163.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4985. +Total: 3.749900 ms (FindLiveObjects: 0.342500 ms CreateObjectMapping: 0.189900 ms MarkObjects: 3.059500 ms DeleteObjects: 0.156700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004398 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.201 seconds +Domain Reload Profiling: + ReloadAssembly (1201ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1005ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (393ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (331ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.1 MB. +System memory in use after: 163.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4989. +Total: 6.323300 ms (FindLiveObjects: 0.384700 ms CreateObjectMapping: 0.930500 ms MarkObjects: 4.897700 ms DeleteObjects: 0.108900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004180 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.274 seconds +Domain Reload Profiling: + ReloadAssembly (1275ms) + BeginReloadAssembly (120ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1094ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (395ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (391ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (289ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (29ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.1 MB. +System memory in use after: 163.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4993. +Total: 3.399500 ms (FindLiveObjects: 0.374700 ms CreateObjectMapping: 0.229100 ms MarkObjects: 2.686800 ms DeleteObjects: 0.107500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004119 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.265 seconds +Domain Reload Profiling: + ReloadAssembly (1266ms) + BeginReloadAssembly (134ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1059ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (438ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (329ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.1 MB. +System memory in use after: 163.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4997. +Total: 4.298700 ms (FindLiveObjects: 0.334800 ms CreateObjectMapping: 0.240300 ms MarkObjects: 3.617300 ms DeleteObjects: 0.104700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004367 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.213 seconds +Domain Reload Profiling: + ReloadAssembly (1214ms) + BeginReloadAssembly (129ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1021ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (411ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.2 MB. +System memory in use after: 163.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5001. +Total: 5.789300 ms (FindLiveObjects: 0.560600 ms CreateObjectMapping: 0.390500 ms MarkObjects: 4.377200 ms DeleteObjects: 0.459500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005068 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.478 seconds +Domain Reload Profiling: + ReloadAssembly (1478ms) + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1236ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (537ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (65ms) + SetupLoadedEditorAssemblies (352ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (263ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.2 MB. +System memory in use after: 163.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5005. +Total: 3.828300 ms (FindLiveObjects: 0.395600 ms CreateObjectMapping: 0.339800 ms MarkObjects: 2.955500 ms DeleteObjects: 0.135900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004029 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.178 seconds +Domain Reload Profiling: + ReloadAssembly (1178ms) + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (989ms) + LoadAssemblies (110ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (380ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (326ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.88 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.2 MB. +System memory in use after: 163.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5009. +Total: 30.141800 ms (FindLiveObjects: 1.374400 ms CreateObjectMapping: 2.877800 ms MarkObjects: 25.782400 ms DeleteObjects: 0.105900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006849 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.199 seconds +Domain Reload Profiling: + ReloadAssembly (1199ms) + BeginReloadAssembly (140ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (22ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (980ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (380ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (328ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (233ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.4 MB. +System memory in use after: 163.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5013. +Total: 3.803000 ms (FindLiveObjects: 0.389800 ms CreateObjectMapping: 0.309000 ms MarkObjects: 2.989100 ms DeleteObjects: 0.113800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004535 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.162 seconds +Domain Reload Profiling: + ReloadAssembly (1162ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (977ms) + LoadAssemblies (88ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (377ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (329ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (26ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.4 MB. +System memory in use after: 163.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5017. +Total: 3.368200 ms (FindLiveObjects: 0.395200 ms CreateObjectMapping: 0.232300 ms MarkObjects: 2.575900 ms DeleteObjects: 0.163500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005075 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.450 seconds +Domain Reload Profiling: + ReloadAssembly (1450ms) + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (22ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1198ms) + LoadAssemblies (112ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (467ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (423ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (328ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (29ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.80 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.8 MB. +System memory in use after: 163.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5021. +Total: 4.517000 ms (FindLiveObjects: 0.453400 ms CreateObjectMapping: 0.471500 ms MarkObjects: 3.432000 ms DeleteObjects: 0.158900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004877 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.66 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.129 seconds +Domain Reload Profiling: + ReloadAssembly (1130ms) + BeginReloadAssembly (131ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (938ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (362ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (319ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (234ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.8 MB. +System memory in use after: 163.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5025. +Total: 3.046400 ms (FindLiveObjects: 0.369700 ms CreateObjectMapping: 0.202900 ms MarkObjects: 2.375900 ms DeleteObjects: 0.096800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004087 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.193 seconds +Domain Reload Profiling: + ReloadAssembly (1194ms) + BeginReloadAssembly (142ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (986ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (390ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (324ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 2.05 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.8 MB. +System memory in use after: 163.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5029. +Total: 8.564600 ms (FindLiveObjects: 0.881200 ms CreateObjectMapping: 0.933400 ms MarkObjects: 6.369100 ms DeleteObjects: 0.379400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005193 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.240 seconds +Domain Reload Profiling: + ReloadAssembly (1240ms) + BeginReloadAssembly (142ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1027ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (409ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (332ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.8 MB. +System memory in use after: 163.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5033. +Total: 4.746300 ms (FindLiveObjects: 0.409400 ms CreateObjectMapping: 0.207200 ms MarkObjects: 3.988500 ms DeleteObjects: 0.140000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004547 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.139 seconds +Domain Reload Profiling: + ReloadAssembly (1139ms) + BeginReloadAssembly (132ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (946ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (370ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (318ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (235ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.8 MB. +System memory in use after: 164.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5037. +Total: 3.783800 ms (FindLiveObjects: 0.354900 ms CreateObjectMapping: 0.179100 ms MarkObjects: 3.137500 ms DeleteObjects: 0.111200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004339 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.253 seconds +Domain Reload Profiling: + ReloadAssembly (1254ms) + BeginReloadAssembly (121ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1069ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (427ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (362ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (267ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (26ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.8 MB. +System memory in use after: 164.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5041. +Total: 3.662800 ms (FindLiveObjects: 0.383500 ms CreateObjectMapping: 0.216200 ms MarkObjects: 2.946700 ms DeleteObjects: 0.115000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004344 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.190 seconds +Domain Reload Profiling: + ReloadAssembly (1190ms) + BeginReloadAssembly (131ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (995ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (378ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (332ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.9 MB. +System memory in use after: 164.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5045. +Total: 3.272700 ms (FindLiveObjects: 0.355000 ms CreateObjectMapping: 0.183800 ms MarkObjects: 2.593200 ms DeleteObjects: 0.139500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004170 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.197 seconds +Domain Reload Profiling: + ReloadAssembly (1197ms) + BeginReloadAssembly (134ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (995ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (396ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.9 MB. +System memory in use after: 164.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5049. +Total: 5.401800 ms (FindLiveObjects: 0.419300 ms CreateObjectMapping: 0.274400 ms MarkObjects: 4.575600 ms DeleteObjects: 0.131200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 611.298225 seconds. + path: Assets/Graphics/BlackField.prefab + artifactKey: Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/BlackField.prefab using Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '917479b5c76316c00af795ced805e91b') in 0.061829 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000358 seconds. + path: Assets/Graphics/WhiteField.prefab + artifactKey: Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/WhiteField.prefab using Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8c2101c4b3609bde2643eaaf74ae4c07') in 0.016903 seconds +======================================================================== +Received Import Request. + Time since last request: 13.029075 seconds. + path: Assets/Graphics/BlackField.prefab + artifactKey: Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/BlackField.prefab using Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e3944c81007904eb3d3e8db493abbbca') in 0.008008 seconds +======================================================================== +Received Import Request. + Time since last request: 11.505997 seconds. + path: Assets/Graphics/WhiteField.prefab + artifactKey: Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/WhiteField.prefab using Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1528fce52c4e22ece94d67a2db4b22eb') in 0.009290 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006377 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.83 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.273 seconds +Domain Reload Profiling: + ReloadAssembly (1273ms) + BeginReloadAssembly (130ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1074ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (399ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (386ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (289ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (27ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.9 MB. +System memory in use after: 164.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5054. +Total: 4.233000 ms (FindLiveObjects: 0.504200 ms CreateObjectMapping: 0.313500 ms MarkObjects: 3.309100 ms DeleteObjects: 0.104700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004581 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.197 seconds +Domain Reload Profiling: + ReloadAssembly (1197ms) + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (989ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (382ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (332ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.85 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.9 MB. +System memory in use after: 164.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5058. +Total: 3.298300 ms (FindLiveObjects: 0.378500 ms CreateObjectMapping: 0.227200 ms MarkObjects: 2.577600 ms DeleteObjects: 0.113500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004320 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.261 seconds +Domain Reload Profiling: + ReloadAssembly (1262ms) + BeginReloadAssembly (126ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1075ms) + LoadAssemblies (86ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (443ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (72ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.9 MB. +System memory in use after: 164.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5062. +Total: 3.838700 ms (FindLiveObjects: 0.388200 ms CreateObjectMapping: 0.269000 ms MarkObjects: 3.048200 ms DeleteObjects: 0.131900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 167.350781 seconds. + path: Assets/Graphics/BlackField.prefab + artifactKey: Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/BlackField.prefab using Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c3243665b8ff8c5eb2d7d917481b2c1') in 0.063087 seconds +======================================================================== +Received Import Request. + Time since last request: 2.977300 seconds. + path: Assets/Graphics/WhiteField.prefab + artifactKey: Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/WhiteField.prefab using Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a36d4011cb14846e4a69f20b55e48afe') in 0.011916 seconds +======================================================================== +Received Import Request. + Time since last request: 3.270197 seconds. + path: Assets/Graphics/WhiteField.prefab + artifactKey: Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/WhiteField.prefab using Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c5d2961d82f43b9675fbc8217cdb3e4b') in 0.010705 seconds +======================================================================== +Received Import Request. + Time since last request: 9.454021 seconds. + path: Assets/Graphics/BlackField.prefab + artifactKey: Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/BlackField.prefab using Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29515a5d534c7ba92802ef1859f0f6be') in 0.009261 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004241 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.232 seconds +Domain Reload Profiling: + ReloadAssembly (1232ms) + BeginReloadAssembly (129ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1037ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (407ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (343ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.9 MB. +System memory in use after: 164.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5067. +Total: 3.501100 ms (FindLiveObjects: 0.370600 ms CreateObjectMapping: 0.199700 ms MarkObjects: 2.812700 ms DeleteObjects: 0.116900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004515 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.330 seconds +Domain Reload Profiling: + ReloadAssembly (1330ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1137ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (411ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (432ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (338ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (40ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.9 MB. +System memory in use after: 164.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5071. +Total: 4.259100 ms (FindLiveObjects: 0.663300 ms CreateObjectMapping: 0.313200 ms MarkObjects: 3.176700 ms DeleteObjects: 0.104500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004282 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.204 seconds +Domain Reload Profiling: + ReloadAssembly (1204ms) + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1011ms) + LoadAssemblies (99ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (391ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (335ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (248ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.9 MB. +System memory in use after: 164.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5075. +Total: 7.068700 ms (FindLiveObjects: 0.391700 ms CreateObjectMapping: 0.204900 ms MarkObjects: 6.362100 ms DeleteObjects: 0.108500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005327 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.257 seconds +Domain Reload Profiling: + ReloadAssembly (1257ms) + BeginReloadAssembly (191ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (976ms) + LoadAssemblies (136ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (386ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (321ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.9 MB. +System memory in use after: 164.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5079. +Total: 3.993600 ms (FindLiveObjects: 0.573700 ms CreateObjectMapping: 0.329200 ms MarkObjects: 2.991800 ms DeleteObjects: 0.097700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003947 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.169 seconds +Domain Reload Profiling: + ReloadAssembly (1169ms) + BeginReloadAssembly (134ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (969ms) + LoadAssemblies (87ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (360ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (338ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (248ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (32ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 163.9 MB. +System memory in use after: 164.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5083. +Total: 3.562100 ms (FindLiveObjects: 0.359600 ms CreateObjectMapping: 0.186200 ms MarkObjects: 2.863800 ms DeleteObjects: 0.151300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004345 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.201 seconds +Domain Reload Profiling: + ReloadAssembly (1201ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1011ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (386ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (348ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (261ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.0 MB. +System memory in use after: 164.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5087. +Total: 5.540700 ms (FindLiveObjects: 0.673800 ms CreateObjectMapping: 0.625200 ms MarkObjects: 4.130600 ms DeleteObjects: 0.109700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005531 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.201 seconds +Domain Reload Profiling: + ReloadAssembly (1201ms) + BeginReloadAssembly (140ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (989ms) + LoadAssemblies (99ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (376ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (338ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (27ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.0 MB. +System memory in use after: 164.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5091. +Total: 4.215300 ms (FindLiveObjects: 0.427500 ms CreateObjectMapping: 0.230300 ms MarkObjects: 3.410900 ms DeleteObjects: 0.145200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 192.687078 seconds. + path: Assets/Graphics/BlackField.prefab + artifactKey: Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/BlackField.prefab using Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e36062782efd630d2311b91ab085fa66') in 0.054450 seconds +======================================================================== +Received Import Request. + Time since last request: 5.233293 seconds. + path: Assets/Graphics/WhiteField.prefab + artifactKey: Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/WhiteField.prefab using Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '188a47a57191238eb673537aae5d9f90') in 0.012934 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005366 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.370 seconds +Domain Reload Profiling: + ReloadAssembly (1370ms) + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (12ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1124ms) + LoadAssemblies (147ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (453ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (377ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (276ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.0 MB. +System memory in use after: 164.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5096. +Total: 4.829100 ms (FindLiveObjects: 0.487400 ms CreateObjectMapping: 0.251100 ms MarkObjects: 3.959300 ms DeleteObjects: 0.129700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004115 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.80 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.156 seconds +Domain Reload Profiling: + ReloadAssembly (1156ms) + BeginReloadAssembly (139ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (17ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (949ms) + LoadAssemblies (89ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (361ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (325ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (234ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.0 MB. +System memory in use after: 164.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5100. +Total: 4.088500 ms (FindLiveObjects: 0.509800 ms CreateObjectMapping: 0.256900 ms MarkObjects: 3.184000 ms DeleteObjects: 0.136700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014955 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.96 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.347 seconds +Domain Reload Profiling: + ReloadAssembly (1347ms) + BeginReloadAssembly (135ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (19ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1151ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (506ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (369ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (89ms) + ProcessInitializeOnLoadAttributes (258ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.0 MB. +System memory in use after: 164.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5104. +Total: 4.272000 ms (FindLiveObjects: 0.470500 ms CreateObjectMapping: 0.195600 ms MarkObjects: 3.458900 ms DeleteObjects: 0.146000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004162 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.225 seconds +Domain Reload Profiling: + ReloadAssembly (1225ms) + BeginReloadAssembly (139ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1021ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (421ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (333ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (246ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.90 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.0 MB. +System memory in use after: 164.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5108. +Total: 5.147300 ms (FindLiveObjects: 0.425900 ms CreateObjectMapping: 0.223000 ms MarkObjects: 4.392900 ms DeleteObjects: 0.104000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005082 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.253 seconds +Domain Reload Profiling: + ReloadAssembly (1254ms) + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (17ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1049ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (432ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (328ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.80 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.1 MB. +System memory in use after: 164.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5112. +Total: 4.095500 ms (FindLiveObjects: 0.393100 ms CreateObjectMapping: 0.227000 ms MarkObjects: 3.355500 ms DeleteObjects: 0.118600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004759 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.315 seconds +Domain Reload Profiling: + ReloadAssembly (1316ms) + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1132ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (383ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (459ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (354ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (26ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.94 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.1 MB. +System memory in use after: 164.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5116. +Total: 4.126200 ms (FindLiveObjects: 0.623500 ms CreateObjectMapping: 0.329100 ms MarkObjects: 3.027700 ms DeleteObjects: 0.144700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004659 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.318 seconds +Domain Reload Profiling: + ReloadAssembly (1319ms) + BeginReloadAssembly (115ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (17ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1137ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (456ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (360ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (266ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.1 MB. +System memory in use after: 164.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5120. +Total: 3.097600 ms (FindLiveObjects: 0.377600 ms CreateObjectMapping: 0.205600 ms MarkObjects: 2.415400 ms DeleteObjects: 0.097800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004521 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.202 seconds +Domain Reload Profiling: + ReloadAssembly (1202ms) + BeginReloadAssembly (132ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1007ms) + LoadAssemblies (89ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (383ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (71ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.1 MB. +System memory in use after: 164.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5124. +Total: 4.696700 ms (FindLiveObjects: 0.849900 ms CreateObjectMapping: 0.336400 ms MarkObjects: 3.400600 ms DeleteObjects: 0.108500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005897 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.313 seconds +Domain Reload Profiling: + ReloadAssembly (1314ms) + BeginReloadAssembly (120ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1124ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (481ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (55ms) + SetupLoadedEditorAssemblies (357ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (266ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.83 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.1 MB. +System memory in use after: 164.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5128. +Total: 3.732700 ms (FindLiveObjects: 0.393400 ms CreateObjectMapping: 0.212000 ms MarkObjects: 2.981000 ms DeleteObjects: 0.145100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004021 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.225 seconds +Domain Reload Profiling: + ReloadAssembly (1226ms) + BeginReloadAssembly (155ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (19ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1007ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (403ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (318ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (233ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.1 MB. +System memory in use after: 164.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5132. +Total: 3.616700 ms (FindLiveObjects: 0.363400 ms CreateObjectMapping: 0.180700 ms MarkObjects: 2.933900 ms DeleteObjects: 0.137600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004195 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.66 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.196 seconds +Domain Reload Profiling: + ReloadAssembly (1196ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1007ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (386ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (350ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (260ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.1 MB. +System memory in use after: 164.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5136. +Total: 6.833600 ms (FindLiveObjects: 0.463300 ms CreateObjectMapping: 0.317300 ms MarkObjects: 5.932200 ms DeleteObjects: 0.119400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004561 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.157 seconds +Domain Reload Profiling: + ReloadAssembly (1157ms) + BeginReloadAssembly (129ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (965ms) + LoadAssemblies (88ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (380ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (326ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.1 MB. +System memory in use after: 164.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5140. +Total: 3.525100 ms (FindLiveObjects: 0.399200 ms CreateObjectMapping: 0.177100 ms MarkObjects: 2.809400 ms DeleteObjects: 0.138500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004460 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.205 seconds +Domain Reload Profiling: + ReloadAssembly (1206ms) + BeginReloadAssembly (131ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1014ms) + LoadAssemblies (89ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (385ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (357ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (265ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.9 MB. +System memory in use after: 165.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5144. +Total: 3.411900 ms (FindLiveObjects: 0.383100 ms CreateObjectMapping: 0.198600 ms MarkObjects: 2.693000 ms DeleteObjects: 0.136200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005685 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.244 seconds +Domain Reload Profiling: + ReloadAssembly (1244ms) + BeginReloadAssembly (134ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1046ms) + LoadAssemblies (114ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (392ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (368ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (279ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (28ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.9 MB. +System memory in use after: 165.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5148. +Total: 4.291400 ms (FindLiveObjects: 0.426500 ms CreateObjectMapping: 0.209000 ms MarkObjects: 3.470100 ms DeleteObjects: 0.184400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004336 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.183 seconds +Domain Reload Profiling: + ReloadAssembly (1183ms) + BeginReloadAssembly (139ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (983ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (383ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (331ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.03 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.9 MB. +System memory in use after: 165.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5152. +Total: 8.488800 ms (FindLiveObjects: 0.600000 ms CreateObjectMapping: 0.560500 ms MarkObjects: 7.220700 ms DeleteObjects: 0.106300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004535 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.96 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.284 seconds +Domain Reload Profiling: + ReloadAssembly (1284ms) + BeginReloadAssembly (115ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1109ms) + LoadAssemblies (85ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (437ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (57ms) + SetupLoadedEditorAssemblies (356ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (259ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.9 MB. +System memory in use after: 165.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5156. +Total: 19.576100 ms (FindLiveObjects: 0.392100 ms CreateObjectMapping: 0.244700 ms MarkObjects: 18.816200 ms DeleteObjects: 0.121600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004295 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.89 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.192 seconds +Domain Reload Profiling: + ReloadAssembly (1192ms) + BeginReloadAssembly (135ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (994ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (391ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.91 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.9 MB. +System memory in use after: 165.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5160. +Total: 7.239200 ms (FindLiveObjects: 1.524600 ms CreateObjectMapping: 2.088800 ms MarkObjects: 3.513900 ms DeleteObjects: 0.110300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005882 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.277 seconds +Domain Reload Profiling: + ReloadAssembly (1278ms) + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (17ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1076ms) + LoadAssemblies (88ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (488ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (323ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (236ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 164.9 MB. +System memory in use after: 165.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5164. +Total: 3.529300 ms (FindLiveObjects: 0.404500 ms CreateObjectMapping: 0.209400 ms MarkObjects: 2.797000 ms DeleteObjects: 0.117100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004953 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.814 seconds +Domain Reload Profiling: + ReloadAssembly (1815ms) + BeginReloadAssembly (221ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1523ms) + LoadAssemblies (208ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (535ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (57ms) + SetupLoadedEditorAssemblies (632ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (528ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (39ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.0 MB. +System memory in use after: 165.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5168. +Total: 4.378900 ms (FindLiveObjects: 0.381600 ms CreateObjectMapping: 0.193700 ms MarkObjects: 3.655300 ms DeleteObjects: 0.147100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004731 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.179 seconds +Domain Reload Profiling: + ReloadAssembly (1179ms) + BeginReloadAssembly (131ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (17ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (984ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (391ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (325ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.0 MB. +System memory in use after: 165.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5172. +Total: 7.106800 ms (FindLiveObjects: 2.756400 ms CreateObjectMapping: 0.686700 ms MarkObjects: 3.552500 ms DeleteObjects: 0.109900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004756 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.126 seconds +Domain Reload Profiling: + ReloadAssembly (1126ms) + BeginReloadAssembly (118ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (948ms) + LoadAssemblies (86ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (363ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (325ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.0 MB. +System memory in use after: 165.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5176. +Total: 3.655300 ms (FindLiveObjects: 0.403600 ms CreateObjectMapping: 0.201200 ms MarkObjects: 2.953200 ms DeleteObjects: 0.096000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004768 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.270 seconds +Domain Reload Profiling: + ReloadAssembly (1270ms) + BeginReloadAssembly (135ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1036ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (365ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (411ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (325ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.0 MB. +System memory in use after: 165.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5180. +Total: 3.828600 ms (FindLiveObjects: 0.379100 ms CreateObjectMapping: 0.190100 ms MarkObjects: 3.118800 ms DeleteObjects: 0.139500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004937 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.461 seconds +Domain Reload Profiling: + ReloadAssembly (1462ms) + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1270ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (666ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (338ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (251ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.0 MB. +System memory in use after: 165.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5184. +Total: 3.595300 ms (FindLiveObjects: 0.376800 ms CreateObjectMapping: 0.180700 ms MarkObjects: 2.914300 ms DeleteObjects: 0.122400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004248 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.162 seconds +Domain Reload Profiling: + ReloadAssembly (1162ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (976ms) + LoadAssemblies (88ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (377ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.0 MB. +System memory in use after: 165.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5188. +Total: 4.558500 ms (FindLiveObjects: 0.480100 ms CreateObjectMapping: 0.266500 ms MarkObjects: 3.670700 ms DeleteObjects: 0.139900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005784 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.172 seconds +Domain Reload Profiling: + ReloadAssembly (1172ms) + BeginReloadAssembly (139ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (965ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (369ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (328ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.1 MB. +System memory in use after: 165.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5192. +Total: 3.997400 ms (FindLiveObjects: 0.369900 ms CreateObjectMapping: 0.445200 ms MarkObjects: 3.037700 ms DeleteObjects: 0.143300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004306 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.185 seconds +Domain Reload Profiling: + ReloadAssembly (1186ms) + BeginReloadAssembly (119ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1000ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (399ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (329ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.1 MB. +System memory in use after: 165.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5196. +Total: 3.869200 ms (FindLiveObjects: 0.379000 ms CreateObjectMapping: 0.189400 ms MarkObjects: 3.153500 ms DeleteObjects: 0.146000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004039 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.135 seconds +Domain Reload Profiling: + ReloadAssembly (1135ms) + BeginReloadAssembly (118ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (957ms) + LoadAssemblies (87ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (370ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (324ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.1 MB. +System memory in use after: 165.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5200. +Total: 4.096600 ms (FindLiveObjects: 0.398600 ms CreateObjectMapping: 0.232700 ms MarkObjects: 3.325900 ms DeleteObjects: 0.138400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004298 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.547 seconds +Domain Reload Profiling: + ReloadAssembly (1547ms) + BeginReloadAssembly (255ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (52ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (107ms) + EndReloadAssembly (1229ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (457ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (93ms) + SetupLoadedEditorAssemblies (342ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.1 MB. +System memory in use after: 165.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5204. +Total: 4.642500 ms (FindLiveObjects: 0.480300 ms CreateObjectMapping: 0.577800 ms MarkObjects: 3.479900 ms DeleteObjects: 0.103200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004188 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.180 seconds +Domain Reload Profiling: + ReloadAssembly (1180ms) + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (997ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (356ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (377ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (292ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.1 MB. +System memory in use after: 165.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5208. +Total: 3.540400 ms (FindLiveObjects: 0.416000 ms CreateObjectMapping: 0.217300 ms MarkObjects: 2.741000 ms DeleteObjects: 0.165200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011522 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.80 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.364 seconds +Domain Reload Profiling: + ReloadAssembly (1364ms) + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (33ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1149ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (473ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (373ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (287ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.1 MB. +System memory in use after: 165.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5212. +Total: 4.105400 ms (FindLiveObjects: 0.420300 ms CreateObjectMapping: 0.283400 ms MarkObjects: 3.292500 ms DeleteObjects: 0.107500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004705 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.238 seconds +Domain Reload Profiling: + ReloadAssembly (1239ms) + BeginReloadAssembly (129ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1042ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (383ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (366ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (280ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (32ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.2 MB. +System memory in use after: 165.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5216. +Total: 3.434600 ms (FindLiveObjects: 0.402500 ms CreateObjectMapping: 0.213800 ms MarkObjects: 2.713700 ms DeleteObjects: 0.103300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004171 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.189 seconds +Domain Reload Profiling: + ReloadAssembly (1190ms) + BeginReloadAssembly (133ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (990ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (383ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (339ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.2 MB. +System memory in use after: 165.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5220. +Total: 5.532000 ms (FindLiveObjects: 0.431700 ms CreateObjectMapping: 0.229000 ms MarkObjects: 4.754900 ms DeleteObjects: 0.114800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005485 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.339 seconds +Domain Reload Profiling: + ReloadAssembly (1339ms) + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1111ms) + LoadAssemblies (111ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (484ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (324ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (26ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.2 MB. +System memory in use after: 165.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5224. +Total: 4.189400 ms (FindLiveObjects: 0.435800 ms CreateObjectMapping: 0.189900 ms MarkObjects: 3.429200 ms DeleteObjects: 0.133000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004182 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.159 seconds +Domain Reload Profiling: + ReloadAssembly (1159ms) + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (973ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (375ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (327ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.09 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.2 MB. +System memory in use after: 165.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5228. +Total: 4.205200 ms (FindLiveObjects: 0.492900 ms CreateObjectMapping: 0.311500 ms MarkObjects: 3.245900 ms DeleteObjects: 0.153200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004353 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.297 seconds +Domain Reload Profiling: + ReloadAssembly (1298ms) + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1032ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (433ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (323ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.2 MB. +System memory in use after: 165.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5232. +Total: 3.606400 ms (FindLiveObjects: 0.384400 ms CreateObjectMapping: 0.184600 ms MarkObjects: 2.898200 ms DeleteObjects: 0.138200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005888 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.86 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.332 seconds +Domain Reload Profiling: + ReloadAssembly (1333ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (4ms) + DisableScriptedObjects (39ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1092ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (412ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (355ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (266ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.2 MB. +System memory in use after: 165.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5236. +Total: 3.404200 ms (FindLiveObjects: 0.405600 ms CreateObjectMapping: 0.211500 ms MarkObjects: 2.683100 ms DeleteObjects: 0.102800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004371 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.253 seconds +Domain Reload Profiling: + ReloadAssembly (1253ms) + BeginReloadAssembly (131ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1052ms) + LoadAssemblies (88ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (413ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (372ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (287ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.89 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.2 MB. +System memory in use after: 165.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5240. +Total: 4.211600 ms (FindLiveObjects: 0.385300 ms CreateObjectMapping: 0.279900 ms MarkObjects: 3.421800 ms DeleteObjects: 0.123100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004356 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.89 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.126 seconds +Domain Reload Profiling: + ReloadAssembly (1126ms) + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (949ms) + LoadAssemblies (87ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (364ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (321ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.2 MB. +System memory in use after: 165.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5244. +Total: 4.089400 ms (FindLiveObjects: 0.379600 ms CreateObjectMapping: 0.191300 ms MarkObjects: 3.373700 ms DeleteObjects: 0.143600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1102.280828 seconds. + path: Assets/Scripts/Rook.cs + artifactKey: Guid(24c94912610a2aa4abf28d96d538c99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Rook.cs using Guid(24c94912610a2aa4abf28d96d538c99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eb5ad7115c221909c86edc893841300b') in 0.022395 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004041 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.182 seconds +Domain Reload Profiling: + ReloadAssembly (1182ms) + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1004ms) + LoadAssemblies (86ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (391ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (342ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3666 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.3 MB. +System memory in use after: 165.4 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5249. +Total: 3.365700 ms (FindLiveObjects: 0.400100 ms CreateObjectMapping: 0.215600 ms MarkObjects: 2.646600 ms DeleteObjects: 0.102200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004189 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.190 seconds +Domain Reload Profiling: + ReloadAssembly (1191ms) + BeginReloadAssembly (134ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (990ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (381ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (58ms) + SetupLoadedEditorAssemblies (324ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.2 MB. +System memory in use after: 165.4 MB. + +Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 5252. +Total: 4.049500 ms (FindLiveObjects: 0.421100 ms CreateObjectMapping: 0.238800 ms MarkObjects: 3.188000 ms DeleteObjects: 0.183500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 31.396185 seconds. + path: Assets/Scripts/Characters.cs + artifactKey: Guid(c5754ae4dda588143b6a092d2926937d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Characters.cs using Guid(c5754ae4dda588143b6a092d2926937d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '16e3893571d8bbefdf1289745ac15237') in 0.017209 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005270 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.158 seconds +Domain Reload Profiling: + ReloadAssembly (1158ms) + BeginReloadAssembly (126ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (968ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (374ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (325ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3666 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.3 MB. +System memory in use after: 165.4 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5257. +Total: 3.687700 ms (FindLiveObjects: 0.535100 ms CreateObjectMapping: 0.268100 ms MarkObjects: 2.777500 ms DeleteObjects: 0.105800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004369 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.87 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.240 seconds +Domain Reload Profiling: + ReloadAssembly (1240ms) + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1035ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (427ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (328ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3666 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.3 MB. +System memory in use after: 165.4 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5261. +Total: 5.475200 ms (FindLiveObjects: 0.454500 ms CreateObjectMapping: 0.611100 ms MarkObjects: 4.284500 ms DeleteObjects: 0.123600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005037 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.83 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.205 seconds +Domain Reload Profiling: + ReloadAssembly (1206ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1015ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (375ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (352ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3666 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.3 MB. +System memory in use after: 165.4 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5265. +Total: 4.743500 ms (FindLiveObjects: 0.412900 ms CreateObjectMapping: 0.195600 ms MarkObjects: 3.910500 ms DeleteObjects: 0.222900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004378 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 1.01 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.320 seconds +Domain Reload Profiling: + ReloadAssembly (1320ms) + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1132ms) + LoadAssemblies (107ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (447ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (336ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (246ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (32ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3666 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.3 MB. +System memory in use after: 165.4 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5269. +Total: 3.339200 ms (FindLiveObjects: 0.396800 ms CreateObjectMapping: 0.199200 ms MarkObjects: 2.615700 ms DeleteObjects: 0.126200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004307 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.183 seconds +Domain Reload Profiling: + ReloadAssembly (1183ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (990ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (385ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (325ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.85 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.3 MB. +System memory in use after: 165.4 MB. + +Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 5272. +Total: 4.460900 ms (FindLiveObjects: 0.405100 ms CreateObjectMapping: 0.202900 ms MarkObjects: 3.733500 ms DeleteObjects: 0.118300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005683 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.345 seconds +Domain Reload Profiling: + ReloadAssembly (1345ms) + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1142ms) + LoadAssemblies (150ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (419ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (345ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (254ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.3 MB. +System memory in use after: 165.4 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5276. +Total: 3.854000 ms (FindLiveObjects: 0.391000 ms CreateObjectMapping: 0.311400 ms MarkObjects: 3.049400 ms DeleteObjects: 0.100500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004593 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.528 seconds +Domain Reload Profiling: + ReloadAssembly (1528ms) + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (18ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1273ms) + LoadAssemblies (145ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (420ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (514ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (404ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (28ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3665 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.3 MB. +System memory in use after: 165.4 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5280. +Total: 3.924800 ms (FindLiveObjects: 0.382500 ms CreateObjectMapping: 0.181600 ms MarkObjects: 3.215600 ms DeleteObjects: 0.143400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 180.463946 seconds. + path: Assets/Scripts/Character.cs + artifactKey: Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Character.cs using Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5030a6167347696a569aaafe72bdf0dd') in 0.016786 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004822 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.208 seconds +Domain Reload Profiling: + ReloadAssembly (1209ms) + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1006ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (394ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3666 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.3 MB. +System memory in use after: 165.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5285. +Total: 3.739600 ms (FindLiveObjects: 0.462900 ms CreateObjectMapping: 0.231200 ms MarkObjects: 2.939100 ms DeleteObjects: 0.104900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 11.240490 seconds. + path: Assets/Scripts/Character.cs + artifactKey: Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Character.cs using Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0564471e3063162e80df3f35897ffd25') in 0.008763 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004166 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.358 seconds +Domain Reload Profiling: + ReloadAssembly (1358ms) + BeginReloadAssembly (134ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1158ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (409ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (75ms) + SetupLoadedEditorAssemblies (399ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (301ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (30ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.83 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3666 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.4 MB. +System memory in use after: 165.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5289. +Total: 21.659900 ms (FindLiveObjects: 6.916600 ms CreateObjectMapping: 0.720700 ms MarkObjects: 13.912600 ms DeleteObjects: 0.108400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 5.882889 seconds. + path: Assets/Scripts/Character.cs + artifactKey: Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Character.cs using Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7bc95a5eee74453d8efe0c086633400c') in 0.009090 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005222 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.222 seconds +Domain Reload Profiling: + ReloadAssembly (1222ms) + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1020ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (389ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (343ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (251ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.94 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3666 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.4 MB. +System memory in use after: 165.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5293. +Total: 4.366800 ms (FindLiveObjects: 0.393800 ms CreateObjectMapping: 0.200400 ms MarkObjects: 3.609200 ms DeleteObjects: 0.162200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 26.785339 seconds. + path: Assets/Scripts/Character.cs + artifactKey: Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Character.cs using Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cf9f163111956bb1d0a165538f9cf64e') in 0.007084 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004217 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.194 seconds +Domain Reload Profiling: + ReloadAssembly (1195ms) + BeginReloadAssembly (130ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (996ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (372ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (352ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (263ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3666 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.4 MB. +System memory in use after: 165.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5297. +Total: 4.388600 ms (FindLiveObjects: 0.516500 ms CreateObjectMapping: 0.206000 ms MarkObjects: 3.537000 ms DeleteObjects: 0.127900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004335 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.244 seconds +Domain Reload Profiling: + ReloadAssembly (1245ms) + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1036ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (413ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (340ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3666 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.4 MB. +System memory in use after: 165.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5301. +Total: 4.308300 ms (FindLiveObjects: 0.528700 ms CreateObjectMapping: 0.420900 ms MarkObjects: 3.213100 ms DeleteObjects: 0.144200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 15.007146 seconds. + path: Assets/Scripts/Character.cs + artifactKey: Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Character.cs using Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '86c1484f55b26dfc408ca4adb9148175') in 0.007119 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004647 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.399 seconds +Domain Reload Profiling: + ReloadAssembly (1399ms) + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1157ms) + LoadAssemblies (122ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (444ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (75ms) + SetupLoadedEditorAssemblies (381ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (294ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3666 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.4 MB. +System memory in use after: 165.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5305. +Total: 4.349300 ms (FindLiveObjects: 0.448300 ms CreateObjectMapping: 0.330600 ms MarkObjects: 3.424000 ms DeleteObjects: 0.145100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005987 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.155 seconds +Domain Reload Profiling: + ReloadAssembly (1155ms) + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (17ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (948ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (363ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (314ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (231ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3666 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.5 MB. +System memory in use after: 165.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5309. +Total: 3.834300 ms (FindLiveObjects: 0.451400 ms CreateObjectMapping: 0.321400 ms MarkObjects: 2.920300 ms DeleteObjects: 0.140000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004573 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.458 seconds +Domain Reload Profiling: + ReloadAssembly (1458ms) + BeginReloadAssembly (273ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (17ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (122ms) + EndReloadAssembly (1067ms) + LoadAssemblies (134ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (398ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (372ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (286ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (26ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3666 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.5 MB. +System memory in use after: 165.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5313. +Total: 4.236000 ms (FindLiveObjects: 0.449400 ms CreateObjectMapping: 0.238800 ms MarkObjects: 3.407700 ms DeleteObjects: 0.138800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004096 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.80 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.194 seconds +Domain Reload Profiling: + ReloadAssembly (1194ms) + BeginReloadAssembly (133ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (17ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (998ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (373ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (345ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (252ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3666 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.5 MB. +System memory in use after: 165.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5317. +Total: 3.515300 ms (FindLiveObjects: 0.455500 ms CreateObjectMapping: 0.256300 ms MarkObjects: 2.672500 ms DeleteObjects: 0.129900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004264 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.123 seconds +Domain Reload Profiling: + ReloadAssembly (1123ms) + BeginReloadAssembly (119ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (944ms) + LoadAssemblies (86ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (362ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (321ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (234ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3666 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.5 MB. +System memory in use after: 165.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5321. +Total: 3.868100 ms (FindLiveObjects: 0.417300 ms CreateObjectMapping: 0.196400 ms MarkObjects: 3.109300 ms DeleteObjects: 0.144000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 702.073007 seconds. + path: Assets/Scripts/CharacterData.cs + artifactKey: Guid(82078bc56df7bd948ae23d6db04fd436) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/CharacterData.cs using Guid(82078bc56df7bd948ae23d6db04fd436) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0f936105836b69d28b01d74cbf1f5393') in 0.017024 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004032 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.84 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.201 seconds +Domain Reload Profiling: + ReloadAssembly (1202ms) + BeginReloadAssembly (127ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1007ms) + LoadAssemblies (88ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (386ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (54ms) + SetupLoadedEditorAssemblies (326ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.6 MB. +System memory in use after: 165.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5326. +Total: 4.079100 ms (FindLiveObjects: 0.406500 ms CreateObjectMapping: 0.206800 ms MarkObjects: 3.303100 ms DeleteObjects: 0.161500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 16.901885 seconds. + path: Assets/Scripts/CharacterData.cs + artifactKey: Guid(82078bc56df7bd948ae23d6db04fd436) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/CharacterData.cs using Guid(82078bc56df7bd948ae23d6db04fd436) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b5a788b4a8fb49b7b91e8187981e1b54') in 0.008626 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005429 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.286 seconds +Domain Reload Profiling: + ReloadAssembly (1287ms) + BeginReloadAssembly (263ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (29ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (947ms) + LoadAssemblies (107ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (366ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (317ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (233ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.6 MB. +System memory in use after: 165.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5330. +Total: 3.761300 ms (FindLiveObjects: 0.504500 ms CreateObjectMapping: 0.188500 ms MarkObjects: 2.926200 ms DeleteObjects: 0.140800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 57.852376 seconds. + path: Assets/Scripts/CharacterData.cs + artifactKey: Guid(82078bc56df7bd948ae23d6db04fd436) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/CharacterData.cs using Guid(82078bc56df7bd948ae23d6db04fd436) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7ecdf6a5ac510efe8674018ab5e2c198') in 0.011569 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004569 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.452 seconds +Domain Reload Profiling: + ReloadAssembly (1452ms) + BeginReloadAssembly (143ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1232ms) + LoadAssemblies (180ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (447ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (108ms) + SetupLoadedEditorAssemblies (320ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (233ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.6 MB. +System memory in use after: 165.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5334. +Total: 4.306800 ms (FindLiveObjects: 0.610300 ms CreateObjectMapping: 0.227700 ms MarkObjects: 3.339300 ms DeleteObjects: 0.128500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 74.233473 seconds. + path: Assets/Scripts/CharacterData.cs + artifactKey: Guid(82078bc56df7bd948ae23d6db04fd436) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/CharacterData.cs using Guid(82078bc56df7bd948ae23d6db04fd436) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3e5af1db4ef22d058126dfc0807b40b0') in 0.012175 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004636 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.133 seconds +Domain Reload Profiling: + ReloadAssembly (1134ms) + BeginReloadAssembly (125ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (946ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (365ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (317ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (234ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.6 MB. +System memory in use after: 165.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5338. +Total: 3.986300 ms (FindLiveObjects: 0.390800 ms CreateObjectMapping: 0.286600 ms MarkObjects: 3.158600 ms DeleteObjects: 0.149100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 130.297663 seconds. + path: Assets/Scripts/CharacterData.cs + artifactKey: Guid(82078bc56df7bd948ae23d6db04fd436) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/CharacterData.cs using Guid(82078bc56df7bd948ae23d6db04fd436) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'baae8a1c6bfd8ad05daa539d0bdad9a6') in 0.009990 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004464 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.167 seconds +Domain Reload Profiling: + ReloadAssembly (1167ms) + BeginReloadAssembly (140ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (20ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (966ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (372ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (331ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.7 MB. +System memory in use after: 165.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5342. +Total: 3.591800 ms (FindLiveObjects: 0.416900 ms CreateObjectMapping: 0.196200 ms MarkObjects: 2.805000 ms DeleteObjects: 0.172600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004403 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.180 seconds +Domain Reload Profiling: + ReloadAssembly (1181ms) + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (996ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (398ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (321ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.7 MB. +System memory in use after: 165.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5346. +Total: 3.679500 ms (FindLiveObjects: 0.397700 ms CreateObjectMapping: 0.195900 ms MarkObjects: 2.938900 ms DeleteObjects: 0.146000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004648 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.392 seconds +Domain Reload Profiling: + ReloadAssembly (1393ms) + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1190ms) + LoadAssemblies (99ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (509ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (369ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (273ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (50ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.89 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.7 MB. +System memory in use after: 165.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5350. +Total: 3.660200 ms (FindLiveObjects: 0.423700 ms CreateObjectMapping: 0.210000 ms MarkObjects: 2.920100 ms DeleteObjects: 0.104900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004829 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.230 seconds +Domain Reload Profiling: + ReloadAssembly (1231ms) + BeginReloadAssembly (140ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1028ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (391ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (356ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (272ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (28ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.7 MB. +System memory in use after: 165.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5354. +Total: 3.387400 ms (FindLiveObjects: 0.391700 ms CreateObjectMapping: 0.181400 ms MarkObjects: 2.667800 ms DeleteObjects: 0.145400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004721 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.145 seconds +Domain Reload Profiling: + ReloadAssembly (1145ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (953ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (372ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (316ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (232ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.7 MB. +System memory in use after: 165.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5358. +Total: 4.052300 ms (FindLiveObjects: 0.394200 ms CreateObjectMapping: 0.192000 ms MarkObjects: 3.349000 ms DeleteObjects: 0.115500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.007925 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.81 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.148 seconds +Domain Reload Profiling: + ReloadAssembly (1149ms) + BeginReloadAssembly (125ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (960ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (374ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (318ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (232ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.96 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.7 MB. +System memory in use after: 165.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5362. +Total: 5.290400 ms (FindLiveObjects: 0.520400 ms CreateObjectMapping: 0.268300 ms MarkObjects: 4.361100 ms DeleteObjects: 0.138800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004235 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 1.38 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.386 seconds +Domain Reload Profiling: + ReloadAssembly (1386ms) + BeginReloadAssembly (154ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (18ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1171ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (423ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (410ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (103ms) + ProcessInitializeOnLoadAttributes (285ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.02 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.7 MB. +System memory in use after: 165.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5366. +Total: 3.871100 ms (FindLiveObjects: 0.429400 ms CreateObjectMapping: 0.214600 ms MarkObjects: 3.114400 ms DeleteObjects: 0.111200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004039 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.269 seconds +Domain Reload Profiling: + ReloadAssembly (1270ms) + BeginReloadAssembly (142ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1062ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (431ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (55ms) + SetupLoadedEditorAssemblies (342ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (30ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.7 MB. +System memory in use after: 165.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5370. +Total: 3.390900 ms (FindLiveObjects: 0.417000 ms CreateObjectMapping: 0.191000 ms MarkObjects: 2.664500 ms DeleteObjects: 0.117400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004441 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.244 seconds +Domain Reload Profiling: + ReloadAssembly (1245ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1051ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (396ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (332ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.7 MB. +System memory in use after: 165.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5374. +Total: 3.230200 ms (FindLiveObjects: 0.409400 ms CreateObjectMapping: 0.207400 ms MarkObjects: 2.491600 ms DeleteObjects: 0.120500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005193 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.465 seconds +Domain Reload Profiling: + ReloadAssembly (1465ms) + BeginReloadAssembly (223ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (110ms) + EndReloadAssembly (1039ms) + LoadAssemblies (145ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (373ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (364ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (275ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.7 MB. +System memory in use after: 165.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5378. +Total: 4.706700 ms (FindLiveObjects: 0.559400 ms CreateObjectMapping: 0.458600 ms MarkObjects: 3.559600 ms DeleteObjects: 0.127600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005492 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.226 seconds +Domain Reload Profiling: + ReloadAssembly (1227ms) + BeginReloadAssembly (130ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1033ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (385ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (363ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (275ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.8 MB. +System memory in use after: 165.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5382. +Total: 3.453200 ms (FindLiveObjects: 0.443500 ms CreateObjectMapping: 0.237100 ms MarkObjects: 2.664200 ms DeleteObjects: 0.107300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004384 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.186 seconds +Domain Reload Profiling: + ReloadAssembly (1186ms) + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (25ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (970ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (383ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (318ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (235ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 165.8 MB. +System memory in use after: 165.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5386. +Total: 3.920000 ms (FindLiveObjects: 0.394400 ms CreateObjectMapping: 0.183700 ms MarkObjects: 3.199000 ms DeleteObjects: 0.141800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005572 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.200 seconds +Domain Reload Profiling: + ReloadAssembly (1201ms) + BeginReloadAssembly (126ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1010ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (405ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (27ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 167.3 MB. +System memory in use after: 167.4 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5390. +Total: 3.868600 ms (FindLiveObjects: 0.399900 ms CreateObjectMapping: 0.186500 ms MarkObjects: 3.178700 ms DeleteObjects: 0.102100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004148 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.219 seconds +Domain Reload Profiling: + ReloadAssembly (1219ms) + BeginReloadAssembly (137ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1015ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (383ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (344ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (27ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.81 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 167.3 MB. +System memory in use after: 167.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5394. +Total: 3.843600 ms (FindLiveObjects: 0.481400 ms CreateObjectMapping: 0.288200 ms MarkObjects: 2.960900 ms DeleteObjects: 0.111700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005250 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.285 seconds +Domain Reload Profiling: + ReloadAssembly (1285ms) + BeginReloadAssembly (130ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (17ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1076ms) + LoadAssemblies (138ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (441ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (317ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (232ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 167.3 MB. +System memory in use after: 167.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5398. +Total: 4.229600 ms (FindLiveObjects: 0.510900 ms CreateObjectMapping: 0.294300 ms MarkObjects: 3.302500 ms DeleteObjects: 0.120700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004125 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.199 seconds +Domain Reload Profiling: + ReloadAssembly (1199ms) + BeginReloadAssembly (137ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (988ms) + LoadAssemblies (99ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (382ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (326ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 167.3 MB. +System memory in use after: 167.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5402. +Total: 4.573100 ms (FindLiveObjects: 0.523000 ms CreateObjectMapping: 0.230800 ms MarkObjects: 3.588100 ms DeleteObjects: 0.229800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005240 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.66 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.175 seconds +Domain Reload Profiling: + ReloadAssembly (1175ms) + BeginReloadAssembly (118ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (996ms) + LoadAssemblies (87ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (360ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (55ms) + SetupLoadedEditorAssemblies (354ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (269ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (28ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 167.4 MB. +System memory in use after: 167.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5406. +Total: 4.384400 ms (FindLiveObjects: 0.453600 ms CreateObjectMapping: 0.214000 ms MarkObjects: 3.607600 ms DeleteObjects: 0.108000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003937 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.205 seconds +Domain Reload Profiling: + ReloadAssembly (1205ms) + BeginReloadAssembly (134ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1003ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (418ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (317ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (235ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 167.4 MB. +System memory in use after: 167.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 5410. +Total: 3.522500 ms (FindLiveObjects: 0.520600 ms CreateObjectMapping: 0.213700 ms MarkObjects: 2.689900 ms DeleteObjects: 0.097200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005245 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.215 seconds +Domain Reload Profiling: + ReloadAssembly (1215ms) + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1026ms) + LoadAssemblies (89ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (416ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (328ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Callback registration failed. Increase kMaxCallback. + +Fatal Error! Callback registration failed. Increase kMaxCallback. + +Crash!!! +SymInit: Symbol-SearchPath: 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/Mono;.;F:\Unity Projects\Chess;F:\Unity Projects\Chess\Library\BurstCache\JIT;C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor;C:\WINDOWS;C:\WINDOWS\system32;SRV*C:\websymbols*http://msdl.microsoft.com/download/symbols;', symOptions: 534, UserName: 'braus' +OS-Version: 10.0.0 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\Unity.exe:Unity.exe (00007FF73FA10000), size: 81674240 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2021.1.13.12440 +C:\WINDOWS\SYSTEM32\ntdll.dll:ntdll.dll (00007FFC51440000), size: 2125824 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\System32\KERNEL32.DLL:KERNEL32.DLL (00007FFC50030000), size: 774144 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\System32\KERNELBASE.dll:KERNELBASE.dll (00007FFC4EEA0000), size: 3620864 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.132 +C:\WINDOWS\System32\CRYPT32.dll:CRYPT32.dll (00007FFC4EB50000), size: 1449984 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 +C:\WINDOWS\System32\ucrtbase.dll:ucrtbase.dll (00007FFC4ECC0000), size: 1118208 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\USER32.dll:USER32.dll (00007FFC50C80000), size: 1753088 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.37 +C:\WINDOWS\System32\win32u.dll:win32u.dll (00007FFC4F2A0000), size: 155648 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.194 +C:\WINDOWS\System32\GDI32.dll:GDI32.dll (00007FFC4FE20000), size: 167936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\gdi32full.dll:gdi32full.dll (00007FFC4EA30000), size: 1122304 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 +C:\WINDOWS\System32\msvcp_win.dll:msvcp_win.dll (00007FFC4E920000), size: 643072 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\ADVAPI32.dll:ADVAPI32.dll (00007FFC4FD70000), size: 704512 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.41 +C:\WINDOWS\System32\msvcrt.dll:msvcrt.dll (00007FFC4FF10000), size: 667648 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 7.0.22000.1 +C:\WINDOWS\System32\sechost.dll:sechost.dll (00007FFC4FE50000), size: 643072 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\RPCRT4.dll:RPCRT4.dll (00007FFC511A0000), size: 1183744 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\System32\SHELL32.dll:SHELL32.dll (00007FFC4F340000), size: 8032256 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\System32\SHLWAPI.dll:SHLWAPI.dll (00007FFC50150000), size: 380928 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\ole32.dll:ole32.dll (00007FFC50F50000), size: 1679360 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\libfbxsdk.dll:libfbxsdk.dll (00007FFBEB940000), size: 10215424 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2020.2.0.0 +C:\WINDOWS\System32\combase.dll:combase.dll (00007FFC50900000), size: 3637248 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 +C:\WINDOWS\System32\IMM32.dll:IMM32.dll (00007FFC513C0000), size: 200704 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\SETUPAPI.dll:SETUPAPI.dll (00007FFC50210000), size: 4632576 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.194 +C:\WINDOWS\System32\WS2_32.dll:WS2_32.dll (00007FFC4F2D0000), size: 454656 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\OLEAUT32.dll:OLEAUT32.dll (00007FFC50730000), size: 876544 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\WINTRUST.dll:WINTRUST.dll (00007FFC4E9C0000), size: 417792 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.194 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\optix.6.0.0.dll:optix.6.0.0.dll (00007FFC3E630000), size: 208896 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.0.0.0 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\umbraoptimizer64.dll:umbraoptimizer64.dll (00007FFC2ACF0000), size: 1306624 (result: 0), SymType: '-deferred-', PDB: '' +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\OpenImageDenoise.dll:OpenImageDenoise.dll (00007FFBD6B30000), size: 43806720 (result: 0), SymType: '-deferred-', PDB: '' +C:\WINDOWS\System32\WLDAP32.dll:WLDAP32.dll (00007FFC501B0000), size: 352256 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\Normaliz.dll:Normaliz.dll (00007FFC50720000), size: 32768 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\etccompress.dll:etccompress.dll (00007FFC10070000), size: 5066752 (result: 0), SymType: '-deferred-', PDB: '' +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\FreeImage.dll:FreeImage.dll (0000000180000000), size: 6414336 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.18.0.0 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\ispc_texcomp.dll:ispc_texcomp.dll (00007FFC27430000), size: 1744896 (result: 0), SymType: '-deferred-', PDB: '' +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\WinPixEventRuntime.dll:WinPixEventRuntime.dll (00007FFC4BC20000), size: 45056 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.0.1812.6001 +C:\WINDOWS\SYSTEM32\OPENGL32.dll:OPENGL32.dll (00007FFC27FE0000), size: 1052672 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.41 +C:\WINDOWS\SYSTEM32\GLU32.dll:GLU32.dll (00007FFC42880000), size: 184320 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.41 +C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL:IPHLPAPI.DLL (00007FFC4D680000), size: 184320 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\WINHTTP.dll:WINHTTP.dll (00007FFC49710000), size: 1097728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\WINMM.dll:WINMM.dll (00007FFC498E0000), size: 208896 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\bcrypt.dll:bcrypt.dll (00007FFC4E310000), size: 159744 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\HID.DLL:HID.DLL (00007FFC4D350000), size: 57344 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\RadeonImageFilters.dll:RadeonImageFilters.dll (00007FFC263C0000), size: 2535424 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.5.1.0 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\SketchUpAPI.dll:SketchUpAPI.dll (00007FFBED7F0000), size: 8978432 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 19.0.753.0 +C:\WINDOWS\SYSTEM32\VERSION.dll:VERSION.dll (00007FFC48520000), size: 40960 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\MSWSOCK.dll:MSWSOCK.dll (00007FFC4DF50000), size: 421888 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\VCRUNTIME140.dll:VCRUNTIME140.dll (00007FFC43AF0000), size: 110592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.29.30133.0 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\tbb.dll:tbb.dll (00007FFC30120000), size: 413696 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2017.0.2016.1004 +C:\WINDOWS\SYSTEM32\MSVCP140.dll:MSVCP140.dll (00007FFC43890000), size: 577536 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.29.30133.0 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\SketchUpCommonPreferences.dll:SketchUpCommonPreferences.dll (00007FFC2F9C0000), size: 483328 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 19.0.753.20342 +C:\WINDOWS\SYSTEM32\Secur32.dll:Secur32.dll (00007FFC40820000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\MSVCR120.dll:MSVCR120.dll (00007FFC262D0000), size: 978944 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 12.0.40649.5 +C:\WINDOWS\SYSTEM32\MSVCP120.dll:MSVCP120.dll (00007FFC28F70000), size: 679936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 12.0.40649.5 +C:\WINDOWS\SYSTEM32\VCRUNTIME140_1.dll:VCRUNTIME140_1.dll (00007FFC43200000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.29.30133.0 +C:\WINDOWS\SYSTEM32\dxcore.dll:dxcore.dll (00007FFC4C1B0000), size: 229376 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\SSPICLI.DLL:SSPICLI.DLL (00007FFC4DD60000), size: 262144 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\OpenRL.dll:OpenRL.dll (000001781F1D0000), size: 12779520 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.5.0.2907 +C:\WINDOWS\SYSTEM32\MSVCP100.dll:MSVCP100.dll (00000000510E0000), size: 622592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.40219.325 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\embree.dll:embree.dll (00007FFBD5B40000), size: 16711680 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2.14.0.0 +C:\WINDOWS\SYSTEM32\MSVCR100.dll:MSVCR100.dll (0000000051000000), size: 860160 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.40219.325 +C:\WINDOWS\SYSTEM32\cfgmgr32.DLL:cfgmgr32.DLL (00007FFC4E5F0000), size: 311296 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\OpenRL_pthread.dll:OpenRL_pthread.dll (000001781E5D0000), size: 61440 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2.9.0.0 +C:\WINDOWS\SYSTEM32\MSASN1.dll:MSASN1.dll (00007FFC4E1F0000), size: 73728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\kernel.appcore.dll:kernel.appcore.dll (00007FFC4DB40000), size: 98304 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 +C:\WINDOWS\System32\bcryptPrimitives.dll:bcryptPrimitives.dll (00007FFC4F220000), size: 524288 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\system32\uxtheme.dll:uxtheme.dll (00007FFC4C050000), size: 704512 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\System32\shcore.dll:shcore.dll (00007FFC512D0000), size: 958464 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 +C:\WINDOWS\SYSTEM32\windows.storage.dll:windows.storage.dll (00007FFC4CAE0000), size: 8790016 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\SYSTEM32\wintypes.dll:wintypes.dll (00007FFC4C970000), size: 1466368 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.41 +C:\WINDOWS\SYSTEM32\profapi.dll:profapi.dll (00007FFC4E850000), size: 135168 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\clbcatq.dll:clbcatq.dll (00007FFC510F0000), size: 716800 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2001.12.10941.16384 +C:\WINDOWS\System32\netprofm.dll:netprofm.dll (00007FFC4ADD0000), size: 462848 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 +C:\WINDOWS\System32\npmproxy.dll:npmproxy.dll (00007FFC47300000), size: 73728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 +C:\WINDOWS\System32\NSI.dll:NSI.dll (00007FFC50690000), size: 36864 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL:dhcpcsvc6.DLL (00007FFC49600000), size: 102400 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 +C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL:dhcpcsvc.DLL (00007FFC4A310000), size: 122880 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 +C:\WINDOWS\SYSTEM32\DNSAPI.dll:DNSAPI.dll (00007FFC4D6B0000), size: 946176 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\fwpuclnt.dll:fwpuclnt.dll (00007FFC48560000), size: 528384 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\Windows\System32\rasadhlp.dll:rasadhlp.dll (00007FFC47320000), size: 40960 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\Data\Tools\astcenc-avx2.dll:astcenc-avx2.dll (00007FFC0EBA0000), size: 552960 (result: 0), SymType: '-deferred-', PDB: '' +C:\WINDOWS\SYSTEM32\d3d11.dll:d3d11.dll (00007FFC47BB0000), size: 2621440 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\SYSTEM32\dxgi.dll:dxgi.dll (00007FFC4C1F0000), size: 995328 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\SYSTEM32\directxdatabasehelper.dll:directxdatabasehelper.dll (00007FFC48C90000), size: 278528 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\ntmarta.dll:ntmarta.dll (00007FFC4C310000), size: 212992 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_49c3a3c94c780a51\nvldumdx.dll:nvldumdx.dll (00007FFC45070000), size: 1073152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 30.0.14.7141 +C:\WINDOWS\SYSTEM32\cryptnet.dll:cryptnet.dll (00007FFC48C30000), size: 200704 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\drvstore.dll:drvstore.dll (00007FFC46010000), size: 1347584 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\SYSTEM32\devobj.dll:devobj.dll (00007FFC4E640000), size: 180224 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\wldp.dll:wldp.dll (00007FFC4E260000), size: 249856 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\SYSTEM32\cryptbase.dll:cryptbase.dll (00007FFC4E1B0000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\imagehlp.dll:imagehlp.dll (00007FFC4FD50000), size: 126976 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\CRYPTSP.dll:CRYPTSP.dll (00007FFC4E190000), size: 98304 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\system32\rsaenh.dll:rsaenh.dll (00007FFC4DAA0000), size: 217088 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.41 +C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_49c3a3c94c780a51\nvwgf2umx.dll:nvwgf2umx.dll (00007FFC10550000), size: 77615104 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 30.0.14.7141 +C:\WINDOWS\system32\nvspcap64.dll:nvspcap64.dll (00007FFC1CCB0000), size: 2895872 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.23.0.74 +C:\WINDOWS\system32\wbem\wbemprox.dll:wbemprox.dll (00007FFC44460000), size: 65536 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\wbemcomn.dll:wbemcomn.dll (00007FFC443D0000), size: 532480 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\system32\wbem\wbemsvc.dll:wbemsvc.dll (00007FFC40640000), size: 81920 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\system32\wbem\fastprox.dll:fastprox.dll (00007FFC40C80000), size: 1024000 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\amsi.dll:amsi.dll (00007FFC2ED50000), size: 118784 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\SYSTEM32\USERENV.dll:USERENV.dll (00007FFC4E040000), size: 167936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.2108.7-0\MpOav.dll:MpOav.dll (00007FFC2ECD0000), size: 495616 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 4.18.2108.7 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\cudart64_90.dll:cudart64_90.dll (00007FFC453F0000), size: 397312 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.14.11.9000 +C:\WINDOWS\SYSTEM32\opencl.dll:opencl.dll (00007FFC21330000), size: 1482752 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.0.1.0 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\radeonrays.dll:radeonrays.dll (00007FFC2FF70000), size: 552960 (result: 0), SymType: '-deferred-', PDB: '' +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\Data\MonoBleedingEdge\EmbedRuntime\mono-2.0-bdwgc.dll:mono-2.0-bdwgc.dll (00007FFBEA3C0000), size: 7790592 (result: 0), SymType: '-deferred-', PDB: '' +C:\WINDOWS\System32\PSAPI.DLL:PSAPI.DLL (00007FFC4FCB0000), size: 32768 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\PROPSYS.dll:PROPSYS.dll (00007FFC4AB30000), size: 1011712 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 7.0.22000.37 +C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22000.120_none_9d947278b86cc467\comctl32.dll:comctl32.dll (00007FFC41BB0000), size: 2772992 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.10.22000.120 +C:\WINDOWS\SYSTEM32\WindowsCodecs.dll:WindowsCodecs.dll (00007FFC46E90000), size: 1761280 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Windows\System32\MrmCoreR.dll:MrmCoreR.dll (00007FFC3E940000), size: 1052672 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\Windows\System32\iertutil.dll:iertutil.dll (00007FFC48F70000), size: 2826240 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 11.0.22000.1 +C:\WINDOWS\SYSTEM32\windows.staterepositorycore.dll:windows.staterepositorycore.dll (00007FFC48F50000), size: 110592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 +C:\Windows\System32\thumbcache.dll:thumbcache.dll (00007FFC2B070000), size: 417792 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.51 +C:\WINDOWS\SYSTEM32\windows.staterepositoryclient.dll:windows.staterepositoryclient.dll (00007FFC414D0000), size: 253952 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 +C:\WINDOWS\SYSTEM32\mrmdeploy.dll:mrmdeploy.dll (00007FFC27A20000), size: 360448 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Windows\System32\Windows.StateRepositoryPS.dll:Windows.StateRepositoryPS.dll (00007FFC30EF0000), size: 1261568 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 +C:\Windows\System32\bcp47mrm.dll:bcp47mrm.dll (00007FFC34D90000), size: 184320 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 +C:\Windows\System32\Windows.UI.dll:Windows.UI.dll (00007FFC34EF0000), size: 1605632 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22000.71_none_a5885354eb10b430\gdiplus.dll:gdiplus.dll (00007FFC35730000), size: 1781760 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 +C:\WINDOWS\System32\MSCTF.dll:MSCTF.dll (00007FFC50E30000), size: 1171456 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\SYSTEM32\edputil.dll:edputil.dll (00007FFC2B8B0000), size: 155648 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Windows\System32\VAULTCLI.dll:VAULTCLI.dll (00007FFC2F4A0000), size: 364544 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\policymanager.dll:policymanager.dll (00007FFC48E80000), size: 655360 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\msvcp110_win.dll:msvcp110_win.dll (00007FFC48D60000), size: 598016 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Windows\System32\Windows.System.Launcher.dll:Windows.System.Launcher.dll (00007FFC35B50000), size: 1290240 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\dbghelp.dll:dbghelp.dll (00007FFC38730000), size: 2232320 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 + +========== OUTPUTTING STACK TRACE ================== + +0x00007FFC4EEE466C (KERNELBASE) RaiseException +0x00007FF740BD282C (Unity) EditorMonoConsole::LogToConsoleImplementation +0x00007FF740BD30BE (Unity) EditorMonoConsole::LogToConsoleImplementation +0x00007FF741FE8EE8 (Unity) DebugStringToFilePostprocessedStacktrace +0x00007FF741FE86DB (Unity) DebugStringToFile +0x00007FF740FA7451 (Unity) LoadDomainAndUserAssemblies +0x00007FF740FA776C (Unity) LoadUserAssemblies +0x00007FF7411B3458 (Unity) ::operator() +0x00007FF74123A2F2 (Unity) asio::detail::completion_handler >::do_complete +0x00007FF74123C560 (Unity) asio::detail::win_iocp_io_service::do_one +0x00007FF74123FC4E (Unity) asio::io_service::run +0x00007FF7411DC12A (Unity) RunAssetImportWorkerClientV2 +0x00007FF7411DC180 (Unity) RunAssetImporterV2 +0x00007FF740CDFA37 (Unity) Application::InitializeProject +0x00007FF7410EF127 (Unity) WinMain +0x00007FF742C1D662 (Unity) __scrt_common_main_seh +0x00007FFC500454E0 (KERNEL32) BaseThreadInitThunk +0x00007FFC5144485B (ntdll) RtlUserThreadStart + +========== END OF STACKTRACE =========== + +A crash has been intercepted by the crash handler. For call stack and other details, see the latest crash report generated in: + * C:/Users/braus/AppData/Local/Temp/Unity/Editor/Crashes diff --git a/Chess/Logs/AssetImportWorker1-prev.log b/Chess/Logs/AssetImportWorker1-prev.log new file mode 100644 index 0000000..5d6f5a5 --- /dev/null +++ b/Chess/Logs/AssetImportWorker1-prev.log @@ -0,0 +1,820 @@ +Using pre-set license +Built from '2021.1/staging' branch; Version is '2021.1.13f1 (a03098edbbe0) revision 10498200'; Using compiler version '192528614'; Build Type 'Release' +OS: 'Windows 10 Pro; OS build 22000.194; Version 2009; 64bit' Language: 'en' Physical Memory: 16299 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0 + + COMMAND LINE ARGUMENTS: +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker1 +-projectPath +F:/Unity Projects/Chess +-logFile +Logs/AssetImportWorker1.log +-srvPort +54010 +Successfully changed project path to: F:/Unity Projects/Chess +F:/Unity Projects/Chess +Using Asset Import Pipeline V2. +Refreshing native plugins compatible for Editor in 110.24 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2021.1.13f1 (a03098edbbe0) +[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path F:/Unity Projects/Chess/Assets +GfxDevice: creating device client; threaded=0; jobified=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce GTX 1060 6GB (ID=0x1c03) + Vendor: NVIDIA + VRAM: 6052 MB + Driver: 30.0.14.7141 +Initialize mono +Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/Managed' +Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' +Mono config path = 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56180 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.001729 seconds. +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 111.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.968 seconds +Domain Reload Profiling: + ReloadAssembly (1968ms) + BeginReloadAssembly (54ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + EndReloadAssembly (526ms) + LoadAssemblies (52ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (186ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (259ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (112ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (107ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +Platform modules already initialized, skipping +Registering precompiled user dll's ... +Registered in 0.004578 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Unity Projects\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 123.28 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.430 seconds +Domain Reload Profiling: + ReloadAssembly (1431ms) + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (20ms) + EndReloadAssembly (1197ms) + LoadAssemblies (107ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (390ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (58ms) + SetupLoadedEditorAssemblies (553ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (123ms) + BeforeProcessingInitializeOnLoad (109ms) + ProcessInitializeOnLoadAttributes (292ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +======================================================================== +Worker process is ready to serve import requests +Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds +Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3672 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.4 MB. +System memory in use after: 136.5 MB. + +Unloading 37 unused Assets to reduce memory usage. Loaded Objects now: 4117. +Total: 3.697000 ms (FindLiveObjects: 0.260400 ms CreateObjectMapping: 0.179700 ms MarkObjects: 3.121600 ms DeleteObjects: 0.134100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + path: Assets/Scenes/Game.unity + artifactKey: Guid(2cda990e2423bbf4892e6590ba056729) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Game.unity using Guid(2cda990e2423bbf4892e6590ba056729) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2e1cdbfa906ea48c2b08a86f9cfab996') in 0.032151 seconds +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 3.52 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 23 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 64.0 MB. +System memory in use after: 64.2 MB. + +Unloading 23 unused Assets to reduce memory usage. Loaded Objects now: 4117. +Total: 3.342600 ms (FindLiveObjects: 0.296300 ms CreateObjectMapping: 0.199700 ms MarkObjects: 2.714000 ms DeleteObjects: 0.131600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 3.50 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 23 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 64.1 MB. +System memory in use after: 64.2 MB. + +Unloading 23 unused Assets to reduce memory usage. Loaded Objects now: 4117. +Total: 3.635100 ms (FindLiveObjects: 0.248000 ms CreateObjectMapping: 0.174000 ms MarkObjects: 3.084400 ms DeleteObjects: 0.127900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 3.34 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 23 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 64.1 MB. +System memory in use after: 64.2 MB. + +Unloading 23 unused Assets to reduce memory usage. Loaded Objects now: 4117. +Total: 3.605300 ms (FindLiveObjects: 0.256100 ms CreateObjectMapping: 0.185700 ms MarkObjects: 3.070800 ms DeleteObjects: 0.091800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 357.844317 seconds. + path: Assets/Graphics/Characters/blackBishop.png + artifactKey: Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackBishop.png using Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2ca306d13556c2098df27cda1ea1fe77') in 0.151074 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000340 seconds. + path: Assets/Graphics/Characters/whiteQueen.png + artifactKey: Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteQueen.png using Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '296b6e899dc6dd573a24f0ae8b845968') in 0.018619 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000074 seconds. + path: Assets/Graphics/Characters/blackQueen.png + artifactKey: Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackQueen.png using Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8524cf9f1ac68e33e7fb9164a6c9c86c') in 0.017454 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000291 seconds. + path: Assets/Graphics/Characters/whiteKnight.png + artifactKey: Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKnight.png using Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ba6fbb141d789ce3938a7f75fbac17b') in 0.017075 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000321 seconds. + path: Assets/Graphics/Characters/whiteBishop.png + artifactKey: Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteBishop.png using Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '06b3cce40e290c77ba00cc2f323f4b14') in 0.015870 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000075 seconds. + path: Assets/Graphics/Characters/whiteRook.png + artifactKey: Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteRook.png using Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c3f980c661d07c2084967d4d15ef01c4') in 0.016388 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000179 seconds. + path: Assets/Graphics/Characters/whiteKing.png + artifactKey: Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKing.png using Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3367e6cbc066b48559ccfe0bd37666b8') in 0.016407 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000244 seconds. + path: Assets/Graphics/Characters/blackRook.png + artifactKey: Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackRook.png using Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c5daf04ec5c29eaae2cdd7fd13be13a6') in 0.016945 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000191 seconds. + path: Assets/Graphics/Characters/whitePawn.png + artifactKey: Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whitePawn.png using Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c501b1cc359c12c564fab62ffd0c4a7') in 0.016568 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000197 seconds. + path: Assets/Graphics/Characters/blackPawn.png + artifactKey: Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackPawn.png using Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0053a1bf08db17cc1c34a84d968fbc3c') in 0.044770 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000225 seconds. + path: Assets/Graphics/Characters/blackKnight.png + artifactKey: Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKnight.png using Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '307017426ac4763d1395a1a4c0cd2086') in 0.014023 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000204 seconds. + path: Assets/Graphics/Characters/blackKing.png + artifactKey: Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKing.png using Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '37f97807afc0c3ff479696b96a2cc8c7') in 0.016883 seconds +======================================================================== +Received Import Request. + Time since last request: 4.215895 seconds. + path: Assets/Graphics/Characters/blackBishop.png + artifactKey: Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackBishop.png using Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b40d9c28e01819b68549099c3b500036') in 0.011331 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000336 seconds. + path: Assets/Graphics/Characters/whiteQueen.png + artifactKey: Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteQueen.png using Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4b4e068fcc848a299ff52b36c6f1aff5') in 0.010821 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000143 seconds. + path: Assets/Graphics/Characters/blackQueen.png + artifactKey: Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackQueen.png using Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'acd17aaf87ee241674940cf854805b47') in 0.009959 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000296 seconds. + path: Assets/Graphics/Characters/whiteKnight.png + artifactKey: Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKnight.png using Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ea44391e973a3c4d31bf6da6bd88228c') in 0.011281 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000363 seconds. + path: Assets/Graphics/Characters/whiteBishop.png + artifactKey: Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteBishop.png using Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd5de0d5440de203987477c50f2d5c77') in 0.017455 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000320 seconds. + path: Assets/Graphics/Characters/whiteRook.png + artifactKey: Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteRook.png using Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '74ba44b2a40b74b8b9e628ce7d5fc36f') in 0.009537 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000609 seconds. + path: Assets/Graphics/Characters/whiteKing.png + artifactKey: Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKing.png using Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00bded56284b7947efccd4f63bd5ceaa') in 0.010925 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000175 seconds. + path: Assets/Graphics/Characters/blackRook.png + artifactKey: Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackRook.png using Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '63b1c2f2457099ef4327c41465fe264a') in 0.009402 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000279 seconds. + path: Assets/Graphics/Characters/whitePawn.png + artifactKey: Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whitePawn.png using Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bc9dd38db07e1d0d7ef905291d168193') in 0.009403 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000182 seconds. + path: Assets/Graphics/Characters/blackPawn.png + artifactKey: Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackPawn.png using Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '693625a732e20ab253622330214ebe08') in 0.009147 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000078 seconds. + path: Assets/Graphics/Characters/blackKnight.png + artifactKey: Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKnight.png using Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '512724f182d47ba0434beed663e60bb2') in 0.008688 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000189 seconds. + path: Assets/Graphics/Characters/blackKing.png + artifactKey: Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKing.png using Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f6eebf6ee07f3649c7d47070a7a32ac5') in 0.008812 seconds +======================================================================== +Received Import Request. + Time since last request: 13.155029 seconds. + path: Assets/Graphics/Characters/blackBishop.png + artifactKey: Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackBishop.png using Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fbf583c03f2ba5455122c1c48bf94ea9') in 0.010413 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000278 seconds. + path: Assets/Graphics/Characters/whiteQueen.png + artifactKey: Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteQueen.png using Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fedc79e7058896c9cdd06e267d456b2d') in 0.010929 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000239 seconds. + path: Assets/Graphics/Characters/blackQueen.png + artifactKey: Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackQueen.png using Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0648ed30904bc1c377dae26a4247698b') in 0.014839 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000287 seconds. + path: Assets/Graphics/Characters/whiteKnight.png + artifactKey: Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKnight.png using Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '845c1398ac4c6daa131b8d5344007c70') in 0.012014 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000355 seconds. + path: Assets/Graphics/Characters/whiteBishop.png + artifactKey: Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteBishop.png using Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7221849b8c50ee9c971b80115ba30a1b') in 0.011314 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000312 seconds. + path: Assets/Graphics/Characters/whiteRook.png + artifactKey: Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteRook.png using Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4dfb5a96118062e1306ea761b461fbfd') in 0.009530 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000240 seconds. + path: Assets/Graphics/Characters/whiteKing.png + artifactKey: Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKing.png using Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0dfd3d33d420ebf404ecea61997d97f4') in 0.010240 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000271 seconds. + path: Assets/Graphics/Characters/blackRook.png + artifactKey: Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackRook.png using Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '64eb7dc86853ebf08e0ea20c9f713b9e') in 0.009456 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000234 seconds. + path: Assets/Graphics/Characters/whitePawn.png + artifactKey: Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whitePawn.png using Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a32d0cceb72fefe2215f4dc89f49aea4') in 0.009719 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000181 seconds. + path: Assets/Graphics/Characters/blackPawn.png + artifactKey: Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackPawn.png using Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '26d6031dd5c8fc67d80b6e5535249642') in 0.009966 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000180 seconds. + path: Assets/Graphics/Characters/blackKnight.png + artifactKey: Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKnight.png using Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cff0f53ee8ac50b2eb14c12e0171a16a') in 0.009115 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000184 seconds. + path: Assets/Graphics/Characters/blackKing.png + artifactKey: Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKing.png using Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '18e5219f1db2c6061fffe7ca860886db') in 0.009134 seconds +======================================================================== +Received Import Request. + Time since last request: 2.551393 seconds. + path: Assets/Graphics/Characters/blackBishop.png + artifactKey: Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackBishop.png using Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bade6c27d34da8b5a4d22ae35ea1edc8') in 0.011904 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000279 seconds. + path: Assets/Graphics/Characters/whiteQueen.png + artifactKey: Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteQueen.png using Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '43c455133a7265237bea8359193a20ea') in 0.009797 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000284 seconds. + path: Assets/Graphics/Characters/blackQueen.png + artifactKey: Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackQueen.png using Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38ee46bb88bfb5bf28d12aa5bade9c09') in 0.011732 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000266 seconds. + path: Assets/Graphics/Characters/whiteKnight.png + artifactKey: Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKnight.png using Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38ca10594b198b57286680f9b05c481e') in 0.010415 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000282 seconds. + path: Assets/Graphics/Characters/whiteBishop.png + artifactKey: Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteBishop.png using Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b3ae083cf9f599eb4808f834fb5d3a68') in 0.010207 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000144 seconds. + path: Assets/Graphics/Characters/whiteRook.png + artifactKey: Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteRook.png using Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '135a2a9dc911252737e903ac57dd2f21') in 0.009839 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000231 seconds. + path: Assets/Graphics/Characters/whiteKing.png + artifactKey: Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKing.png using Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0b5268591be32dfa33cbd743c0a0f430') in 0.008550 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000211 seconds. + path: Assets/Graphics/Characters/blackRook.png + artifactKey: Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackRook.png using Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '05f66ff419f7c7e9e7a42377f8c6f148') in 0.009342 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000173 seconds. + path: Assets/Graphics/Characters/whitePawn.png + artifactKey: Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whitePawn.png using Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '12474c661e065ee4e490b9c343e983c5') in 0.009774 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000182 seconds. + path: Assets/Graphics/Characters/blackPawn.png + artifactKey: Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackPawn.png using Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38c9eec470b3ae2ef9a52dc52dbdb916') in 0.007676 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000228 seconds. + path: Assets/Graphics/Characters/blackKnight.png + artifactKey: Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKnight.png using Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '19d8a59a7d97dd9b4412901c340da59c') in 0.009557 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000188 seconds. + path: Assets/Graphics/Characters/blackKing.png + artifactKey: Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKing.png using Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b6b38c6e7f3d338ed744ad6cb81357bd') in 0.008019 seconds +======================================================================== +Received Import Request. + Time since last request: 5.457882 seconds. + path: Assets/Graphics/Characters/blackBishop.png + artifactKey: Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackBishop.png using Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '07fc8065e10508bd25e9e6438b1b132a') in 0.010744 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000270 seconds. + path: Assets/Graphics/Characters/whiteQueen.png + artifactKey: Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteQueen.png using Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '35e26e5ae07466816e329afbc08cc966') in 0.011340 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000308 seconds. + path: Assets/Graphics/Characters/blackQueen.png + artifactKey: Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackQueen.png using Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6572dc67374f4457554c19285abad30f') in 0.014220 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000359 seconds. + path: Assets/Graphics/Characters/whiteKnight.png + artifactKey: Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKnight.png using Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b3161fc57212cb432d1999bab93e567') in 0.009643 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000240 seconds. + path: Assets/Graphics/Characters/whiteBishop.png + artifactKey: Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteBishop.png using Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7bdd58ebc1e659a9359e0189f7a9d858') in 0.010588 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000273 seconds. + path: Assets/Graphics/Characters/whiteRook.png + artifactKey: Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteRook.png using Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd284e151ccd64384b3a432d3bc3f5631') in 0.008440 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000194 seconds. + path: Assets/Graphics/Characters/whiteKing.png + artifactKey: Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKing.png using Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd73ef4dff7af13a89956d6267621650') in 0.007848 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000129 seconds. + path: Assets/Graphics/Characters/blackRook.png + artifactKey: Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackRook.png using Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ea47d4e5354932036d1cbd4d29bd47c2') in 0.009094 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000184 seconds. + path: Assets/Graphics/Characters/whitePawn.png + artifactKey: Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whitePawn.png using Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5c7df2ce310b1c83e5b64010bb426251') in 0.009931 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000195 seconds. + path: Assets/Graphics/Characters/blackPawn.png + artifactKey: Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackPawn.png using Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b1ac570e759fe10c80119bf524bd1e1') in 0.009124 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000164 seconds. + path: Assets/Graphics/Characters/blackKnight.png + artifactKey: Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKnight.png using Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '973e721431842854328a413644a10c24') in 0.009561 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000192 seconds. + path: Assets/Graphics/Characters/blackKing.png + artifactKey: Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKing.png using Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ebcb2055d6355d075bb15e4f68afceb6') in 0.010110 seconds +======================================================================== +Received Import Request. + Time since last request: 7.682282 seconds. + path: Assets/Graphics/Characters/blackBishop.png + artifactKey: Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackBishop.png using Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c487fd4de19701f1c56f30d9dd003ed0') in 0.009192 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000351 seconds. + path: Assets/Graphics/Characters/whiteQueen.png + artifactKey: Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteQueen.png using Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bd222135cbe78b454eba683754b9da5e') in 0.010335 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000388 seconds. + path: Assets/Graphics/Characters/blackQueen.png + artifactKey: Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackQueen.png using Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cb6cbba1fb6a123c8b2959c2f2b718e8') in 0.010196 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000328 seconds. + path: Assets/Graphics/Characters/whiteKnight.png + artifactKey: Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKnight.png using Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '063f588deae78b613911737acc6e742c') in 0.011061 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000298 seconds. + path: Assets/Graphics/Characters/whiteBishop.png + artifactKey: Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteBishop.png using Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '162a3ec759bb95bd56141afb9eacc3c5') in 0.011236 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000194 seconds. + path: Assets/Graphics/Characters/whiteRook.png + artifactKey: Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteRook.png using Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '576f45b54b4e2516e5861aa07ea1ebfb') in 0.011129 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000331 seconds. + path: Assets/Graphics/Characters/whiteKing.png + artifactKey: Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKing.png using Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3d758390bbeb8d355190cbf74f6b2db6') in 0.010564 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000226 seconds. + path: Assets/Graphics/Characters/blackRook.png + artifactKey: Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackRook.png using Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '94bd3bf7e7cdeb5c5742aee0915a9c8b') in 0.010863 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000234 seconds. + path: Assets/Graphics/Characters/whitePawn.png + artifactKey: Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whitePawn.png using Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff7b1f06b43cf8a56186c6ffca2cedba') in 0.010730 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000231 seconds. + path: Assets/Graphics/Characters/blackPawn.png + artifactKey: Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackPawn.png using Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5b927ff90f1b33d366ac1f8c9ced5f2a') in 0.010713 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000247 seconds. + path: Assets/Graphics/Characters/blackKnight.png + artifactKey: Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKnight.png using Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c95e516bde3117d77276880dd18b0dab') in 0.009983 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000189 seconds. + path: Assets/Graphics/Characters/blackKing.png + artifactKey: Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKing.png using Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0c42d8f70f694d5d151a06cc54cc87dd') in 0.009177 seconds +======================================================================== +Received Import Request. + Time since last request: 6.188913 seconds. + path: Assets/Graphics/Characters/blackBishop.png + artifactKey: Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackBishop.png using Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '232a6523212d6578eb1e704b7cb06492') in 0.018414 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000214 seconds. + path: Assets/Graphics/Characters/whiteQueen.png + artifactKey: Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteQueen.png using Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8e0464630a27b0c28a97b46bbeb609a0') in 0.019210 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000427 seconds. + path: Assets/Graphics/Characters/blackQueen.png + artifactKey: Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackQueen.png using Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '934d66a8aa03b87068ac4889a9acc225') in 0.019707 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000324 seconds. + path: Assets/Graphics/Characters/whiteKnight.png + artifactKey: Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKnight.png using Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f8293e13e3a8db49301a1cb4d864da05') in 0.024528 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000195 seconds. + path: Assets/Graphics/Characters/whiteBishop.png + artifactKey: Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteBishop.png using Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fbe5c7bfc147b603114b1b918b450918') in 0.015326 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000312 seconds. + path: Assets/Graphics/Characters/whiteRook.png + artifactKey: Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteRook.png using Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2f5b211f4c6312e2c4d4f85529293c94') in 0.018582 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000191 seconds. + path: Assets/Graphics/Characters/whiteKing.png + artifactKey: Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKing.png using Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9235939a1aca78c9755b2aa9c51ff6c8') in 0.018869 seconds +======================================================================== +Received Import Request. + Time since last request: 0.003339 seconds. + path: Assets/Graphics/Characters/blackRook.png + artifactKey: Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackRook.png using Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cf90fb12952d122f912b46ad85f3a839') in 0.019586 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000204 seconds. + path: Assets/Graphics/Characters/whitePawn.png + artifactKey: Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whitePawn.png using Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed522df545e72f901cf78af22400c1ac') in 0.014682 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000275 seconds. + path: Assets/Graphics/Characters/blackPawn.png + artifactKey: Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackPawn.png using Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1b9ebe20994aed388853ad508a2327e5') in 0.053005 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000195 seconds. + path: Assets/Graphics/Characters/blackKnight.png + artifactKey: Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKnight.png using Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '15fecd2362d7316a8f34f76b99568939') in 0.009181 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000157 seconds. + path: Assets/Graphics/Characters/blackKing.png + artifactKey: Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKing.png using Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f6221f3355430d621d66cfd93f6170d9') in 0.011043 seconds +======================================================================== +Received Import Request. + Time since last request: 8.774297 seconds. + path: Assets/Graphics/Characters/blackBishop.png + artifactKey: Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackBishop.png using Guid(5ad9b75714610bf4c86cec69c4fdfc8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bec9ade7bf8dd2f1163cdbb6cbb6aad4') in 0.013738 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000276 seconds. + path: Assets/Graphics/Characters/whiteQueen.png + artifactKey: Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteQueen.png using Guid(7c3810169d4cdff4abcf1a32ccd94bb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f271ebcd25d4ea5c548141dc8f23c80d') in 0.011251 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000345 seconds. + path: Assets/Graphics/Characters/blackQueen.png + artifactKey: Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackQueen.png using Guid(cefa153c358d0d849aa87c0060366220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '90969e111ec6895c04f89c2fbdcfafc3') in 0.011459 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000423 seconds. + path: Assets/Graphics/Characters/whiteKnight.png + artifactKey: Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKnight.png using Guid(b60cb63960a9aa04ea6cc2fb27108d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f312b4ec0ad3a587eb5785843a682424') in 0.010590 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000361 seconds. + path: Assets/Graphics/Characters/whiteBishop.png + artifactKey: Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteBishop.png using Guid(20ce2b33bbde76f4ca8a40e07dfe268f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a94598183e073a157336a6d4092a3376') in 0.018527 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000961 seconds. + path: Assets/Graphics/Characters/whiteRook.png + artifactKey: Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteRook.png using Guid(2940e28a1caefed45adfa57795b6b5b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd45e12dcd7413e5718f8a33fd11c4e44') in 0.007938 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000183 seconds. + path: Assets/Graphics/Characters/whiteKing.png + artifactKey: Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKing.png using Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0de540a46e865682c7ef32844a75a479') in 0.008868 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000153 seconds. + path: Assets/Graphics/Characters/blackRook.png + artifactKey: Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackRook.png using Guid(3f9ec07b6cae8a144ab7674cf0f115d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '82a3db365b9c0b70e127b5f4e60b4da7') in 0.009248 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000189 seconds. + path: Assets/Graphics/Characters/whitePawn.png + artifactKey: Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whitePawn.png using Guid(47b724ef5f1f4bc48a608c80df4940df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e883b60c5e1cd5f5bf2bbc18e48b98fd') in 0.008340 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000175 seconds. + path: Assets/Graphics/Characters/blackPawn.png + artifactKey: Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackPawn.png using Guid(03eeda42f4c4db5458d4441eb8049128) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8934fc6b38b4dc00e12a816bc5a51d91') in 0.014158 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000211 seconds. + path: Assets/Graphics/Characters/blackKnight.png + artifactKey: Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKnight.png using Guid(51758841b7ebece46b8c25b547faed45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5fa3298137b781659021ca953c5acd19') in 0.008446 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000198 seconds. + path: Assets/Graphics/Characters/blackKing.png + artifactKey: Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/blackKing.png using Guid(68fbc23387e93dd4da9cb42902f527d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ae102c227d7483d53d98462c3952f935') in 0.008200 seconds +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 3.32 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 23 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 68.8 MB. +System memory in use after: 68.9 MB. + +Unloading 23 unused Assets to reduce memory usage. Loaded Objects now: 4219. +Total: 3.791500 ms (FindLiveObjects: 0.279700 ms CreateObjectMapping: 0.189600 ms MarkObjects: 3.230700 ms DeleteObjects: 0.090600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 3.13 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 23 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 68.8 MB. +System memory in use after: 68.9 MB. + +Unloading 23 unused Assets to reduce memory usage. Loaded Objects now: 4219. +Total: 3.243900 ms (FindLiveObjects: 0.272200 ms CreateObjectMapping: 0.186800 ms MarkObjects: 2.642400 ms DeleteObjects: 0.141800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +AssetImportWorkerClient::OnTransportError - code=2 error=End of file diff --git a/Chess/Logs/Packages-Update.log b/Chess/Logs/Packages-Update.log new file mode 100644 index 0000000..718c7cc --- /dev/null +++ b/Chess/Logs/Packages-Update.log @@ -0,0 +1,50 @@ + +=== Sat Oct 2 18:52:33 2021 + +Packages were changed. +Update Mode: mergeDefaultDependencies + +The following packages were added: + com.unity.collab-proxy@1.5.7 + com.unity.ide.rider@3.0.7 + com.unity.ide.visualstudio@2.0.9 + com.unity.ide.vscode@1.2.3 + com.unity.modules.ai@1.0.0 + com.unity.modules.androidjni@1.0.0 + com.unity.modules.animation@1.0.0 + com.unity.modules.assetbundle@1.0.0 + com.unity.modules.audio@1.0.0 + com.unity.modules.cloth@1.0.0 + com.unity.modules.director@1.0.0 + com.unity.modules.imageconversion@1.0.0 + com.unity.modules.imgui@1.0.0 + com.unity.modules.jsonserialize@1.0.0 + com.unity.modules.particlesystem@1.0.0 + com.unity.modules.physics@1.0.0 + com.unity.modules.physics2d@1.0.0 + com.unity.modules.screencapture@1.0.0 + com.unity.modules.terrain@1.0.0 + com.unity.modules.terrainphysics@1.0.0 + com.unity.modules.tilemap@1.0.0 + com.unity.modules.ui@1.0.0 + com.unity.modules.uielements@1.0.0 + com.unity.modules.umbra@1.0.0 + com.unity.modules.unityanalytics@1.0.0 + com.unity.modules.unitywebrequest@1.0.0 + com.unity.modules.unitywebrequestassetbundle@1.0.0 + com.unity.modules.unitywebrequestaudio@1.0.0 + com.unity.modules.unitywebrequesttexture@1.0.0 + com.unity.modules.unitywebrequestwww@1.0.0 + com.unity.modules.vehicles@1.0.0 + com.unity.modules.video@1.0.0 + com.unity.modules.vr@1.0.0 + com.unity.modules.wind@1.0.0 + com.unity.modules.xr@1.0.0 + com.unity.test-framework@1.1.26 + com.unity.textmeshpro@3.0.6 + com.unity.timeline@1.5.5 + com.unity.ugui@1.0.0 + com.unity.visualscripting@1.6.1 +The following packages were updated: + com.unity.2d.animation from version 6.0.1 to 6.0.3 + com.unity.2d.psdimporter from version 5.0.1 to 5.0.3 diff --git a/Chess/Logs/shadercompiler-UnityShaderCompiler.exe0.log b/Chess/Logs/shadercompiler-UnityShaderCompiler.exe0.log new file mode 100644 index 0000000..d83d80f --- /dev/null +++ b/Chess/Logs/shadercompiler-UnityShaderCompiler.exe0.log @@ -0,0 +1,4 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: shutdown diff --git a/Chess/Packages/manifest.json b/Chess/Packages/manifest.json new file mode 100644 index 0000000..50dbfe2 --- /dev/null +++ b/Chess/Packages/manifest.json @@ -0,0 +1,51 @@ +{ + "dependencies": { + "com.unity.2d.animation": "6.0.3", + "com.unity.2d.pixel-perfect": "5.0.0", + "com.unity.2d.psdimporter": "5.0.3", + "com.unity.2d.sprite": "1.0.0", + "com.unity.2d.spriteshape": "6.0.0", + "com.unity.2d.tilemap": "1.0.0", + "com.unity.2d.tilemap.extras": "2.0.0", + "com.unity.collab-proxy": "1.5.7", + "com.unity.ide.rider": "3.0.7", + "com.unity.ide.visualstudio": "2.0.9", + "com.unity.ide.vscode": "1.2.3", + "com.unity.test-framework": "1.1.26", + "com.unity.textmeshpro": "3.0.6", + "com.unity.timeline": "1.5.5", + "com.unity.ugui": "1.0.0", + "com.unity.visualscripting": "1.6.1", + "com.unity.modules.ai": "1.0.0", + "com.unity.modules.androidjni": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.cloth": "1.0.0", + "com.unity.modules.director": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.physics2d": "1.0.0", + "com.unity.modules.screencapture": "1.0.0", + "com.unity.modules.terrain": "1.0.0", + "com.unity.modules.terrainphysics": "1.0.0", + "com.unity.modules.tilemap": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.uielements": "1.0.0", + "com.unity.modules.umbra": "1.0.0", + "com.unity.modules.unityanalytics": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.unitywebrequesttexture": "1.0.0", + "com.unity.modules.unitywebrequestwww": "1.0.0", + "com.unity.modules.vehicles": "1.0.0", + "com.unity.modules.video": "1.0.0", + "com.unity.modules.vr": "1.0.0", + "com.unity.modules.wind": "1.0.0", + "com.unity.modules.xr": "1.0.0" + } +} diff --git a/Chess/Packages/packages-lock.json b/Chess/Packages/packages-lock.json new file mode 100644 index 0000000..8fff9c0 --- /dev/null +++ b/Chess/Packages/packages-lock.json @@ -0,0 +1,451 @@ +{ + "dependencies": { + "com.unity.2d.animation": { + "version": "6.0.3", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.2d.common": "5.0.0", + "com.unity.mathematics": "1.1.0", + "com.unity.2d.sprite": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.uielements": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.2d.common": { + "version": "5.0.0", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.2d.sprite": "1.0.0", + "com.unity.modules.uielements": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.2d.path": { + "version": "5.0.0", + "depth": 1, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.2d.pixel-perfect": { + "version": "5.0.0", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.2d.psdimporter": { + "version": "5.0.3", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.2d.common": "5.0.0", + "com.unity.2d.animation": "6.0.3", + "com.unity.2d.sprite": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.2d.sprite": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.2d.spriteshape": { + "version": "6.0.0", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.mathematics": "1.1.0", + "com.unity.2d.common": "5.0.0", + "com.unity.2d.path": "5.0.0", + "com.unity.modules.physics2d": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.2d.tilemap": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.2d.tilemap.extras": { + "version": "2.0.0", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.tilemap": "1.0.0", + "com.unity.2d.tilemap": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.collab-proxy": { + "version": "1.5.7", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.nuget.newtonsoft-json": "2.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ext.nunit": { + "version": "1.0.6", + "depth": 1, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.ide.rider": { + "version": "3.0.7", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ext.nunit": "1.0.6" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ide.visualstudio": { + "version": "2.0.9", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.test-framework": "1.1.9" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ide.vscode": { + "version": "1.2.3", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.mathematics": { + "version": "1.2.1", + "depth": 1, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.nuget.newtonsoft-json": { + "version": "2.0.0", + "depth": 1, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.test-framework": { + "version": "1.1.26", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ext.nunit": "1.0.6", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.textmeshpro": { + "version": "3.0.6", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ugui": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.timeline": { + "version": "1.5.5", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.director": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ugui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0" + } + }, + "com.unity.visualscripting": { + "version": "1.6.1", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ugui": "1.0.0", + "com.unity.modules.ai": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.physics2d": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.modules.ai": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.androidjni": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.animation": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.assetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.audio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.cloth": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.director": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.animation": "1.0.0" + } + }, + "com.unity.modules.imageconversion": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.imgui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.jsonserialize": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.particlesystem": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics2d": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.screencapture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.subsystems": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.terrain": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.terrainphysics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.terrain": "1.0.0" + } + }, + "com.unity.modules.tilemap": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics2d": "1.0.0" + } + }, + "com.unity.modules.ui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.uielements": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.uielementsnative": "1.0.0" + } + }, + "com.unity.modules.uielementsnative": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.umbra": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unityanalytics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.unitywebrequest": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unitywebrequestassetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestaudio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.audio": "1.0.0" + } + }, + "com.unity.modules.unitywebrequesttexture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestwww": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.vehicles": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.video": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.vr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.xr": "1.0.0" + } + }, + "com.unity.modules.wind": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.xr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.subsystems": "1.0.0" + } + } + } +} diff --git a/Chess/ProjectSettings/AudioManager.asset b/Chess/ProjectSettings/AudioManager.asset new file mode 100644 index 0000000..27287fe --- /dev/null +++ b/Chess/ProjectSettings/AudioManager.asset @@ -0,0 +1,19 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!11 &1 +AudioManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Volume: 1 + Rolloff Scale: 1 + Doppler Factor: 1 + Default Speaker Mode: 2 + m_SampleRate: 0 + m_DSPBufferSize: 1024 + m_VirtualVoiceCount: 512 + m_RealVoiceCount: 32 + m_SpatializerPlugin: + m_AmbisonicDecoderPlugin: + m_DisableAudio: 0 + m_VirtualizeEffects: 1 + m_RequestedDSPBufferSize: 0 diff --git a/Chess/ProjectSettings/ClusterInputManager.asset b/Chess/ProjectSettings/ClusterInputManager.asset new file mode 100644 index 0000000..e7886b2 --- /dev/null +++ b/Chess/ProjectSettings/ClusterInputManager.asset @@ -0,0 +1,6 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!236 &1 +ClusterInputManager: + m_ObjectHideFlags: 0 + m_Inputs: [] diff --git a/Chess/ProjectSettings/DynamicsManager.asset b/Chess/ProjectSettings/DynamicsManager.asset new file mode 100644 index 0000000..72d1430 --- /dev/null +++ b/Chess/ProjectSettings/DynamicsManager.asset @@ -0,0 +1,37 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!55 &1 +PhysicsManager: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_Gravity: {x: 0, y: -9.81, z: 0} + m_DefaultMaterial: {fileID: 0} + m_BounceThreshold: 2 + m_DefaultMaxDepenetrationVelocity: 10 + m_SleepThreshold: 0.005 + m_DefaultContactOffset: 0.01 + m_DefaultSolverIterations: 6 + m_DefaultSolverVelocityIterations: 1 + m_QueriesHitBackfaces: 0 + m_QueriesHitTriggers: 1 + m_EnableAdaptiveForce: 0 + m_ClothInterCollisionDistance: 0.1 + m_ClothInterCollisionStiffness: 0.2 + m_ContactsGeneration: 1 + m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff + m_AutoSimulation: 1 + m_AutoSyncTransforms: 0 + m_ReuseCollisionCallbacks: 1 + m_ClothInterCollisionSettingsToggle: 0 + m_ClothGravity: {x: 0, y: -9.81, z: 0} + m_ContactPairsMode: 0 + m_BroadphaseType: 0 + m_WorldBounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 250, y: 250, z: 250} + m_WorldSubdivisions: 8 + m_FrictionType: 0 + m_EnableEnhancedDeterminism: 0 + m_EnableUnifiedHeightmaps: 1 + m_SolverType: 0 + m_DefaultMaxAngularSpeed: 50 diff --git a/Chess/ProjectSettings/EditorBuildSettings.asset b/Chess/ProjectSettings/EditorBuildSettings.asset new file mode 100644 index 0000000..370f10b --- /dev/null +++ b/Chess/ProjectSettings/EditorBuildSettings.asset @@ -0,0 +1,11 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1045 &1 +EditorBuildSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Scenes: + - enabled: 1 + path: Assets/Scenes/Game.unity + guid: 2cda990e2423bbf4892e6590ba056729 + m_configObjects: {} diff --git a/Chess/ProjectSettings/EditorSettings.asset b/Chess/ProjectSettings/EditorSettings.asset new file mode 100644 index 0000000..fa3ed49 --- /dev/null +++ b/Chess/ProjectSettings/EditorSettings.asset @@ -0,0 +1,40 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!159 &1 +EditorSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_SerializationMode: 2 + m_LineEndingsForNewScripts: 0 + m_DefaultBehaviorMode: 1 + m_PrefabRegularEnvironment: {fileID: 0} + m_PrefabUIEnvironment: {fileID: 0} + m_SpritePackerMode: 4 + m_SpritePackerPaddingPower: 1 + m_EtcTextureCompressorBehavior: 1 + m_EtcTextureFastCompressor: 1 + m_EtcTextureNormalCompressor: 2 + m_EtcTextureBestCompressor: 4 + m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;asmref;rsp + m_ProjectGenerationRootNamespace: + m_EnableTextureStreamingInEditMode: 1 + m_EnableTextureStreamingInPlayMode: 1 + m_AsyncShaderCompilation: 1 + m_CachingShaderPreprocessor: 1 + m_PrefabModeAllowAutoSave: 1 + m_EnterPlayModeOptionsEnabled: 0 + m_EnterPlayModeOptions: 3 + m_GameObjectNamingDigits: 1 + m_GameObjectNamingScheme: 0 + m_AssetNamingUsesSpace: 1 + m_UseLegacyProbeSampleCount: 0 + m_SerializeInlineMappingsOnOneLine: 1 + m_DisableCookiesInLightmapper: 1 + m_AssetPipelineMode: 1 + m_CacheServerMode: 0 + m_CacheServerEndpoint: + m_CacheServerNamespacePrefix: default + m_CacheServerEnableDownload: 1 + m_CacheServerEnableUpload: 1 + m_CacheServerEnableAuth: 0 + m_CacheServerEnableTls: 0 diff --git a/Chess/ProjectSettings/GraphicsSettings.asset b/Chess/ProjectSettings/GraphicsSettings.asset new file mode 100644 index 0000000..c165afb --- /dev/null +++ b/Chess/ProjectSettings/GraphicsSettings.asset @@ -0,0 +1,64 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!30 &1 +GraphicsSettings: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_Deferred: + m_Mode: 1 + m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} + m_DeferredReflections: + m_Mode: 1 + m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} + m_ScreenSpaceShadows: + m_Mode: 1 + m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} + m_LegacyDeferred: + m_Mode: 1 + m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} + m_DepthNormals: + m_Mode: 1 + m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} + m_MotionVectors: + m_Mode: 1 + m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} + m_LightHalo: + m_Mode: 1 + m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} + m_LensFlare: + m_Mode: 1 + m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} + m_VideoShadersIncludeMode: 2 + m_AlwaysIncludedShaders: + - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10783, guid: 0000000000000000f000000000000000, type: 0} + m_PreloadedShaders: [] + m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} + m_CustomRenderPipeline: {fileID: 0} + m_TransparencySortMode: 0 + m_TransparencySortAxis: {x: 0, y: 0, z: 1} + m_DefaultRenderingPath: 1 + m_DefaultMobileRenderingPath: 1 + m_TierSettings: [] + m_LightmapStripping: 0 + m_FogStripping: 0 + m_InstancingStripping: 0 + m_LightmapKeepPlain: 1 + m_LightmapKeepDirCombined: 1 + m_LightmapKeepDynamicPlain: 1 + m_LightmapKeepDynamicDirCombined: 1 + m_LightmapKeepShadowMask: 1 + m_LightmapKeepSubtractive: 1 + m_FogKeepLinear: 1 + m_FogKeepExp: 1 + m_FogKeepExp2: 1 + m_AlbedoSwatchInfos: [] + m_LightsUseLinearIntensity: 0 + m_LightsUseColorTemperature: 0 + m_DefaultRenderingLayerMask: 1 + m_LogWhenShaderIsCompiled: 0 diff --git a/Chess/ProjectSettings/InputManager.asset b/Chess/ProjectSettings/InputManager.asset new file mode 100644 index 0000000..b16147e --- /dev/null +++ b/Chess/ProjectSettings/InputManager.asset @@ -0,0 +1,487 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!13 &1 +InputManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Axes: + - serializedVersion: 3 + m_Name: Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: a + altPositiveButton: d + gravity: 3 + dead: 0.001 + sensitivity: 3 + snap: 1 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: s + altPositiveButton: w + gravity: 3 + dead: 0.001 + sensitivity: 3 + snap: 1 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left ctrl + altNegativeButton: + altPositiveButton: mouse 0 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left alt + altNegativeButton: + altPositiveButton: mouse 1 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire3 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left shift + altNegativeButton: + altPositiveButton: mouse 2 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Jump + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: space + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse X + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse Y + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 1 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse ScrollWheel + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 2 + joyNum: 0 + - serializedVersion: 3 + m_Name: Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0.19 + sensitivity: 1 + snap: 0 + invert: 0 + type: 2 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0.19 + sensitivity: 1 + snap: 0 + invert: 1 + type: 2 + axis: 1 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 0 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 1 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire3 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 2 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Jump + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 3 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Submit + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: return + altNegativeButton: + altPositiveButton: joystick button 0 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Submit + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: enter + altNegativeButton: + altPositiveButton: space + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Cancel + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: escape + altNegativeButton: + altPositiveButton: joystick button 1 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Enable Debug Button 1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left ctrl + altNegativeButton: + altPositiveButton: joystick button 8 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Enable Debug Button 2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: backspace + altNegativeButton: + altPositiveButton: joystick button 9 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Reset + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left alt + altNegativeButton: + altPositiveButton: joystick button 1 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Next + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: page down + altNegativeButton: + altPositiveButton: joystick button 5 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Previous + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: page up + altNegativeButton: + altPositiveButton: joystick button 4 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Validate + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: return + altNegativeButton: + altPositiveButton: joystick button 0 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Persistent + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: right shift + altNegativeButton: + altPositiveButton: joystick button 2 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Multiplier + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left shift + altNegativeButton: + altPositiveButton: joystick button 3 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 2 + axis: 6 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 2 + axis: 5 + joyNum: 0 diff --git a/Chess/ProjectSettings/NavMeshAreas.asset b/Chess/ProjectSettings/NavMeshAreas.asset new file mode 100644 index 0000000..ad2654e --- /dev/null +++ b/Chess/ProjectSettings/NavMeshAreas.asset @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!126 &1 +NavMeshProjectSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + areas: + - name: Walkable + cost: 1 + - name: Not Walkable + cost: 1 + - name: Jump + cost: 2 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + m_LastAgentTypeID: -887442657 + m_Settings: + - serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.75 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_SettingNames: + - Humanoid diff --git a/Chess/ProjectSettings/NetworkManager.asset b/Chess/ProjectSettings/NetworkManager.asset new file mode 100644 index 0000000..5dc6a83 --- /dev/null +++ b/Chess/ProjectSettings/NetworkManager.asset @@ -0,0 +1,8 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!149 &1 +NetworkManager: + m_ObjectHideFlags: 0 + m_DebugLevel: 0 + m_Sendrate: 15 + m_AssetToPrefab: {} diff --git a/Chess/ProjectSettings/PackageManagerSettings.asset b/Chess/ProjectSettings/PackageManagerSettings.asset new file mode 100644 index 0000000..b3a65dd --- /dev/null +++ b/Chess/ProjectSettings/PackageManagerSettings.asset @@ -0,0 +1,44 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 61 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_EnablePreReleasePackages: 0 + m_EnablePackageDependencies: 0 + m_AdvancedSettingsExpanded: 1 + m_ScopedRegistriesSettingsExpanded: 1 + m_SeeAllPackageVersions: 0 + oneTimeWarningShown: 0 + m_Registries: + - m_Id: main + m_Name: + m_Url: https://packages.unity.com + m_Scopes: [] + m_IsDefault: 1 + m_Capabilities: 7 + m_UserSelectedRegistryName: + m_UserAddingNewScopedRegistry: 0 + m_RegistryInfoDraft: + m_ErrorMessage: + m_Original: + m_Id: + m_Name: + m_Url: + m_Scopes: [] + m_IsDefault: 0 + m_Capabilities: 0 + m_Modified: 0 + m_Name: + m_Url: + m_Scopes: + - + m_SelectedScopeIndex: 0 diff --git a/Chess/ProjectSettings/Physics2DSettings.asset b/Chess/ProjectSettings/Physics2DSettings.asset new file mode 100644 index 0000000..6cfcdda --- /dev/null +++ b/Chess/ProjectSettings/Physics2DSettings.asset @@ -0,0 +1,56 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!19 &1 +Physics2DSettings: + m_ObjectHideFlags: 0 + serializedVersion: 5 + m_Gravity: {x: 0, y: -9.81} + m_DefaultMaterial: {fileID: 0} + m_VelocityIterations: 8 + m_PositionIterations: 3 + m_VelocityThreshold: 1 + m_MaxLinearCorrection: 0.2 + m_MaxAngularCorrection: 8 + m_MaxTranslationSpeed: 100 + m_MaxRotationSpeed: 360 + m_BaumgarteScale: 0.2 + m_BaumgarteTimeOfImpactScale: 0.75 + m_TimeToSleep: 0.5 + m_LinearSleepTolerance: 0.01 + m_AngularSleepTolerance: 2 + m_DefaultContactOffset: 0.01 + m_JobOptions: + serializedVersion: 2 + useMultithreading: 0 + useConsistencySorting: 0 + m_InterpolationPosesPerJob: 100 + m_NewContactsPerJob: 30 + m_CollideContactsPerJob: 100 + m_ClearFlagsPerJob: 200 + m_ClearBodyForcesPerJob: 200 + m_SyncDiscreteFixturesPerJob: 50 + m_SyncContinuousFixturesPerJob: 50 + m_FindNearestContactsPerJob: 100 + m_UpdateTriggerContactsPerJob: 100 + m_IslandSolverCostThreshold: 100 + m_IslandSolverBodyCostScale: 1 + m_IslandSolverContactCostScale: 10 + m_IslandSolverJointCostScale: 10 + m_IslandSolverBodiesPerJob: 50 + m_IslandSolverContactsPerJob: 50 + m_SimulationMode: 0 + m_QueriesHitTriggers: 1 + m_QueriesStartInColliders: 1 + m_CallbacksOnDisable: 1 + m_ReuseCollisionCallbacks: 1 + m_AutoSyncTransforms: 0 + m_AlwaysShowColliders: 0 + m_ShowColliderSleep: 1 + m_ShowColliderContacts: 0 + m_ShowColliderAABB: 0 + m_ContactArrowScale: 0.2 + m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} + m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} + m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} + m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} + m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff diff --git a/Chess/ProjectSettings/PresetManager.asset b/Chess/ProjectSettings/PresetManager.asset new file mode 100644 index 0000000..67a94da --- /dev/null +++ b/Chess/ProjectSettings/PresetManager.asset @@ -0,0 +1,7 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1386491679 &1 +PresetManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_DefaultPresets: {} diff --git a/Chess/ProjectSettings/ProjectSettings.asset b/Chess/ProjectSettings/ProjectSettings.asset new file mode 100644 index 0000000..edaf95f --- /dev/null +++ b/Chess/ProjectSettings/ProjectSettings.asset @@ -0,0 +1,747 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!129 &1 +PlayerSettings: + m_ObjectHideFlags: 0 + serializedVersion: 22 + productGUID: 046bae83cd7499e43a0fc166dc8e6d21 + AndroidProfiler: 0 + AndroidFilterTouchesWhenObscured: 0 + AndroidEnableSustainedPerformanceMode: 0 + defaultScreenOrientation: 4 + targetDevice: 2 + useOnDemandResources: 0 + accelerometerFrequency: 60 + companyName: DefaultCompany + productName: Chess + defaultCursor: {fileID: 0} + cursorHotspot: {x: 0, y: 0} + m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} + m_ShowUnitySplashScreen: 0 + m_ShowUnitySplashLogo: 1 + m_SplashScreenOverlayOpacity: 1 + m_SplashScreenAnimation: 1 + m_SplashScreenLogoStyle: 1 + m_SplashScreenDrawMode: 0 + m_SplashScreenBackgroundAnimationZoom: 1 + m_SplashScreenLogoAnimationZoom: 1 + m_SplashScreenBackgroundLandscapeAspect: 1 + m_SplashScreenBackgroundPortraitAspect: 1 + m_SplashScreenBackgroundLandscapeUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenBackgroundPortraitUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenLogos: [] + m_VirtualRealitySplashScreen: {fileID: 0} + m_HolographicTrackingLossScreen: {fileID: 0} + defaultScreenWidth: 800 + defaultScreenHeight: 800 + defaultScreenWidthWeb: 960 + defaultScreenHeightWeb: 600 + m_StereoRenderingPath: 0 + m_ActiveColorSpace: 0 + m_MTRendering: 1 + mipStripping: 0 + numberOfMipsStripped: 0 + m_StackTraceTypes: 010000000100000001000000010000000100000001000000 + iosShowActivityIndicatorOnLoading: -1 + androidShowActivityIndicatorOnLoading: -1 + iosUseCustomAppBackgroundBehavior: 0 + iosAllowHTTPDownload: 1 + allowedAutorotateToPortrait: 1 + allowedAutorotateToPortraitUpsideDown: 1 + allowedAutorotateToLandscapeRight: 1 + allowedAutorotateToLandscapeLeft: 1 + useOSAutorotation: 1 + use32BitDisplayBuffer: 1 + preserveFramebufferAlpha: 0 + disableDepthAndStencilBuffers: 0 + androidStartInFullscreen: 1 + androidRenderOutsideSafeArea: 1 + androidUseSwappy: 1 + androidBlitType: 0 + defaultIsNativeResolution: 1 + macRetinaSupport: 1 + runInBackground: 0 + captureSingleScreen: 0 + muteOtherAudioSources: 0 + Prepare IOS For Recording: 0 + Force IOS Speakers When Recording: 0 + deferSystemGesturesMode: 0 + hideHomeButton: 0 + submitAnalytics: 1 + usePlayerLog: 1 + bakeCollisionMeshes: 0 + forceSingleInstance: 0 + useFlipModelSwapchain: 1 + resizableWindow: 1 + useMacAppStoreValidation: 0 + macAppStoreCategory: public.app-category.games + gpuSkinning: 0 + xboxPIXTextureCapture: 0 + xboxEnableAvatar: 0 + xboxEnableKinect: 0 + xboxEnableKinectAutoTracking: 0 + xboxEnableFitness: 0 + visibleInBackground: 1 + allowFullscreenSwitch: 1 + fullscreenMode: 3 + xboxSpeechDB: 0 + xboxEnableHeadOrientation: 0 + xboxEnableGuest: 0 + xboxEnablePIXSampling: 0 + metalFramebufferOnly: 0 + xboxOneResolution: 0 + xboxOneSResolution: 0 + xboxOneXResolution: 3 + xboxOneMonoLoggingLevel: 0 + xboxOneLoggingLevel: 1 + xboxOneDisableEsram: 0 + xboxOneEnableTypeOptimization: 0 + xboxOnePresentImmediateThreshold: 0 + switchQueueCommandMemory: 1048576 + switchQueueControlMemory: 16384 + switchQueueComputeMemory: 262144 + switchNVNShaderPoolsGranularity: 33554432 + switchNVNDefaultPoolsGranularity: 16777216 + switchNVNOtherPoolsGranularity: 16777216 + switchNVNMaxPublicTextureIDCount: 0 + switchNVNMaxPublicSamplerIDCount: 0 + stadiaPresentMode: 0 + stadiaTargetFramerate: 0 + vulkanNumSwapchainBuffers: 3 + vulkanEnableSetSRGBWrite: 0 + vulkanEnablePreTransform: 0 + vulkanEnableLateAcquireNextImage: 0 + m_SupportedAspectRatios: + 4:3: 0 + 5:4: 0 + 16:10: 0 + 16:9: 0 + Others: 0 + bundleVersion: 1.0 + preloadedAssets: [] + metroInputSource: 0 + wsaTransparentSwapchain: 0 + m_HolographicPauseOnTrackingLoss: 1 + xboxOneDisableKinectGpuReservation: 1 + xboxOneEnable7thCore: 1 + vrSettings: + enable360StereoCapture: 0 + isWsaHolographicRemotingEnabled: 0 + enableFrameTimingStats: 0 + useHDRDisplay: 0 + D3DHDRBitDepth: 0 + m_ColorGamuts: 00000000 + targetPixelDensity: 30 + resolutionScalingMode: 0 + androidSupportedAspectRatio: 1 + androidMaxAspectRatio: 2.1 + applicationIdentifier: + Standalone: com.DefaultCompany.2DProject + buildNumber: + Standalone: 0 + iPhone: 0 + tvOS: 0 + overrideDefaultApplicationIdentifier: 1 + AndroidBundleVersionCode: 1 + AndroidMinSdkVersion: 19 + AndroidTargetSdkVersion: 0 + AndroidPreferredInstallLocation: 1 + aotOptions: + stripEngineCode: 1 + iPhoneStrippingLevel: 0 + iPhoneScriptCallOptimization: 0 + ForceInternetPermission: 0 + ForceSDCardPermission: 0 + CreateWallpaper: 0 + APKExpansionFiles: 0 + keepLoadedShadersAlive: 0 + StripUnusedMeshComponents: 0 + VertexChannelCompressionMask: 4054 + iPhoneSdkVersion: 988 + iOSTargetOSVersionString: 11.0 + tvOSSdkVersion: 0 + tvOSRequireExtendedGameController: 0 + tvOSTargetOSVersionString: 11.0 + uIPrerenderedIcon: 0 + uIRequiresPersistentWiFi: 0 + uIRequiresFullScreen: 1 + uIStatusBarHidden: 1 + uIExitOnSuspend: 0 + uIStatusBarStyle: 0 + appleTVSplashScreen: {fileID: 0} + appleTVSplashScreen2x: {fileID: 0} + tvOSSmallIconLayers: [] + tvOSSmallIconLayers2x: [] + tvOSLargeIconLayers: [] + tvOSLargeIconLayers2x: [] + tvOSTopShelfImageLayers: [] + tvOSTopShelfImageLayers2x: [] + tvOSTopShelfImageWideLayers: [] + tvOSTopShelfImageWideLayers2x: [] + iOSLaunchScreenType: 0 + iOSLaunchScreenPortrait: {fileID: 0} + iOSLaunchScreenLandscape: {fileID: 0} + iOSLaunchScreenBackgroundColor: + serializedVersion: 2 + rgba: 0 + iOSLaunchScreenFillPct: 100 + iOSLaunchScreenSize: 100 + iOSLaunchScreenCustomXibPath: + iOSLaunchScreeniPadType: 0 + iOSLaunchScreeniPadImage: {fileID: 0} + iOSLaunchScreeniPadBackgroundColor: + serializedVersion: 2 + rgba: 0 + iOSLaunchScreeniPadFillPct: 100 + iOSLaunchScreeniPadSize: 100 + iOSLaunchScreeniPadCustomXibPath: + iOSLaunchScreenCustomStoryboardPath: + iOSLaunchScreeniPadCustomStoryboardPath: + iOSDeviceRequirements: [] + iOSURLSchemes: [] + iOSBackgroundModes: 0 + iOSMetalForceHardShadows: 0 + metalEditorSupport: 1 + metalAPIValidation: 1 + iOSRenderExtraFrameOnPause: 0 + iosCopyPluginsCodeInsteadOfSymlink: 0 + appleDeveloperTeamID: + iOSManualSigningProvisioningProfileID: + tvOSManualSigningProvisioningProfileID: + iOSManualSigningProvisioningProfileType: 0 + tvOSManualSigningProvisioningProfileType: 0 + appleEnableAutomaticSigning: 0 + iOSRequireARKit: 0 + iOSAutomaticallyDetectAndAddCapabilities: 1 + appleEnableProMotion: 0 + shaderPrecisionModel: 0 + clonedFromGUID: 10ad67313f4034357812315f3c407484 + templatePackageId: com.unity.template.2d@6.0.0 + templateDefaultScene: Assets/Scenes/SampleScene.unity + useCustomMainManifest: 0 + useCustomLauncherManifest: 0 + useCustomMainGradleTemplate: 0 + useCustomLauncherGradleManifest: 0 + useCustomBaseGradleTemplate: 0 + useCustomGradlePropertiesTemplate: 0 + useCustomProguardFile: 0 + AndroidTargetArchitectures: 1 + AndroidSplashScreenScale: 0 + androidSplashScreen: {fileID: 0} + AndroidKeystoreName: + AndroidKeyaliasName: + AndroidBuildApkPerCpuArchitecture: 0 + AndroidTVCompatibility: 0 + AndroidIsGame: 1 + AndroidEnableTango: 0 + androidEnableBanner: 1 + androidUseLowAccuracyLocation: 0 + androidUseCustomKeystore: 0 + m_AndroidBanners: + - width: 320 + height: 180 + banner: {fileID: 0} + androidGamepadSupportLevel: 0 + AndroidMinifyWithR8: 0 + AndroidMinifyRelease: 0 + AndroidMinifyDebug: 0 + AndroidValidateAppBundleSize: 1 + AndroidAppBundleSizeToValidate: 150 + m_BuildTargetIcons: + - m_BuildTarget: + m_Icons: + - serializedVersion: 2 + m_Icon: {fileID: 2800000, guid: cefa153c358d0d849aa87c0060366220, type: 3} + m_Width: 128 + m_Height: 128 + m_Kind: 0 + m_BuildTargetPlatformIcons: + - m_BuildTarget: Android + m_Icons: + - m_Textures: [] + m_Width: 432 + m_Height: 432 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 324 + m_Height: 324 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 216 + m_Height: 216 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 162 + m_Height: 162 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 108 + m_Height: 108 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 81 + m_Height: 81 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 192 + m_Height: 192 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 144 + m_Height: 144 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 96 + m_Height: 96 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 72 + m_Height: 72 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 48 + m_Height: 48 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 36 + m_Height: 36 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 192 + m_Height: 192 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 144 + m_Height: 144 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 96 + m_Height: 96 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 72 + m_Height: 72 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 48 + m_Height: 48 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 36 + m_Height: 36 + m_Kind: 0 + m_SubKind: + m_BuildTargetBatching: [] + m_BuildTargetGraphicsJobs: + - m_BuildTarget: MacStandaloneSupport + m_GraphicsJobs: 0 + - m_BuildTarget: Switch + m_GraphicsJobs: 0 + - m_BuildTarget: MetroSupport + m_GraphicsJobs: 0 + - m_BuildTarget: AppleTVSupport + m_GraphicsJobs: 0 + - m_BuildTarget: BJMSupport + m_GraphicsJobs: 0 + - m_BuildTarget: LinuxStandaloneSupport + m_GraphicsJobs: 0 + - m_BuildTarget: PS4Player + m_GraphicsJobs: 0 + - m_BuildTarget: iOSSupport + m_GraphicsJobs: 0 + - m_BuildTarget: WindowsStandaloneSupport + m_GraphicsJobs: 0 + - m_BuildTarget: XboxOnePlayer + m_GraphicsJobs: 0 + - m_BuildTarget: LuminSupport + m_GraphicsJobs: 0 + - m_BuildTarget: AndroidPlayer + m_GraphicsJobs: 0 + - m_BuildTarget: WebGLSupport + m_GraphicsJobs: 0 + m_BuildTargetGraphicsJobMode: [] + m_BuildTargetGraphicsAPIs: + - m_BuildTarget: AndroidPlayer + m_APIs: 150000000b000000 + m_Automatic: 0 + - m_BuildTarget: iOSSupport + m_APIs: 10000000 + m_Automatic: 1 + m_BuildTargetVRSettings: [] + openGLRequireES31: 0 + openGLRequireES31AEP: 0 + openGLRequireES32: 0 + m_TemplateCustomTags: {} + mobileMTRendering: + Android: 1 + iPhone: 1 + tvOS: 1 + m_BuildTargetGroupLightmapEncodingQuality: [] + m_BuildTargetGroupLightmapSettings: [] + m_BuildTargetNormalMapEncoding: [] + playModeTestRunnerEnabled: 0 + runPlayModeTestAsEditModeTest: 0 + actionOnDotNetUnhandledException: 1 + enableInternalProfiler: 0 + logObjCUncaughtExceptions: 1 + enableCrashReportAPI: 0 + cameraUsageDescription: + locationUsageDescription: + microphoneUsageDescription: + switchNMETAOverride: + switchNetLibKey: + switchSocketMemoryPoolSize: 6144 + switchSocketAllocatorPoolSize: 128 + switchSocketConcurrencyLimit: 14 + switchScreenResolutionBehavior: 2 + switchUseCPUProfiler: 0 + switchUseGOLDLinker: 0 + switchLTOSetting: 0 + switchApplicationID: 0x01004b9000490000 + switchNSODependencies: + switchTitleNames_0: + switchTitleNames_1: + switchTitleNames_2: + switchTitleNames_3: + switchTitleNames_4: + switchTitleNames_5: + switchTitleNames_6: + switchTitleNames_7: + switchTitleNames_8: + switchTitleNames_9: + switchTitleNames_10: + switchTitleNames_11: + switchTitleNames_12: + switchTitleNames_13: + switchTitleNames_14: + switchTitleNames_15: + switchPublisherNames_0: + switchPublisherNames_1: + switchPublisherNames_2: + switchPublisherNames_3: + switchPublisherNames_4: + switchPublisherNames_5: + switchPublisherNames_6: + switchPublisherNames_7: + switchPublisherNames_8: + switchPublisherNames_9: + switchPublisherNames_10: + switchPublisherNames_11: + switchPublisherNames_12: + switchPublisherNames_13: + switchPublisherNames_14: + switchPublisherNames_15: + switchIcons_0: {fileID: 0} + switchIcons_1: {fileID: 0} + switchIcons_2: {fileID: 0} + switchIcons_3: {fileID: 0} + switchIcons_4: {fileID: 0} + switchIcons_5: {fileID: 0} + switchIcons_6: {fileID: 0} + switchIcons_7: {fileID: 0} + switchIcons_8: {fileID: 0} + switchIcons_9: {fileID: 0} + switchIcons_10: {fileID: 0} + switchIcons_11: {fileID: 0} + switchIcons_12: {fileID: 0} + switchIcons_13: {fileID: 0} + switchIcons_14: {fileID: 0} + switchIcons_15: {fileID: 0} + switchSmallIcons_0: {fileID: 0} + switchSmallIcons_1: {fileID: 0} + switchSmallIcons_2: {fileID: 0} + switchSmallIcons_3: {fileID: 0} + switchSmallIcons_4: {fileID: 0} + switchSmallIcons_5: {fileID: 0} + switchSmallIcons_6: {fileID: 0} + switchSmallIcons_7: {fileID: 0} + switchSmallIcons_8: {fileID: 0} + switchSmallIcons_9: {fileID: 0} + switchSmallIcons_10: {fileID: 0} + switchSmallIcons_11: {fileID: 0} + switchSmallIcons_12: {fileID: 0} + switchSmallIcons_13: {fileID: 0} + switchSmallIcons_14: {fileID: 0} + switchSmallIcons_15: {fileID: 0} + switchManualHTML: + switchAccessibleURLs: + switchLegalInformation: + switchMainThreadStackSize: 1048576 + switchPresenceGroupId: + switchLogoHandling: 0 + switchReleaseVersion: 0 + switchDisplayVersion: 1.0.0 + switchStartupUserAccount: 0 + switchTouchScreenUsage: 0 + switchSupportedLanguagesMask: 0 + switchLogoType: 0 + switchApplicationErrorCodeCategory: + switchUserAccountSaveDataSize: 0 + switchUserAccountSaveDataJournalSize: 0 + switchApplicationAttribute: 0 + switchCardSpecSize: -1 + switchCardSpecClock: -1 + switchRatingsMask: 0 + switchRatingsInt_0: 0 + switchRatingsInt_1: 0 + switchRatingsInt_2: 0 + switchRatingsInt_3: 0 + switchRatingsInt_4: 0 + switchRatingsInt_5: 0 + switchRatingsInt_6: 0 + switchRatingsInt_7: 0 + switchRatingsInt_8: 0 + switchRatingsInt_9: 0 + switchRatingsInt_10: 0 + switchRatingsInt_11: 0 + switchRatingsInt_12: 0 + switchLocalCommunicationIds_0: + switchLocalCommunicationIds_1: + switchLocalCommunicationIds_2: + switchLocalCommunicationIds_3: + switchLocalCommunicationIds_4: + switchLocalCommunicationIds_5: + switchLocalCommunicationIds_6: + switchLocalCommunicationIds_7: + switchParentalControl: 0 + switchAllowsScreenshot: 1 + switchAllowsVideoCapturing: 1 + switchAllowsRuntimeAddOnContentInstall: 0 + switchDataLossConfirmation: 0 + switchUserAccountLockEnabled: 0 + switchSystemResourceMemory: 16777216 + switchSupportedNpadStyles: 22 + switchNativeFsCacheSize: 32 + switchIsHoldTypeHorizontal: 0 + switchSupportedNpadCount: 8 + switchSocketConfigEnabled: 0 + switchTcpInitialSendBufferSize: 32 + switchTcpInitialReceiveBufferSize: 64 + switchTcpAutoSendBufferSizeMax: 256 + switchTcpAutoReceiveBufferSizeMax: 256 + switchUdpSendBufferSize: 9 + switchUdpReceiveBufferSize: 42 + switchSocketBufferEfficiency: 4 + switchSocketInitializeEnabled: 1 + switchNetworkInterfaceManagerInitializeEnabled: 1 + switchPlayerConnectionEnabled: 1 + switchUseNewStyleFilepaths: 0 + switchUseMicroSleepForYield: 1 + switchMicroSleepForYieldTime: 25 + ps4NPAgeRating: 12 + ps4NPTitleSecret: + ps4NPTrophyPackPath: + ps4ParentalLevel: 11 + ps4ContentID: ED1633-NPXX51362_00-0000000000000000 + ps4Category: 0 + ps4MasterVersion: 01.00 + ps4AppVersion: 01.00 + ps4AppType: 0 + ps4ParamSfxPath: + ps4VideoOutPixelFormat: 0 + ps4VideoOutInitialWidth: 1920 + ps4VideoOutBaseModeInitialWidth: 1920 + ps4VideoOutReprojectionRate: 60 + ps4PronunciationXMLPath: + ps4PronunciationSIGPath: + ps4BackgroundImagePath: + ps4StartupImagePath: + ps4StartupImagesFolder: + ps4IconImagesFolder: + ps4SaveDataImagePath: + ps4SdkOverride: + ps4BGMPath: + ps4ShareFilePath: + ps4ShareOverlayImagePath: + ps4PrivacyGuardImagePath: + ps4ExtraSceSysFile: + ps4NPtitleDatPath: + ps4RemotePlayKeyAssignment: -1 + ps4RemotePlayKeyMappingDir: + ps4PlayTogetherPlayerCount: 0 + ps4EnterButtonAssignment: 2 + ps4ApplicationParam1: 0 + ps4ApplicationParam2: 0 + ps4ApplicationParam3: 0 + ps4ApplicationParam4: 0 + ps4DownloadDataSize: 0 + ps4GarlicHeapSize: 2048 + ps4ProGarlicHeapSize: 2560 + playerPrefsMaxSize: 32768 + ps4Passcode: bi9UOuSpM2Tlh01vOzwvSikHFswuzleh + ps4pnSessions: 1 + ps4pnPresence: 1 + ps4pnFriends: 1 + ps4pnGameCustomData: 1 + playerPrefsSupport: 0 + enableApplicationExit: 0 + resetTempFolder: 1 + restrictedAudioUsageRights: 0 + ps4UseResolutionFallback: 0 + ps4ReprojectionSupport: 0 + ps4UseAudio3dBackend: 0 + ps4UseLowGarlicFragmentationMode: 1 + ps4SocialScreenEnabled: 0 + ps4ScriptOptimizationLevel: 2 + ps4Audio3dVirtualSpeakerCount: 14 + ps4attribCpuUsage: 0 + ps4PatchPkgPath: + ps4PatchLatestPkgPath: + ps4PatchChangeinfoPath: + ps4PatchDayOne: 0 + ps4attribUserManagement: 0 + ps4attribMoveSupport: 0 + ps4attrib3DSupport: 0 + ps4attribShareSupport: 0 + ps4attribExclusiveVR: 0 + ps4disableAutoHideSplash: 0 + ps4videoRecordingFeaturesUsed: 0 + ps4contentSearchFeaturesUsed: 0 + ps4CompatibilityPS5: 0 + ps4AllowPS5Detection: 0 + ps4GPU800MHz: 1 + ps4attribEyeToEyeDistanceSettingVR: 0 + ps4IncludedModules: [] + ps4attribVROutputEnabled: 0 + monoEnv: + splashScreenBackgroundSourceLandscape: {fileID: 0} + splashScreenBackgroundSourcePortrait: {fileID: 0} + blurSplashScreenBackground: 1 + spritePackerPolicy: + webGLMemorySize: 32 + webGLExceptionSupport: 1 + webGLNameFilesAsHashes: 0 + webGLDataCaching: 1 + webGLDebugSymbols: 0 + webGLEmscriptenArgs: + webGLModulesDirectory: + webGLTemplate: APPLICATION:Default + webGLAnalyzeBuildSize: 0 + webGLUseEmbeddedResources: 0 + webGLCompressionFormat: 0 + webGLWasmArithmeticExceptions: 0 + webGLLinkerTarget: 1 + webGLThreadsSupport: 0 + webGLDecompressionFallback: 0 + scriptingDefineSymbols: {} + additionalCompilerArguments: {} + platformArchitecture: {} + scriptingBackend: {} + il2cppCompilerConfiguration: {} + managedStrippingLevel: {} + incrementalIl2cppBuild: {} + suppressCommonWarnings: 1 + allowUnsafeCode: 0 + useDeterministicCompilation: 1 + enableRoslynAnalyzers: 1 + additionalIl2CppArgs: + scriptingRuntimeVersion: 1 + gcIncremental: 1 + assemblyVersionValidation: 1 + gcWBarrierValidation: 0 + apiCompatibilityLevelPerPlatform: {} + m_RenderingPath: 1 + m_MobileRenderingPath: 1 + metroPackageName: 2D_BuiltInRenderer + metroPackageVersion: + metroCertificatePath: + metroCertificatePassword: + metroCertificateSubject: + metroCertificateIssuer: + metroCertificateNotAfter: 0000000000000000 + metroApplicationDescription: 2D_BuiltInRenderer + wsaImages: {} + metroTileShortName: + metroTileShowName: 0 + metroMediumTileShowName: 0 + metroLargeTileShowName: 0 + metroWideTileShowName: 0 + metroSupportStreamingInstall: 0 + metroLastRequiredScene: 0 + metroDefaultTileSize: 1 + metroTileForegroundText: 2 + metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} + metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1} + metroSplashScreenUseBackgroundColor: 0 + platformCapabilities: {} + metroTargetDeviceFamilies: {} + metroFTAName: + metroFTAFileTypes: [] + metroProtocolName: + XboxOneProductId: + XboxOneUpdateKey: + XboxOneSandboxId: + XboxOneContentId: + XboxOneTitleId: + XboxOneSCId: + XboxOneGameOsOverridePath: + XboxOnePackagingOverridePath: + XboxOneAppManifestOverridePath: + XboxOneVersion: 1.0.0.0 + XboxOnePackageEncryption: 0 + XboxOnePackageUpdateGranularity: 2 + XboxOneDescription: + XboxOneLanguage: + - enus + XboxOneCapability: [] + XboxOneGameRating: {} + XboxOneIsContentPackage: 0 + XboxOneEnhancedXboxCompatibilityMode: 0 + XboxOneEnableGPUVariability: 1 + XboxOneSockets: {} + XboxOneSplashScreen: {fileID: 0} + XboxOneAllowedProductIds: [] + XboxOnePersistentLocalStorageSize: 0 + XboxOneXTitleMemory: 8 + XboxOneOverrideIdentityName: + XboxOneOverrideIdentityPublisher: + vrEditorSettings: {} + cloudServicesEnabled: {} + luminIcon: + m_Name: + m_ModelFolderPath: + m_PortalFolderPath: + luminCert: + m_CertPath: + m_SignPackage: 1 + luminIsChannelApp: 0 + luminVersion: + m_VersionCode: 1 + m_VersionName: + apiCompatibilityLevel: 6 + activeInputHandler: 0 + cloudProjectId: + framebufferDepthMemorylessMode: 0 + qualitySettingsNames: [] + projectName: + organizationId: + cloudEnabled: 0 + legacyClampBlendShapeWeights: 0 + virtualTexturingSupportEnabled: 0 diff --git a/Chess/ProjectSettings/ProjectVersion.txt b/Chess/ProjectSettings/ProjectVersion.txt new file mode 100644 index 0000000..39fc061 --- /dev/null +++ b/Chess/ProjectSettings/ProjectVersion.txt @@ -0,0 +1,2 @@ +m_EditorVersion: 2021.1.13f1 +m_EditorVersionWithRevision: 2021.1.13f1 (a03098edbbe0) diff --git a/Chess/ProjectSettings/QualitySettings.asset b/Chess/ProjectSettings/QualitySettings.asset new file mode 100644 index 0000000..d24eb10 --- /dev/null +++ b/Chess/ProjectSettings/QualitySettings.asset @@ -0,0 +1,236 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!47 &1 +QualitySettings: + m_ObjectHideFlags: 0 + serializedVersion: 5 + m_CurrentQuality: 5 + m_QualitySettings: + - serializedVersion: 2 + name: Very Low + pixelLightCount: 0 + shadows: 0 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 1 + shadowDistance: 15 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + skinWeights: 1 + textureQuality: 1 + anisotropicTextures: 0 + antiAliasing: 0 + softParticles: 0 + softVegetation: 0 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + vSyncCount: 0 + lodBias: 0.3 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 4 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: Low + pixelLightCount: 0 + shadows: 0 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 1 + shadowDistance: 20 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + skinWeights: 2 + textureQuality: 0 + anisotropicTextures: 0 + antiAliasing: 0 + softParticles: 0 + softVegetation: 0 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + vSyncCount: 0 + lodBias: 0.4 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 16 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: Medium + pixelLightCount: 1 + shadows: 1 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 1 + shadowDistance: 20 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + skinWeights: 2 + textureQuality: 0 + anisotropicTextures: 1 + antiAliasing: 0 + softParticles: 0 + softVegetation: 0 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + vSyncCount: 1 + lodBias: 0.7 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 64 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: High + pixelLightCount: 2 + shadows: 2 + shadowResolution: 1 + shadowProjection: 1 + shadowCascades: 2 + shadowDistance: 40 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + skinWeights: 2 + textureQuality: 0 + anisotropicTextures: 1 + antiAliasing: 0 + softParticles: 0 + softVegetation: 1 + realtimeReflectionProbes: 1 + billboardsFaceCameraPosition: 1 + vSyncCount: 1 + lodBias: 1 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 256 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: Very High + pixelLightCount: 3 + shadows: 2 + shadowResolution: 2 + shadowProjection: 1 + shadowCascades: 2 + shadowDistance: 70 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + skinWeights: 4 + textureQuality: 0 + anisotropicTextures: 2 + antiAliasing: 2 + softParticles: 1 + softVegetation: 1 + realtimeReflectionProbes: 1 + billboardsFaceCameraPosition: 1 + vSyncCount: 1 + lodBias: 1.5 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 1024 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: Ultra + pixelLightCount: 4 + shadows: 2 + shadowResolution: 2 + shadowProjection: 1 + shadowCascades: 4 + shadowDistance: 150 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + skinWeights: 255 + textureQuality: 0 + anisotropicTextures: 2 + antiAliasing: 2 + softParticles: 1 + softVegetation: 1 + realtimeReflectionProbes: 1 + billboardsFaceCameraPosition: 1 + vSyncCount: 1 + lodBias: 2 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 4096 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + excludedTargetPlatforms: [] + m_PerPlatformDefaultQuality: + Android: 2 + Lumin: 5 + Nintendo Switch: 5 + PS4: 5 + Stadia: 5 + Standalone: 5 + WebGL: 3 + Windows Store Apps: 5 + XboxOne: 5 + iPhone: 2 + tvOS: 2 diff --git a/Chess/ProjectSettings/SceneTemplateSettings.json b/Chess/ProjectSettings/SceneTemplateSettings.json new file mode 100644 index 0000000..6f3e60f --- /dev/null +++ b/Chess/ProjectSettings/SceneTemplateSettings.json @@ -0,0 +1,167 @@ +{ + "templatePinStates": [], + "dependencyTypeInfos": [ + { + "userAdded": false, + "type": "UnityEngine.AnimationClip", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEditor.Animations.AnimatorController", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEngine.AnimatorOverrideController", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEditor.Audio.AudioMixerController", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEngine.ComputeShader", + "ignore": true, + "defaultInstantiationMode": 1, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEngine.Cubemap", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEngine.GameObject", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEditor.LightingDataAsset", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": false + }, + { + "userAdded": false, + "type": "UnityEngine.LightingSettings", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEngine.Material", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEditor.MonoScript", + "ignore": true, + "defaultInstantiationMode": 1, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEngine.PhysicMaterial", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEngine.PhysicsMaterial2D", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEngine.Rendering.PostProcessing.PostProcessProfile", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEngine.Rendering.PostProcessing.PostProcessResources", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEngine.Rendering.VolumeProfile", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEditor.SceneAsset", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": false + }, + { + "userAdded": false, + "type": "UnityEngine.Shader", + "ignore": true, + "defaultInstantiationMode": 1, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEngine.ShaderVariantCollection", + "ignore": true, + "defaultInstantiationMode": 1, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEngine.Texture", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEngine.Texture2D", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": true + }, + { + "userAdded": false, + "type": "UnityEngine.Timeline.TimelineAsset", + "ignore": false, + "defaultInstantiationMode": 0, + "supportsModification": true + } + ], + "defaultDependencyTypeInfo": { + "userAdded": false, + "type": "", + "ignore": false, + "defaultInstantiationMode": 1, + "supportsModification": true + }, + "newSceneOverride": 0 +} \ No newline at end of file diff --git a/Chess/ProjectSettings/TagManager.asset b/Chess/ProjectSettings/TagManager.asset new file mode 100644 index 0000000..1c92a78 --- /dev/null +++ b/Chess/ProjectSettings/TagManager.asset @@ -0,0 +1,43 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!78 &1 +TagManager: + serializedVersion: 2 + tags: [] + layers: + - Default + - TransparentFX + - Ignore Raycast + - + - Water + - UI + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + m_SortingLayers: + - name: Default + uniqueID: 0 + locked: 0 diff --git a/Chess/ProjectSettings/TimeManager.asset b/Chess/ProjectSettings/TimeManager.asset new file mode 100644 index 0000000..558a017 --- /dev/null +++ b/Chess/ProjectSettings/TimeManager.asset @@ -0,0 +1,9 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!5 &1 +TimeManager: + m_ObjectHideFlags: 0 + Fixed Timestep: 0.02 + Maximum Allowed Timestep: 0.33333334 + m_TimeScale: 1 + Maximum Particle Timestep: 0.03 diff --git a/Chess/ProjectSettings/UnityConnectSettings.asset b/Chess/ProjectSettings/UnityConnectSettings.asset new file mode 100644 index 0000000..6125b30 --- /dev/null +++ b/Chess/ProjectSettings/UnityConnectSettings.asset @@ -0,0 +1,35 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!310 &1 +UnityConnectSettings: + m_ObjectHideFlags: 0 + serializedVersion: 1 + m_Enabled: 0 + m_TestMode: 0 + m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events + m_EventUrl: https://cdp.cloud.unity3d.com/v1/events + m_ConfigUrl: https://config.uca.cloud.unity3d.com + m_DashboardUrl: https://dashboard.unity3d.com + m_TestInitMode: 0 + CrashReportingSettings: + m_EventUrl: https://perf-events.cloud.unity3d.com + m_Enabled: 0 + m_LogBufferSize: 10 + m_CaptureEditorExceptions: 1 + UnityPurchasingSettings: + m_Enabled: 0 + m_TestMode: 0 + UnityAnalyticsSettings: + m_Enabled: 0 + m_TestMode: 0 + m_InitializeOnStartup: 1 + UnityAdsSettings: + m_Enabled: 0 + m_InitializeOnStartup: 1 + m_TestMode: 0 + m_IosGameId: + m_AndroidGameId: + m_GameIds: {} + m_GameId: + PerformanceReportingSettings: + m_Enabled: 0 diff --git a/Chess/ProjectSettings/VFXManager.asset b/Chess/ProjectSettings/VFXManager.asset new file mode 100644 index 0000000..46f38e1 --- /dev/null +++ b/Chess/ProjectSettings/VFXManager.asset @@ -0,0 +1,14 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!937362698 &1 +VFXManager: + m_ObjectHideFlags: 0 + m_IndirectShader: {fileID: 0} + m_CopyBufferShader: {fileID: 0} + m_SortShader: {fileID: 0} + m_StripUpdateShader: {fileID: 0} + m_RenderPipeSettingsPath: + m_FixedTimeStep: 0.016666668 + m_MaxDeltaTime: 0.05 + m_CompiledVersion: 0 + m_RuntimeVersion: 0 diff --git a/Chess/ProjectSettings/VersionControlSettings.asset b/Chess/ProjectSettings/VersionControlSettings.asset new file mode 100644 index 0000000..dca2881 --- /dev/null +++ b/Chess/ProjectSettings/VersionControlSettings.asset @@ -0,0 +1,8 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!890905787 &1 +VersionControlSettings: + m_ObjectHideFlags: 0 + m_Mode: Visible Meta Files + m_CollabEditorSettings: + inProgressEnabled: 1 diff --git a/Chess/ProjectSettings/XRSettings.asset b/Chess/ProjectSettings/XRSettings.asset new file mode 100644 index 0000000..482590c --- /dev/null +++ b/Chess/ProjectSettings/XRSettings.asset @@ -0,0 +1,10 @@ +{ + "m_SettingKeys": [ + "VR Device Disabled", + "VR Device User Alert" + ], + "m_SettingValues": [ + "False", + "False" + ] +} \ No newline at end of file diff --git a/Chess/UserSettings/EditorUserSettings.asset b/Chess/UserSettings/EditorUserSettings.asset new file mode 100644 index 0000000..b543455 --- /dev/null +++ b/Chess/UserSettings/EditorUserSettings.asset @@ -0,0 +1,24 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!162 &1 +EditorUserSettings: + m_ObjectHideFlags: 0 + serializedVersion: 4 + m_ConfigSettings: + RecentlyUsedScenePath-0: + value: 22424703114646680e0b0227036c6c111b07142f1f2b233e2867083debf42d + flags: 0 + vcSharedLogLevel: + value: 0d5e400f0650 + flags: 0 + m_VCAutomaticAdd: 1 + m_VCDebugCom: 0 + m_VCDebugCmd: 0 + m_VCDebugOut: 0 + m_SemanticMergeMode: 2 + m_VCShowFailedCheckout: 1 + m_VCOverwriteFailedCheckoutAssets: 1 + m_VCProjectOverlayIcons: 1 + m_VCHierarchyOverlayIcons: 1 + m_VCOtherOverlayIcons: 1 + m_VCAllowAsyncUpdate: 1 diff --git a/Chess/UserSettings/Search.index b/Chess/UserSettings/Search.index new file mode 100644 index 0000000..299c246 --- /dev/null +++ b/Chess/UserSettings/Search.index @@ -0,0 +1,13 @@ +{ + "name": "Assets", + "roots": ["Assets"], + "includes": [], + "excludes": ["Temp/", "External/"], + "options": { + "types": true, + "properties": false, + "extended": false, + "dependencies": false + }, + "baseScore": 999 +} \ No newline at end of file diff --git a/Chess/UserSettings/Search.settings b/Chess/UserSettings/Search.settings new file mode 100644 index 0000000..4a387c0 --- /dev/null +++ b/Chess/UserSettings/Search.settings @@ -0,0 +1,56 @@ +trackSelection = true +fetchPreview = true +wantsMore = false +keepOpen = false +queryFolder = "Assets" +onBoardingDoNotAskAgain = true +showPackageIndexes = false +showStatusBar = false +scopes = { + "last_search.7F95D817" = "" + "InspectorPreview.7F95D817" = "0" + "currentGroup.7F95D817" = "scene" +} +providers = { + asset = { + active = true + priority = 25 + defaultAction = null + } + store = { + active = true + priority = 100 + defaultAction = null + } + find = { + active = true + priority = 25 + defaultAction = null + } + log = { + active = false + priority = 210 + defaultAction = null + } + packages = { + active = true + priority = 90 + defaultAction = null + } + scene = { + active = true + priority = 50 + defaultAction = null + } + query = { + active = true + priority = 100 + defaultAction = null + } +} +recentSearches = [ +] +searchItemFavorites = [ +] +savedSearchesSortOrder = 0 +showSavedSearchPanel = false \ No newline at end of file