AssetImportWorker1-prev.log 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886
  1. Using pre-set license
  2. Built from '2020.3/china_unity/release' branch; Version is '2020.3.23f1c1 (67850fddc0e1) revision 6784271'; Using compiler version '192528614'; Build Type 'Release'
  3. OS: 'Windows 10 Education; OS build 17134.1726; Version 1803; 64bit' Language: 'zh' Physical Memory: 32693 MB
  4. BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
  5. COMMAND LINE ARGUMENTS:
  6. E:\unity\unity\2020.3.23f1c1\Editor\Unity.exe
  7. -adb2
  8. -batchMode
  9. -noUpm
  10. -name
  11. AssetImportWorker1
  12. -projectPath
  13. F:/cocorobo/cocorobo-unity
  14. -logFile
  15. Logs/AssetImportWorker1.log
  16. -srvPort
  17. 52413
  18. Successfully changed project path to: F:/cocorobo/cocorobo-unity
  19. F:/cocorobo/cocorobo-unity
  20. Using Asset Import Pipeline V2.
  21. AS: AutoStreaming module initializing.Refreshing native plugins compatible for Editor in 38.45 ms, found 2 plugins.
  22. Preloading 0 native plugins for Editor in 0.00 ms.
  23. Initialize engine version: 2020.3.23f1c1 (67850fddc0e1)
  24. [Subsystems] Discovering subsystems at path E:/unity/unity/2020.3.23f1c1/Editor/Data/Resources/UnitySubsystems
  25. [Subsystems] Discovering subsystems at path F:/cocorobo/cocorobo-unity/Assets
  26. GfxDevice: creating device client; threaded=0
  27. Direct3D:
  28. Version: Direct3D 11.0 [level 11.1]
  29. Renderer: AMD FirePro W5100 (ID=0x6649)
  30. Vendor:
  31. VRAM: 4072 MB
  32. Driver: 24.20.13026.0
  33. Initialize mono
  34. Mono path[0] = 'E:/unity/unity/2020.3.23f1c1/Editor/Data/Managed'
  35. Mono path[1] = 'E:/unity/unity/2020.3.23f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
  36. Mono config path = 'E:/unity/unity/2020.3.23f1c1/Editor/Data/MonoBleedingEdge/etc'
  37. Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56016
  38. Begin MonoManager ReloadAssembly
  39. Registering precompiled unity dll's ...
  40. Register platform support module: E:/unity/unity/2020.3.23f1c1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll
  41. Register platform support module: E:/unity/unity/2020.3.23f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
  42. Registered in 0.003748 seconds.
  43. Native extension for WindowsStandalone target not found
  44. Native extension for WebGL target not found
  45. Refreshing native plugins compatible for Editor in 38.98 ms, found 2 plugins.
  46. Preloading 0 native plugins for Editor in 0.00 ms.
  47. Mono: successfully reloaded assembly
  48. - Completed reload, in 0.597 seconds
  49. Domain Reload Profiling:
  50. ReloadAssembly (598ms)
  51. BeginReloadAssembly (58ms)
  52. ExecutionOrderSort (0ms)
  53. DisableScriptedObjects (0ms)
  54. BackupInstance (0ms)
  55. ReleaseScriptingObjects (0ms)
  56. CreateAndSetChildDomain (1ms)
  57. EndReloadAssembly (464ms)
  58. LoadAssemblies (55ms)
  59. RebuildTransferFunctionScriptingTraits (0ms)
  60. SetupTypeCache (149ms)
  61. ReleaseScriptCaches (0ms)
  62. RebuildScriptCaches (34ms)
  63. SetupLoadedEditorAssemblies (176ms)
  64. LogAssemblyErrors (0ms)
  65. InitializePlatformSupportModulesInManaged (4ms)
  66. SetLoadedEditorAssemblies (0ms)
  67. RefreshPlugins (39ms)
  68. BeforeProcessingInitializeOnLoad (25ms)
  69. ProcessInitializeOnLoadAttributes (82ms)
  70. ProcessInitializeOnLoadMethodAttributes (26ms)
  71. AfterProcessingInitializeOnLoad (0ms)
  72. EditorAssembliesLoaded (0ms)
  73. ExecutionOrderSort2 (0ms)
  74. AwakeInstancesAfterBackupRestoration (0ms)
  75. Platform modules already initialized, skipping
  76. Registering precompiled user dll's ...
  77. Registered in 0.005521 seconds.
  78. Begin MonoManager ReloadAssembly
  79. Native extension for WindowsStandalone target not found
  80. Native extension for WebGL target not found
  81. Refreshing native plugins compatible for Editor in 0.36 ms, found 2 plugins.
  82. Preloading 0 native plugins for Editor in 0.00 ms.
  83. Mono: successfully reloaded assembly
  84. - Completed reload, in 0.998 seconds
  85. Domain Reload Profiling:
  86. ReloadAssembly (999ms)
  87. BeginReloadAssembly (141ms)
  88. ExecutionOrderSort (0ms)
  89. DisableScriptedObjects (4ms)
  90. BackupInstance (0ms)
  91. ReleaseScriptingObjects (0ms)
  92. CreateAndSetChildDomain (18ms)
  93. EndReloadAssembly (795ms)
  94. LoadAssemblies (89ms)
  95. RebuildTransferFunctionScriptingTraits (0ms)
  96. SetupTypeCache (277ms)
  97. ReleaseScriptCaches (0ms)
  98. RebuildScriptCaches (42ms)
  99. SetupLoadedEditorAssemblies (295ms)
  100. LogAssemblyErrors (0ms)
  101. InitializePlatformSupportModulesInManaged (5ms)
  102. SetLoadedEditorAssemblies (0ms)
  103. RefreshPlugins (0ms)
  104. BeforeProcessingInitializeOnLoad (81ms)
  105. ProcessInitializeOnLoadAttributes (189ms)
  106. ProcessInitializeOnLoadMethodAttributes (9ms)
  107. AfterProcessingInitializeOnLoad (9ms)
  108. EditorAssembliesLoaded (0ms)
  109. ExecutionOrderSort2 (0ms)
  110. AwakeInstancesAfterBackupRestoration (6ms)
  111. Platform modules already initialized, skipping
  112. ========================================================================
  113. Worker process is ready to serve import requests
  114. Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds
  115. Refreshing native plugins compatible for Editor in 0.42 ms, found 2 plugins.
  116. Preloading 0 native plugins for Editor in 0.00 ms.
  117. Unloading 1523 Unused Serialized files (Serialized files now loaded: 0)
  118. System memory in use before: 73.6 MB.
  119. System memory in use after: 73.7 MB.
  120. Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 1966.
  121. Total: 2.848447 ms (FindLiveObjects: 0.150739 ms CreateObjectMapping: 0.043178 ms MarkObjects: 2.626171 ms DeleteObjects: 0.027082 ms)
  122. AssetImportParameters requested are different than current active one (requested -> active):
  123. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  124. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  125. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  126. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  127. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  128. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  129. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  130. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  131. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  132. ========================================================================
  133. Received Import Request.
  134. path: Assets/Scenes/pay.unity
  135. artifactKey: Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  136. Start importing Assets/Scenes/pay.unity using Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f2162f5a2792da01002023b20dc5ca40') in 0.012968 seconds
  137. Import took 0.015486 seconds .
  138. ========================================================================
  139. Received Prepare
  140. Refreshing native plugins compatible for Editor in 3.76 ms, found 2 plugins.
  141. Preloading 0 native plugins for Editor in 0.00 ms.
  142. Unloading 12 Unused Serialized files (Serialized files now loaded: 0)
  143. System memory in use before: 43.5 MB.
  144. System memory in use after: 43.6 MB.
  145. Unloading 12 unused Assets to reduce memory usage. Loaded Objects now: 1966.
  146. Total: 2.738842 ms (FindLiveObjects: 0.134643 ms CreateObjectMapping: 0.045988 ms MarkObjects: 2.545692 ms DeleteObjects: 0.011497 ms)
  147. AssetImportParameters requested are different than current active one (requested -> active):
  148. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  149. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  150. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  151. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  152. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  153. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  154. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  155. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  156. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  157. ========================================================================
  158. Received Prepare
  159. Registering precompiled user dll's ...
  160. Registered in 0.005149 seconds.
  161. Begin MonoManager ReloadAssembly
  162. Native extension for WindowsStandalone target not found
  163. Native extension for WebGL target not found
  164. Refreshing native plugins compatible for Editor in 0.37 ms, found 2 plugins.
  165. Preloading 0 native plugins for Editor in 0.00 ms.
  166. Mono: successfully reloaded assembly
  167. - Completed reload, in 0.921 seconds
  168. Domain Reload Profiling:
  169. ReloadAssembly (922ms)
  170. BeginReloadAssembly (106ms)
  171. ExecutionOrderSort (0ms)
  172. DisableScriptedObjects (4ms)
  173. BackupInstance (0ms)
  174. ReleaseScriptingObjects (0ms)
  175. CreateAndSetChildDomain (30ms)
  176. EndReloadAssembly (754ms)
  177. LoadAssemblies (87ms)
  178. RebuildTransferFunctionScriptingTraits (0ms)
  179. SetupTypeCache (267ms)
  180. ReleaseScriptCaches (1ms)
  181. RebuildScriptCaches (37ms)
  182. SetupLoadedEditorAssemblies (275ms)
  183. LogAssemblyErrors (0ms)
  184. InitializePlatformSupportModulesInManaged (5ms)
  185. SetLoadedEditorAssemblies (0ms)
  186. RefreshPlugins (0ms)
  187. BeforeProcessingInitializeOnLoad (76ms)
  188. ProcessInitializeOnLoadAttributes (175ms)
  189. ProcessInitializeOnLoadMethodAttributes (8ms)
  190. AfterProcessingInitializeOnLoad (9ms)
  191. EditorAssembliesLoaded (0ms)
  192. ExecutionOrderSort2 (0ms)
  193. AwakeInstancesAfterBackupRestoration (7ms)
  194. Platform modules already initialized, skipping
  195. Refreshing native plugins compatible for Editor in 0.42 ms, found 2 plugins.
  196. Preloading 0 native plugins for Editor in 0.00 ms.
  197. Unloading 1517 Unused Serialized files (Serialized files now loaded: 0)
  198. System memory in use before: 73.5 MB.
  199. System memory in use after: 73.6 MB.
  200. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1968.
  201. Total: 3.117477 ms (FindLiveObjects: 0.150228 ms CreateObjectMapping: 0.046244 ms MarkObjects: 2.895201 ms DeleteObjects: 0.024271 ms)
  202. AssetImportParameters requested are different than current active one (requested -> active):
  203. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  204. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  205. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  206. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  207. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  208. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  209. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  210. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  211. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  212. ========================================================================
  213. Received Import Request.
  214. Time since last request: 100.769198 seconds.
  215. path: Assets/Scenes/home.unity
  216. artifactKey: Guid(a07dfc82c3015dc4887b107313eef947) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  217. Start importing Assets/Scenes/home.unity using Guid(a07dfc82c3015dc4887b107313eef947) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '31c0d1e33f3fcc2dc8ceebb288a90d4f') in 0.012779 seconds
  218. Import took 0.015732 seconds .
  219. ========================================================================
  220. Received Prepare
  221. Registering precompiled user dll's ...
  222. Registered in 0.005269 seconds.
  223. Begin MonoManager ReloadAssembly
  224. Native extension for WindowsStandalone target not found
  225. Native extension for WebGL target not found
  226. Refreshing native plugins compatible for Editor in 0.37 ms, found 2 plugins.
  227. Preloading 0 native plugins for Editor in 0.00 ms.
  228. Mono: successfully reloaded assembly
  229. - Completed reload, in 0.936 seconds
  230. Domain Reload Profiling:
  231. ReloadAssembly (937ms)
  232. BeginReloadAssembly (108ms)
  233. ExecutionOrderSort (0ms)
  234. DisableScriptedObjects (5ms)
  235. BackupInstance (0ms)
  236. ReleaseScriptingObjects (0ms)
  237. CreateAndSetChildDomain (31ms)
  238. EndReloadAssembly (763ms)
  239. LoadAssemblies (89ms)
  240. RebuildTransferFunctionScriptingTraits (0ms)
  241. SetupTypeCache (265ms)
  242. ReleaseScriptCaches (1ms)
  243. RebuildScriptCaches (37ms)
  244. SetupLoadedEditorAssemblies (281ms)
  245. LogAssemblyErrors (0ms)
  246. InitializePlatformSupportModulesInManaged (5ms)
  247. SetLoadedEditorAssemblies (0ms)
  248. RefreshPlugins (0ms)
  249. BeforeProcessingInitializeOnLoad (76ms)
  250. ProcessInitializeOnLoadAttributes (181ms)
  251. ProcessInitializeOnLoadMethodAttributes (8ms)
  252. AfterProcessingInitializeOnLoad (10ms)
  253. EditorAssembliesLoaded (0ms)
  254. ExecutionOrderSort2 (0ms)
  255. AwakeInstancesAfterBackupRestoration (7ms)
  256. Platform modules already initialized, skipping
  257. Refreshing native plugins compatible for Editor in 0.52 ms, found 2 plugins.
  258. Preloading 0 native plugins for Editor in 0.00 ms.
  259. Unloading 1517 Unused Serialized files (Serialized files now loaded: 0)
  260. System memory in use before: 73.5 MB.
  261. System memory in use after: 73.6 MB.
  262. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1970.
  263. Total: 2.966994 ms (FindLiveObjects: 0.166323 ms CreateObjectMapping: 0.041389 ms MarkObjects: 2.737309 ms DeleteObjects: 0.020950 ms)
  264. AssetImportParameters requested are different than current active one (requested -> active):
  265. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  266. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  267. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  268. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  269. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  270. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  271. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  272. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  273. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  274. ========================================================================
  275. Received Import Request.
  276. Time since last request: 523.290959 seconds.
  277. path: Assets/cursor/cube.cs
  278. artifactKey: Guid(30871d199fb248c42badcfded39b9d1f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  279. Start importing Assets/cursor/cube.cs using Guid(30871d199fb248c42badcfded39b9d1f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a31dd862f59f6d6c02c45a016e5dfb8') in 0.047719 seconds
  280. Import took 0.050127 seconds .
  281. ========================================================================
  282. Received Import Request.
  283. Time since last request: 15.214419 seconds.
  284. path: Assets/cursor/move.cs
  285. artifactKey: Guid(95401a8d5a3ed9845a7fd3807fb84d1f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  286. Start importing Assets/cursor/move.cs using Guid(95401a8d5a3ed9845a7fd3807fb84d1f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '44236079d8b044eb844ec2e701e57088') in 0.003453 seconds
  287. Import took 0.006338 seconds .
  288. ========================================================================
  289. Received Prepare
  290. Registering precompiled user dll's ...
  291. Registered in 0.006498 seconds.
  292. Begin MonoManager ReloadAssembly
  293. Native extension for WindowsStandalone target not found
  294. Native extension for WebGL target not found
  295. Refreshing native plugins compatible for Editor in 0.40 ms, found 2 plugins.
  296. Preloading 0 native plugins for Editor in 0.00 ms.
  297. Mono: successfully reloaded assembly
  298. - Completed reload, in 0.935 seconds
  299. Domain Reload Profiling:
  300. ReloadAssembly (935ms)
  301. BeginReloadAssembly (108ms)
  302. ExecutionOrderSort (0ms)
  303. DisableScriptedObjects (5ms)
  304. BackupInstance (0ms)
  305. ReleaseScriptingObjects (0ms)
  306. CreateAndSetChildDomain (32ms)
  307. EndReloadAssembly (754ms)
  308. LoadAssemblies (91ms)
  309. RebuildTransferFunctionScriptingTraits (0ms)
  310. SetupTypeCache (268ms)
  311. ReleaseScriptCaches (1ms)
  312. RebuildScriptCaches (39ms)
  313. SetupLoadedEditorAssemblies (271ms)
  314. LogAssemblyErrors (0ms)
  315. InitializePlatformSupportModulesInManaged (5ms)
  316. SetLoadedEditorAssemblies (0ms)
  317. RefreshPlugins (0ms)
  318. BeforeProcessingInitializeOnLoad (74ms)
  319. ProcessInitializeOnLoadAttributes (173ms)
  320. ProcessInitializeOnLoadMethodAttributes (8ms)
  321. AfterProcessingInitializeOnLoad (10ms)
  322. EditorAssembliesLoaded (0ms)
  323. ExecutionOrderSort2 (0ms)
  324. AwakeInstancesAfterBackupRestoration (6ms)
  325. Platform modules already initialized, skipping
  326. Refreshing native plugins compatible for Editor in 0.39 ms, found 2 plugins.
  327. Preloading 0 native plugins for Editor in 0.00 ms.
  328. Unloading 1517 Unused Serialized files (Serialized files now loaded: 0)
  329. System memory in use before: 73.5 MB.
  330. System memory in use after: 73.6 MB.
  331. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1972.
  332. Total: 2.706650 ms (FindLiveObjects: 0.170411 ms CreateObjectMapping: 0.049054 ms MarkObjects: 2.470834 ms DeleteObjects: 0.015329 ms)
  333. AssetImportParameters requested are different than current active one (requested -> active):
  334. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  335. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  336. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  337. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  338. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  339. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  340. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  341. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  342. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  343. ========================================================================
  344. Received Prepare
  345. Registering precompiled user dll's ...
  346. Registered in 0.005102 seconds.
  347. Begin MonoManager ReloadAssembly
  348. Native extension for WindowsStandalone target not found
  349. Native extension for WebGL target not found
  350. Refreshing native plugins compatible for Editor in 0.41 ms, found 2 plugins.
  351. Preloading 0 native plugins for Editor in 0.00 ms.
  352. Mono: successfully reloaded assembly
  353. - Completed reload, in 0.899 seconds
  354. Domain Reload Profiling:
  355. ReloadAssembly (899ms)
  356. BeginReloadAssembly (102ms)
  357. ExecutionOrderSort (0ms)
  358. DisableScriptedObjects (4ms)
  359. BackupInstance (0ms)
  360. ReleaseScriptingObjects (0ms)
  361. CreateAndSetChildDomain (30ms)
  362. EndReloadAssembly (731ms)
  363. LoadAssemblies (86ms)
  364. RebuildTransferFunctionScriptingTraits (0ms)
  365. SetupTypeCache (250ms)
  366. ReleaseScriptCaches (1ms)
  367. RebuildScriptCaches (36ms)
  368. SetupLoadedEditorAssemblies (273ms)
  369. LogAssemblyErrors (0ms)
  370. InitializePlatformSupportModulesInManaged (5ms)
  371. SetLoadedEditorAssemblies (0ms)
  372. RefreshPlugins (0ms)
  373. BeforeProcessingInitializeOnLoad (76ms)
  374. ProcessInitializeOnLoadAttributes (173ms)
  375. ProcessInitializeOnLoadMethodAttributes (8ms)
  376. AfterProcessingInitializeOnLoad (9ms)
  377. EditorAssembliesLoaded (0ms)
  378. ExecutionOrderSort2 (0ms)
  379. AwakeInstancesAfterBackupRestoration (6ms)
  380. Platform modules already initialized, skipping
  381. Refreshing native plugins compatible for Editor in 0.39 ms, found 2 plugins.
  382. Preloading 0 native plugins for Editor in 0.00 ms.
  383. Unloading 1517 Unused Serialized files (Serialized files now loaded: 0)
  384. System memory in use before: 73.5 MB.
  385. System memory in use after: 73.6 MB.
  386. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1974.
  387. Total: 2.620295 ms (FindLiveObjects: 0.160447 ms CreateObjectMapping: 0.051098 ms MarkObjects: 2.389078 ms DeleteObjects: 0.018140 ms)
  388. AssetImportParameters requested are different than current active one (requested -> active):
  389. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  390. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  391. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  392. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  393. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  394. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  395. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  396. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  397. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  398. ========================================================================
  399. Received Import Request.
  400. Time since last request: 461.521913 seconds.
  401. path: Assets/Scenes/police.unity
  402. artifactKey: Guid(3fd15f8ecbaaeee458776b87f509b0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  403. Start importing Assets/Scenes/police.unity using Guid(3fd15f8ecbaaeee458776b87f509b0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd7fb75bcce68f376e84f40f92e4b400') in 0.012826 seconds
  404. Import took 0.015193 seconds .
  405. ========================================================================
  406. Received Prepare
  407. Refreshing native plugins compatible for Editor in 3.71 ms, found 2 plugins.
  408. Preloading 0 native plugins for Editor in 0.00 ms.
  409. Unloading 12 Unused Serialized files (Serialized files now loaded: 0)
  410. System memory in use before: 43.8 MB.
  411. System memory in use after: 43.9 MB.
  412. Unloading 12 unused Assets to reduce memory usage. Loaded Objects now: 1974.
  413. Total: 3.055393 ms (FindLiveObjects: 0.144351 ms CreateObjectMapping: 0.048032 ms MarkObjects: 2.846147 ms DeleteObjects: 0.015840 ms)
  414. AssetImportParameters requested are different than current active one (requested -> active):
  415. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  416. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  417. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  418. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  419. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  420. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  421. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  422. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  423. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  424. ========================================================================
  425. Received Import Request.
  426. Time since last request: 11.377704 seconds.
  427. path: Assets/Scenes/home.unity
  428. artifactKey: Guid(a07dfc82c3015dc4887b107313eef947) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  429. Start importing Assets/Scenes/home.unity using Guid(a07dfc82c3015dc4887b107313eef947) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17cfc2b76095ea58b0185cae7f06f5f4') in 0.003003 seconds
  430. Import took 0.005652 seconds .
  431. ========================================================================
  432. Received Prepare
  433. Refreshing native plugins compatible for Editor in 4.04 ms, found 2 plugins.
  434. Preloading 0 native plugins for Editor in 0.00 ms.
  435. Unloading 12 Unused Serialized files (Serialized files now loaded: 0)
  436. System memory in use before: 43.8 MB.
  437. System memory in use after: 43.9 MB.
  438. Unloading 12 unused Assets to reduce memory usage. Loaded Objects now: 1974.
  439. Total: 3.134850 ms (FindLiveObjects: 0.160447 ms CreateObjectMapping: 0.044200 ms MarkObjects: 2.911042 ms DeleteObjects: 0.017884 ms)
  440. AssetImportParameters requested are different than current active one (requested -> active):
  441. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  442. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  443. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  444. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  445. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  446. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  447. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  448. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  449. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  450. ========================================================================
  451. Received Prepare
  452. Registering precompiled user dll's ...
  453. Registered in 0.005167 seconds.
  454. Begin MonoManager ReloadAssembly
  455. Native extension for WindowsStandalone target not found
  456. Native extension for WebGL target not found
  457. Refreshing native plugins compatible for Editor in 0.43 ms, found 2 plugins.
  458. Preloading 0 native plugins for Editor in 0.00 ms.
  459. Mono: successfully reloaded assembly
  460. - Completed reload, in 1.403 seconds
  461. Domain Reload Profiling:
  462. ReloadAssembly (1403ms)
  463. BeginReloadAssembly (107ms)
  464. ExecutionOrderSort (0ms)
  465. DisableScriptedObjects (5ms)
  466. BackupInstance (0ms)
  467. ReleaseScriptingObjects (0ms)
  468. CreateAndSetChildDomain (31ms)
  469. EndReloadAssembly (1220ms)
  470. LoadAssemblies (95ms)
  471. RebuildTransferFunctionScriptingTraits (0ms)
  472. SetupTypeCache (391ms)
  473. ReleaseScriptCaches (1ms)
  474. RebuildScriptCaches (43ms)
  475. SetupLoadedEditorAssemblies (565ms)
  476. LogAssemblyErrors (0ms)
  477. InitializePlatformSupportModulesInManaged (5ms)
  478. SetLoadedEditorAssemblies (0ms)
  479. RefreshPlugins (1ms)
  480. BeforeProcessingInitializeOnLoad (131ms)
  481. ProcessInitializeOnLoadAttributes (407ms)
  482. ProcessInitializeOnLoadMethodAttributes (10ms)
  483. AfterProcessingInitializeOnLoad (11ms)
  484. EditorAssembliesLoaded (0ms)
  485. ExecutionOrderSort2 (0ms)
  486. AwakeInstancesAfterBackupRestoration (6ms)
  487. Platform modules already initialized, skipping
  488. Refreshing native plugins compatible for Editor in 0.42 ms, found 2 plugins.
  489. Preloading 0 native plugins for Editor in 0.00 ms.
  490. Unloading 1517 Unused Serialized files (Serialized files now loaded: 0)
  491. System memory in use before: 73.6 MB.
  492. System memory in use after: 73.7 MB.
  493. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1976.
  494. Total: 3.507097 ms (FindLiveObjects: 0.302243 ms CreateObjectMapping: 0.066172 ms MarkObjects: 3.113133 ms DeleteObjects: 0.022739 ms)
  495. AssetImportParameters requested are different than current active one (requested -> active):
  496. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  497. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  498. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  499. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  500. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  501. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  502. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  503. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  504. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  505. ========================================================================
  506. Received Prepare
  507. Refreshing native plugins compatible for Editor in 4.19 ms, found 2 plugins.
  508. Preloading 0 native plugins for Editor in 0.00 ms.
  509. Unloading 12 Unused Serialized files (Serialized files now loaded: 0)
  510. System memory in use before: 43.8 MB.
  511. System memory in use after: 43.9 MB.
  512. Unloading 12 unused Assets to reduce memory usage. Loaded Objects now: 1976.
  513. Total: 2.844614 ms (FindLiveObjects: 0.194938 ms CreateObjectMapping: 0.056974 ms MarkObjects: 2.573285 ms DeleteObjects: 0.018140 ms)
  514. AssetImportParameters requested are different than current active one (requested -> active):
  515. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  516. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  517. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  518. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  519. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  520. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  521. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  522. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  523. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  524. ========================================================================
  525. Received Import Request.
  526. Time since last request: 3113.679396 seconds.
  527. path: Assets/Scenes/pay.unity
  528. artifactKey: Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  529. Start importing Assets/Scenes/pay.unity using Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f1448db0828de45b5a81e5363ad7fb39') in 0.022054 seconds
  530. Import took 0.029616 seconds .
  531. ========================================================================
  532. Received Import Request.
  533. Time since last request: 462.763475 seconds.
  534. path: Assets/Scenes/pay.unity
  535. artifactKey: Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  536. Start importing Assets/Scenes/pay.unity using Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '43e29ecfbde28efeb50e819a4a67ac2f') in 0.003504 seconds
  537. Import took 0.007093 seconds .
  538. ========================================================================
  539. Received Import Request.
  540. Time since last request: 35.120533 seconds.
  541. path: Assets/Scenes/pay.unity
  542. artifactKey: Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  543. Start importing Assets/Scenes/pay.unity using Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '04e0f4d66bd3e19ce6f1fff237460cee') in 0.003143 seconds
  544. Import took 0.005668 seconds .
  545. ========================================================================
  546. Received Prepare
  547. Registering precompiled user dll's ...
  548. Registered in 0.006424 seconds.
  549. Begin MonoManager ReloadAssembly
  550. Native extension for WindowsStandalone target not found
  551. Native extension for WebGL target not found
  552. Refreshing native plugins compatible for Editor in 0.61 ms, found 2 plugins.
  553. Preloading 0 native plugins for Editor in 0.00 ms.
  554. Mono: successfully reloaded assembly
  555. - Completed reload, in 1.058 seconds
  556. Domain Reload Profiling:
  557. ReloadAssembly (1059ms)
  558. BeginReloadAssembly (137ms)
  559. ExecutionOrderSort (0ms)
  560. DisableScriptedObjects (7ms)
  561. BackupInstance (0ms)
  562. ReleaseScriptingObjects (0ms)
  563. CreateAndSetChildDomain (54ms)
  564. EndReloadAssembly (849ms)
  565. LoadAssemblies (99ms)
  566. RebuildTransferFunctionScriptingTraits (0ms)
  567. SetupTypeCache (291ms)
  568. ReleaseScriptCaches (1ms)
  569. RebuildScriptCaches (38ms)
  570. SetupLoadedEditorAssemblies (315ms)
  571. LogAssemblyErrors (0ms)
  572. InitializePlatformSupportModulesInManaged (6ms)
  573. SetLoadedEditorAssemblies (1ms)
  574. RefreshPlugins (1ms)
  575. BeforeProcessingInitializeOnLoad (82ms)
  576. ProcessInitializeOnLoadAttributes (206ms)
  577. ProcessInitializeOnLoadMethodAttributes (8ms)
  578. AfterProcessingInitializeOnLoad (10ms)
  579. EditorAssembliesLoaded (0ms)
  580. ExecutionOrderSort2 (0ms)
  581. AwakeInstancesAfterBackupRestoration (7ms)
  582. Platform modules already initialized, skipping
  583. Refreshing native plugins compatible for Editor in 0.36 ms, found 2 plugins.
  584. Preloading 0 native plugins for Editor in 0.00 ms.
  585. Unloading 1517 Unused Serialized files (Serialized files now loaded: 0)
  586. System memory in use before: 73.6 MB.
  587. System memory in use after: 73.7 MB.
  588. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1978.
  589. Total: 2.791984 ms (FindLiveObjects: 0.203625 ms CreateObjectMapping: 0.059273 ms MarkObjects: 2.504303 ms DeleteObjects: 0.022994 ms)
  590. AssetImportParameters requested are different than current active one (requested -> active):
  591. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  592. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  593. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  594. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  595. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  596. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  597. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  598. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  599. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  600. ========================================================================
  601. Received Import Request.
  602. Time since last request: 2919.745572 seconds.
  603. path: Assets/Scenes/pay.unity
  604. artifactKey: Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  605. Start importing Assets/Scenes/pay.unity using Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd6ae193baea0fe61e5afa8b08d2df7e') in 0.009873 seconds
  606. Import took 0.012169 seconds .
  607. ========================================================================
  608. Received Prepare
  609. Registering precompiled user dll's ...
  610. Registered in 0.005781 seconds.
  611. Begin MonoManager ReloadAssembly
  612. Native extension for WindowsStandalone target not found
  613. Native extension for WebGL target not found
  614. Refreshing native plugins compatible for Editor in 0.38 ms, found 2 plugins.
  615. Preloading 0 native plugins for Editor in 0.00 ms.
  616. Mono: successfully reloaded assembly
  617. - Completed reload, in 1.013 seconds
  618. Domain Reload Profiling:
  619. ReloadAssembly (1013ms)
  620. BeginReloadAssembly (107ms)
  621. ExecutionOrderSort (0ms)
  622. DisableScriptedObjects (4ms)
  623. BackupInstance (0ms)
  624. ReleaseScriptingObjects (0ms)
  625. CreateAndSetChildDomain (30ms)
  626. EndReloadAssembly (838ms)
  627. LoadAssemblies (95ms)
  628. RebuildTransferFunctionScriptingTraits (0ms)
  629. SetupTypeCache (297ms)
  630. ReleaseScriptCaches (1ms)
  631. RebuildScriptCaches (41ms)
  632. SetupLoadedEditorAssemblies (310ms)
  633. LogAssemblyErrors (0ms)
  634. InitializePlatformSupportModulesInManaged (5ms)
  635. SetLoadedEditorAssemblies (0ms)
  636. RefreshPlugins (0ms)
  637. BeforeProcessingInitializeOnLoad (83ms)
  638. ProcessInitializeOnLoadAttributes (202ms)
  639. ProcessInitializeOnLoadMethodAttributes (8ms)
  640. AfterProcessingInitializeOnLoad (10ms)
  641. EditorAssembliesLoaded (0ms)
  642. ExecutionOrderSort2 (0ms)
  643. AwakeInstancesAfterBackupRestoration (7ms)
  644. Platform modules already initialized, skipping
  645. Refreshing native plugins compatible for Editor in 0.36 ms, found 2 plugins.
  646. Preloading 0 native plugins for Editor in 0.00 ms.
  647. Unloading 1517 Unused Serialized files (Serialized files now loaded: 0)
  648. System memory in use before: 73.6 MB.
  649. System memory in use after: 73.7 MB.
  650. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1980.
  651. Total: 2.774866 ms (FindLiveObjects: 0.224830 ms CreateObjectMapping: 0.048032 ms MarkObjects: 2.483608 ms DeleteObjects: 0.016862 ms)
  652. AssetImportParameters requested are different than current active one (requested -> active):
  653. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  654. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  655. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  656. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  657. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  658. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  659. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  660. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  661. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  662. ========================================================================
  663. Received Import Request.
  664. Time since last request: 99.710344 seconds.
  665. path: Assets/script/MovePolice.cs
  666. artifactKey: Guid(3293c7e49ab28d947baaf04df269710d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  667. Start importing Assets/script/MovePolice.cs using Guid(3293c7e49ab28d947baaf04df269710d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '47e68f4ccf2d45b078858919ef3c2ffe') in 0.005767 seconds
  668. Import took 0.008662 seconds .
  669. ========================================================================
  670. Received Import Request.
  671. Time since last request: 12.516467 seconds.
  672. path: Assets/script/MovePay.cs
  673. artifactKey: Guid(9aa175fe47991d843bc6f6a198e4ba0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  674. Start importing Assets/script/MovePay.cs using Guid(9aa175fe47991d843bc6f6a198e4ba0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '859c4d6bdf20caff7a1c501427594045') in 0.003630 seconds
  675. Import took 0.006750 seconds .
  676. ========================================================================
  677. Received Import Request.
  678. Time since last request: 24.027244 seconds.
  679. path: Assets/script/MovePay.cs
  680. artifactKey: Guid(9aa175fe47991d843bc6f6a198e4ba0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  681. Start importing Assets/script/MovePay.cs using Guid(9aa175fe47991d843bc6f6a198e4ba0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '948dc865ae80a3c51efaffb667ed5629') in 0.002975 seconds
  682. Import took 0.006173 seconds .
  683. ========================================================================
  684. Received Prepare
  685. Registering precompiled user dll's ...
  686. Registered in 0.008184 seconds.
  687. Begin MonoManager ReloadAssembly
  688. Native extension for WindowsStandalone target not found
  689. Native extension for WebGL target not found
  690. Refreshing native plugins compatible for Editor in 0.37 ms, found 2 plugins.
  691. Preloading 0 native plugins for Editor in 0.00 ms.
  692. Mono: successfully reloaded assembly
  693. - Completed reload, in 0.975 seconds
  694. Domain Reload Profiling:
  695. ReloadAssembly (975ms)
  696. BeginReloadAssembly (128ms)
  697. ExecutionOrderSort (0ms)
  698. DisableScriptedObjects (6ms)
  699. BackupInstance (0ms)
  700. ReleaseScriptingObjects (0ms)
  701. CreateAndSetChildDomain (31ms)
  702. EndReloadAssembly (768ms)
  703. LoadAssemblies (113ms)
  704. RebuildTransferFunctionScriptingTraits (0ms)
  705. SetupTypeCache (272ms)
  706. ReleaseScriptCaches (1ms)
  707. RebuildScriptCaches (44ms)
  708. SetupLoadedEditorAssemblies (272ms)
  709. LogAssemblyErrors (0ms)
  710. InitializePlatformSupportModulesInManaged (5ms)
  711. SetLoadedEditorAssemblies (0ms)
  712. RefreshPlugins (0ms)
  713. BeforeProcessingInitializeOnLoad (75ms)
  714. ProcessInitializeOnLoadAttributes (173ms)
  715. ProcessInitializeOnLoadMethodAttributes (8ms)
  716. AfterProcessingInitializeOnLoad (9ms)
  717. EditorAssembliesLoaded (0ms)
  718. ExecutionOrderSort2 (0ms)
  719. AwakeInstancesAfterBackupRestoration (6ms)
  720. Platform modules already initialized, skipping
  721. Refreshing native plugins compatible for Editor in 0.38 ms, found 2 plugins.
  722. Preloading 0 native plugins for Editor in 0.00 ms.
  723. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  724. System memory in use before: 73.6 MB.
  725. System memory in use after: 73.7 MB.
  726. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1983.
  727. Total: 2.743952 ms (FindLiveObjects: 0.194683 ms CreateObjectMapping: 0.071537 ms MarkObjects: 2.457038 ms DeleteObjects: 0.019673 ms)
  728. AssetImportParameters requested are different than current active one (requested -> active):
  729. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  730. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  731. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  732. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  733. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  734. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  735. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  736. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  737. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  738. ========================================================================
  739. Received Prepare
  740. Registering precompiled user dll's ...
  741. Registered in 0.006315 seconds.
  742. Begin MonoManager ReloadAssembly
  743. Native extension for WindowsStandalone target not found
  744. Native extension for WebGL target not found
  745. Refreshing native plugins compatible for Editor in 0.39 ms, found 2 plugins.
  746. Preloading 0 native plugins for Editor in 0.00 ms.
  747. Mono: successfully reloaded assembly
  748. - Completed reload, in 1.016 seconds
  749. Domain Reload Profiling:
  750. ReloadAssembly (1016ms)
  751. BeginReloadAssembly (116ms)
  752. ExecutionOrderSort (0ms)
  753. DisableScriptedObjects (5ms)
  754. BackupInstance (0ms)
  755. ReleaseScriptingObjects (0ms)
  756. CreateAndSetChildDomain (34ms)
  757. EndReloadAssembly (828ms)
  758. LoadAssemblies (101ms)
  759. RebuildTransferFunctionScriptingTraits (0ms)
  760. SetupTypeCache (302ms)
  761. ReleaseScriptCaches (1ms)
  762. RebuildScriptCaches (39ms)
  763. SetupLoadedEditorAssemblies (299ms)
  764. LogAssemblyErrors (0ms)
  765. InitializePlatformSupportModulesInManaged (5ms)
  766. SetLoadedEditorAssemblies (0ms)
  767. RefreshPlugins (0ms)
  768. BeforeProcessingInitializeOnLoad (82ms)
  769. ProcessInitializeOnLoadAttributes (193ms)
  770. ProcessInitializeOnLoadMethodAttributes (8ms)
  771. AfterProcessingInitializeOnLoad (10ms)
  772. EditorAssembliesLoaded (0ms)
  773. ExecutionOrderSort2 (0ms)
  774. AwakeInstancesAfterBackupRestoration (6ms)
  775. Platform modules already initialized, skipping
  776. Refreshing native plugins compatible for Editor in 0.49 ms, found 2 plugins.
  777. Preloading 0 native plugins for Editor in 0.00 ms.
  778. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  779. System memory in use before: 73.6 MB.
  780. System memory in use after: 73.7 MB.
  781. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1985.
  782. Total: 2.672159 ms (FindLiveObjects: 0.194427 ms CreateObjectMapping: 0.055441 ms MarkObjects: 2.401852 ms DeleteObjects: 0.018906 ms)
  783. AssetImportParameters requested are different than current active one (requested -> active):
  784. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  785. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  786. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  787. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  788. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  789. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  790. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  791. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  792. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  793. ========================================================================
  794. Received Prepare
  795. Registering precompiled user dll's ...
  796. Registered in 0.005532 seconds.
  797. Begin MonoManager ReloadAssembly
  798. Native extension for WindowsStandalone target not found
  799. Native extension for WebGL target not found
  800. Refreshing native plugins compatible for Editor in 0.37 ms, found 2 plugins.
  801. Preloading 0 native plugins for Editor in 0.00 ms.
  802. Mono: successfully reloaded assembly
  803. - Completed reload, in 1.074 seconds
  804. Domain Reload Profiling:
  805. ReloadAssembly (1075ms)
  806. BeginReloadAssembly (114ms)
  807. ExecutionOrderSort (0ms)
  808. DisableScriptedObjects (5ms)
  809. BackupInstance (0ms)
  810. ReleaseScriptingObjects (0ms)
  811. CreateAndSetChildDomain (35ms)
  812. EndReloadAssembly (881ms)
  813. LoadAssemblies (97ms)
  814. RebuildTransferFunctionScriptingTraits (0ms)
  815. SetupTypeCache (337ms)
  816. ReleaseScriptCaches (1ms)
  817. RebuildScriptCaches (41ms)
  818. SetupLoadedEditorAssemblies (312ms)
  819. LogAssemblyErrors (0ms)
  820. InitializePlatformSupportModulesInManaged (5ms)
  821. SetLoadedEditorAssemblies (0ms)
  822. RefreshPlugins (0ms)
  823. BeforeProcessingInitializeOnLoad (84ms)
  824. ProcessInitializeOnLoadAttributes (204ms)
  825. ProcessInitializeOnLoadMethodAttributes (8ms)
  826. AfterProcessingInitializeOnLoad (10ms)
  827. EditorAssembliesLoaded (0ms)
  828. ExecutionOrderSort2 (0ms)
  829. AwakeInstancesAfterBackupRestoration (6ms)
  830. Platform modules already initialized, skipping
  831. Refreshing native plugins compatible for Editor in 0.37 ms, found 2 plugins.
  832. Preloading 0 native plugins for Editor in 0.00 ms.
  833. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  834. System memory in use before: 73.6 MB.
  835. System memory in use after: 73.7 MB.
  836. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1987.
  837. Total: 2.687744 ms (FindLiveObjects: 0.149461 ms CreateObjectMapping: 0.045988 ms MarkObjects: 2.471856 ms DeleteObjects: 0.018906 ms)
  838. AssetImportParameters requested are different than current active one (requested -> active):
  839. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  840. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  841. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  842. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  843. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  844. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  845. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  846. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  847. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  848. ========================================================================
  849. Received Import Request.
  850. Time since last request: 184.442282 seconds.
  851. path: Assets/Scenes/police.unity
  852. artifactKey: Guid(3fd15f8ecbaaeee458776b87f509b0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  853. Start importing Assets/Scenes/police.unity using Guid(3fd15f8ecbaaeee458776b87f509b0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0930ee4926d20fef896ab520ba96a331') in 0.012712 seconds
  854. Import took 0.015761 seconds .
  855. ========================================================================
  856. Received Import Request.
  857. Time since last request: 5.640151 seconds.
  858. path: Assets/Scenes/pay.unity
  859. artifactKey: Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  860. Start importing Assets/Scenes/pay.unity using Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a1333a730c058f8cf22cc3a8df3dc63') in 0.002918 seconds
  861. Import took 0.005295 seconds .
  862. ========================================================================
  863. Received Prepare
  864. Registering precompiled user dll's ...
  865. Registered in 0.006922 seconds.
  866. Begin MonoManager ReloadAssembly
  867. Native extension for WindowsStandalone target not found
  868. Native extension for WebGL target not found
  869. Refreshing native plugins compatible for Editor in 0.41 ms, found 2 plugins.
  870. Preloading 0 native plugins for Editor in 0.00 ms.
  871. Mono: successfully reloaded assembly
  872. - Completed reload, in 1.060 seconds
  873. Domain Reload Profiling:
  874. ReloadAssembly (1061ms)
  875. BeginReloadAssembly (121ms)
  876. ExecutionOrderSort (0ms)
  877. DisableScriptedObjects (4ms)
  878. BackupInstance (0ms)
  879. ReleaseScriptingObjects (0ms)
  880. CreateAndSetChildDomain (31ms)
  881. EndReloadAssembly (865ms)
  882. LoadAssemblies (108ms)
  883. RebuildTransferFunctionScriptingTraits (0ms)
  884. SetupTypeCache (312ms)
  885. ReleaseScriptCaches (1ms)
  886. RebuildScriptCaches (40ms)
  887. SetupLoadedEditorAssemblies (319ms)
  888. LogAssemblyErrors (0ms)
  889. InitializePlatformSupportModulesInManaged (5ms)
  890. SetLoadedEditorAssemblies (0ms)
  891. RefreshPlugins (0ms)
  892. BeforeProcessingInitializeOnLoad (79ms)
  893. ProcessInitializeOnLoadAttributes (214ms)
  894. ProcessInitializeOnLoadMethodAttributes (9ms)
  895. AfterProcessingInitializeOnLoad (11ms)
  896. EditorAssembliesLoaded (0ms)
  897. ExecutionOrderSort2 (0ms)
  898. AwakeInstancesAfterBackupRestoration (6ms)
  899. Platform modules already initialized, skipping
  900. Refreshing native plugins compatible for Editor in 0.40 ms, found 2 plugins.
  901. Preloading 0 native plugins for Editor in 0.00 ms.
  902. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  903. System memory in use before: 73.6 MB.
  904. System memory in use after: 73.7 MB.
  905. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1989.
  906. Total: 2.531640 ms (FindLiveObjects: 0.150228 ms CreateObjectMapping: 0.046754 ms MarkObjects: 2.317285 ms DeleteObjects: 0.016351 ms)
  907. AssetImportParameters requested are different than current active one (requested -> active):
  908. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  909. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  910. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  911. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  912. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  913. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  914. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  915. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  916. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  917. ========================================================================
  918. Received Prepare
  919. Registering precompiled user dll's ...
  920. Registered in 0.006092 seconds.
  921. Begin MonoManager ReloadAssembly
  922. Native extension for WindowsStandalone target not found
  923. Native extension for WebGL target not found
  924. Refreshing native plugins compatible for Editor in 0.43 ms, found 2 plugins.
  925. Preloading 0 native plugins for Editor in 0.00 ms.
  926. Mono: successfully reloaded assembly
  927. - Completed reload, in 0.924 seconds
  928. Domain Reload Profiling:
  929. ReloadAssembly (925ms)
  930. BeginReloadAssembly (103ms)
  931. ExecutionOrderSort (0ms)
  932. DisableScriptedObjects (5ms)
  933. BackupInstance (0ms)
  934. ReleaseScriptingObjects (0ms)
  935. CreateAndSetChildDomain (28ms)
  936. EndReloadAssembly (757ms)
  937. LoadAssemblies (88ms)
  938. RebuildTransferFunctionScriptingTraits (0ms)
  939. SetupTypeCache (276ms)
  940. ReleaseScriptCaches (1ms)
  941. RebuildScriptCaches (36ms)
  942. SetupLoadedEditorAssemblies (273ms)
  943. LogAssemblyErrors (0ms)
  944. InitializePlatformSupportModulesInManaged (6ms)
  945. SetLoadedEditorAssemblies (0ms)
  946. RefreshPlugins (0ms)
  947. BeforeProcessingInitializeOnLoad (74ms)
  948. ProcessInitializeOnLoadAttributes (174ms)
  949. ProcessInitializeOnLoadMethodAttributes (8ms)
  950. AfterProcessingInitializeOnLoad (9ms)
  951. EditorAssembliesLoaded (0ms)
  952. ExecutionOrderSort2 (0ms)
  953. AwakeInstancesAfterBackupRestoration (6ms)
  954. Platform modules already initialized, skipping
  955. Refreshing native plugins compatible for Editor in 0.36 ms, found 2 plugins.
  956. Preloading 0 native plugins for Editor in 0.00 ms.
  957. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  958. System memory in use before: 73.6 MB.
  959. System memory in use after: 73.8 MB.
  960. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1991.
  961. Total: 2.790195 ms (FindLiveObjects: 0.162491 ms CreateObjectMapping: 0.038579 ms MarkObjects: 2.570986 ms DeleteObjects: 0.017373 ms)
  962. AssetImportParameters requested are different than current active one (requested -> active):
  963. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  964. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  965. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  966. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  967. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  968. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  969. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  970. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  971. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  972. ========================================================================
  973. Received Import Request.
  974. Time since last request: 97.772018 seconds.
  975. path: Assets/Scenes/pay.unity
  976. artifactKey: Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  977. Start importing Assets/Scenes/pay.unity using Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '16086dd9a1ff7381bdd7efd062060650') in 0.011793 seconds
  978. Import took 0.014302 seconds .
  979. ========================================================================
  980. Received Prepare
  981. Registering precompiled user dll's ...
  982. Registered in 0.005361 seconds.
  983. Begin MonoManager ReloadAssembly
  984. Native extension for WindowsStandalone target not found
  985. Native extension for WebGL target not found
  986. Refreshing native plugins compatible for Editor in 0.38 ms, found 2 plugins.
  987. Preloading 0 native plugins for Editor in 0.00 ms.
  988. Mono: successfully reloaded assembly
  989. - Completed reload, in 0.905 seconds
  990. Domain Reload Profiling:
  991. ReloadAssembly (905ms)
  992. BeginReloadAssembly (99ms)
  993. ExecutionOrderSort (0ms)
  994. DisableScriptedObjects (4ms)
  995. BackupInstance (0ms)
  996. ReleaseScriptingObjects (0ms)
  997. CreateAndSetChildDomain (27ms)
  998. EndReloadAssembly (742ms)
  999. LoadAssemblies (87ms)
  1000. RebuildTransferFunctionScriptingTraits (0ms)
  1001. SetupTypeCache (254ms)
  1002. ReleaseScriptCaches (1ms)
  1003. RebuildScriptCaches (38ms)
  1004. SetupLoadedEditorAssemblies (272ms)
  1005. LogAssemblyErrors (0ms)
  1006. InitializePlatformSupportModulesInManaged (6ms)
  1007. SetLoadedEditorAssemblies (1ms)
  1008. RefreshPlugins (0ms)
  1009. BeforeProcessingInitializeOnLoad (74ms)
  1010. ProcessInitializeOnLoadAttributes (173ms)
  1011. ProcessInitializeOnLoadMethodAttributes (8ms)
  1012. AfterProcessingInitializeOnLoad (9ms)
  1013. EditorAssembliesLoaded (0ms)
  1014. ExecutionOrderSort2 (0ms)
  1015. AwakeInstancesAfterBackupRestoration (6ms)
  1016. Platform modules already initialized, skipping
  1017. Refreshing native plugins compatible for Editor in 0.37 ms, found 2 plugins.
  1018. Preloading 0 native plugins for Editor in 0.00 ms.
  1019. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1020. System memory in use before: 73.7 MB.
  1021. System memory in use after: 73.8 MB.
  1022. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1993.
  1023. Total: 2.725557 ms (FindLiveObjects: 0.179864 ms CreateObjectMapping: 0.058251 ms MarkObjects: 2.462658 ms DeleteObjects: 0.023505 ms)
  1024. AssetImportParameters requested are different than current active one (requested -> active):
  1025. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1026. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1027. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1028. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1029. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1030. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1031. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1032. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1033. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1034. ========================================================================
  1035. Received Prepare
  1036. Registering precompiled user dll's ...
  1037. Registered in 0.005535 seconds.
  1038. Begin MonoManager ReloadAssembly
  1039. Native extension for WindowsStandalone target not found
  1040. Native extension for WebGL target not found
  1041. Refreshing native plugins compatible for Editor in 0.57 ms, found 2 plugins.
  1042. Preloading 0 native plugins for Editor in 0.00 ms.
  1043. Mono: successfully reloaded assembly
  1044. - Completed reload, in 1.046 seconds
  1045. Domain Reload Profiling:
  1046. ReloadAssembly (1046ms)
  1047. BeginReloadAssembly (110ms)
  1048. ExecutionOrderSort (0ms)
  1049. DisableScriptedObjects (5ms)
  1050. BackupInstance (0ms)
  1051. ReleaseScriptingObjects (0ms)
  1052. CreateAndSetChildDomain (30ms)
  1053. EndReloadAssembly (869ms)
  1054. LoadAssemblies (94ms)
  1055. RebuildTransferFunctionScriptingTraits (0ms)
  1056. SetupTypeCache (300ms)
  1057. ReleaseScriptCaches (1ms)
  1058. RebuildScriptCaches (44ms)
  1059. SetupLoadedEditorAssemblies (308ms)
  1060. LogAssemblyErrors (0ms)
  1061. InitializePlatformSupportModulesInManaged (6ms)
  1062. SetLoadedEditorAssemblies (0ms)
  1063. RefreshPlugins (1ms)
  1064. BeforeProcessingInitializeOnLoad (83ms)
  1065. ProcessInitializeOnLoadAttributes (199ms)
  1066. ProcessInitializeOnLoadMethodAttributes (10ms)
  1067. AfterProcessingInitializeOnLoad (9ms)
  1068. EditorAssembliesLoaded (0ms)
  1069. ExecutionOrderSort2 (0ms)
  1070. AwakeInstancesAfterBackupRestoration (11ms)
  1071. Platform modules already initialized, skipping
  1072. Refreshing native plugins compatible for Editor in 0.43 ms, found 2 plugins.
  1073. Preloading 0 native plugins for Editor in 0.00 ms.
  1074. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1075. System memory in use before: 73.7 MB.
  1076. System memory in use after: 73.8 MB.
  1077. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1995.
  1078. Total: 2.893157 ms (FindLiveObjects: 0.158659 ms CreateObjectMapping: 0.051864 ms MarkObjects: 2.654786 ms DeleteObjects: 0.026315 ms)
  1079. AssetImportParameters requested are different than current active one (requested -> active):
  1080. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1081. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1082. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1083. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1084. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1085. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1086. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1087. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1088. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1089. ========================================================================
  1090. Received Prepare
  1091. Registering precompiled user dll's ...
  1092. Registered in 0.006618 seconds.
  1093. Begin MonoManager ReloadAssembly
  1094. Native extension for WindowsStandalone target not found
  1095. Native extension for WebGL target not found
  1096. Refreshing native plugins compatible for Editor in 0.38 ms, found 2 plugins.
  1097. Preloading 0 native plugins for Editor in 0.00 ms.
  1098. Mono: successfully reloaded assembly
  1099. - Completed reload, in 0.927 seconds
  1100. Domain Reload Profiling:
  1101. ReloadAssembly (927ms)
  1102. BeginReloadAssembly (98ms)
  1103. ExecutionOrderSort (0ms)
  1104. DisableScriptedObjects (4ms)
  1105. BackupInstance (0ms)
  1106. ReleaseScriptingObjects (0ms)
  1107. CreateAndSetChildDomain (27ms)
  1108. EndReloadAssembly (766ms)
  1109. LoadAssemblies (85ms)
  1110. RebuildTransferFunctionScriptingTraits (0ms)
  1111. SetupTypeCache (269ms)
  1112. ReleaseScriptCaches (1ms)
  1113. RebuildScriptCaches (41ms)
  1114. SetupLoadedEditorAssemblies (275ms)
  1115. LogAssemblyErrors (0ms)
  1116. InitializePlatformSupportModulesInManaged (5ms)
  1117. SetLoadedEditorAssemblies (0ms)
  1118. RefreshPlugins (0ms)
  1119. BeforeProcessingInitializeOnLoad (74ms)
  1120. ProcessInitializeOnLoadAttributes (178ms)
  1121. ProcessInitializeOnLoadMethodAttributes (8ms)
  1122. AfterProcessingInitializeOnLoad (9ms)
  1123. EditorAssembliesLoaded (0ms)
  1124. ExecutionOrderSort2 (0ms)
  1125. AwakeInstancesAfterBackupRestoration (6ms)
  1126. Platform modules already initialized, skipping
  1127. Refreshing native plugins compatible for Editor in 0.36 ms, found 2 plugins.
  1128. Preloading 0 native plugins for Editor in 0.00 ms.
  1129. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1130. System memory in use before: 73.7 MB.
  1131. System memory in use after: 73.8 MB.
  1132. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1997.
  1133. Total: 2.844870 ms (FindLiveObjects: 0.202347 ms CreateObjectMapping: 0.047010 ms MarkObjects: 2.576606 ms DeleteObjects: 0.017373 ms)
  1134. AssetImportParameters requested are different than current active one (requested -> active):
  1135. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1136. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1137. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1138. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1139. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1140. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1141. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1142. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1143. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1144. ========================================================================
  1145. Received Import Request.
  1146. Time since last request: 81.680832 seconds.
  1147. path: Assets/Scenes/pay.unity
  1148. artifactKey: Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1149. Start importing Assets/Scenes/pay.unity using Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e7df6cad2b93bed1013d5a8efce0cb7') in 0.013622 seconds
  1150. Import took 0.016565 seconds .
  1151. ========================================================================
  1152. Received Prepare
  1153. Registering precompiled user dll's ...
  1154. Registered in 0.006404 seconds.
  1155. Begin MonoManager ReloadAssembly
  1156. Native extension for WindowsStandalone target not found
  1157. Native extension for WebGL target not found
  1158. Refreshing native plugins compatible for Editor in 0.38 ms, found 2 plugins.
  1159. Preloading 0 native plugins for Editor in 0.00 ms.
  1160. Mono: successfully reloaded assembly
  1161. - Completed reload, in 1.214 seconds
  1162. Domain Reload Profiling:
  1163. ReloadAssembly (1215ms)
  1164. BeginReloadAssembly (126ms)
  1165. ExecutionOrderSort (0ms)
  1166. DisableScriptedObjects (6ms)
  1167. BackupInstance (0ms)
  1168. ReleaseScriptingObjects (0ms)
  1169. CreateAndSetChildDomain (31ms)
  1170. EndReloadAssembly (1011ms)
  1171. LoadAssemblies (119ms)
  1172. RebuildTransferFunctionScriptingTraits (0ms)
  1173. SetupTypeCache (376ms)
  1174. ReleaseScriptCaches (1ms)
  1175. RebuildScriptCaches (48ms)
  1176. SetupLoadedEditorAssemblies (354ms)
  1177. LogAssemblyErrors (0ms)
  1178. InitializePlatformSupportModulesInManaged (7ms)
  1179. SetLoadedEditorAssemblies (1ms)
  1180. RefreshPlugins (0ms)
  1181. BeforeProcessingInitializeOnLoad (98ms)
  1182. ProcessInitializeOnLoadAttributes (225ms)
  1183. ProcessInitializeOnLoadMethodAttributes (11ms)
  1184. AfterProcessingInitializeOnLoad (11ms)
  1185. EditorAssembliesLoaded (0ms)
  1186. ExecutionOrderSort2 (0ms)
  1187. AwakeInstancesAfterBackupRestoration (8ms)
  1188. Platform modules already initialized, skipping
  1189. Refreshing native plugins compatible for Editor in 1.19 ms, found 2 plugins.
  1190. Preloading 0 native plugins for Editor in 0.00 ms.
  1191. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1192. System memory in use before: 73.7 MB.
  1193. System memory in use after: 73.8 MB.
  1194. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1999.
  1195. Total: 3.495856 ms (FindLiveObjects: 0.315529 ms CreateObjectMapping: 0.114459 ms MarkObjects: 3.044151 ms DeleteObjects: 0.020439 ms)
  1196. AssetImportParameters requested are different than current active one (requested -> active):
  1197. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1198. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1199. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1200. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1201. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1202. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1203. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1204. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1205. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1206. ========================================================================
  1207. Received Prepare
  1208. Registering precompiled user dll's ...
  1209. Registered in 0.007055 seconds.
  1210. Begin MonoManager ReloadAssembly
  1211. Native extension for WindowsStandalone target not found
  1212. Native extension for WebGL target not found
  1213. Refreshing native plugins compatible for Editor in 0.46 ms, found 2 plugins.
  1214. Preloading 0 native plugins for Editor in 0.00 ms.
  1215. Mono: successfully reloaded assembly
  1216. - Completed reload, in 1.045 seconds
  1217. Domain Reload Profiling:
  1218. ReloadAssembly (1046ms)
  1219. BeginReloadAssembly (119ms)
  1220. ExecutionOrderSort (0ms)
  1221. DisableScriptedObjects (5ms)
  1222. BackupInstance (0ms)
  1223. ReleaseScriptingObjects (0ms)
  1224. CreateAndSetChildDomain (31ms)
  1225. EndReloadAssembly (848ms)
  1226. LoadAssemblies (108ms)
  1227. RebuildTransferFunctionScriptingTraits (0ms)
  1228. SetupTypeCache (290ms)
  1229. ReleaseScriptCaches (1ms)
  1230. RebuildScriptCaches (39ms)
  1231. SetupLoadedEditorAssemblies (320ms)
  1232. LogAssemblyErrors (0ms)
  1233. InitializePlatformSupportModulesInManaged (6ms)
  1234. SetLoadedEditorAssemblies (0ms)
  1235. RefreshPlugins (1ms)
  1236. BeforeProcessingInitializeOnLoad (85ms)
  1237. ProcessInitializeOnLoadAttributes (210ms)
  1238. ProcessInitializeOnLoadMethodAttributes (8ms)
  1239. AfterProcessingInitializeOnLoad (10ms)
  1240. EditorAssembliesLoaded (0ms)
  1241. ExecutionOrderSort2 (0ms)
  1242. AwakeInstancesAfterBackupRestoration (7ms)
  1243. Platform modules already initialized, skipping
  1244. Refreshing native plugins compatible for Editor in 0.44 ms, found 2 plugins.
  1245. Preloading 0 native plugins for Editor in 0.00 ms.
  1246. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1247. System memory in use before: 73.7 MB.
  1248. System memory in use after: 73.8 MB.
  1249. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2001.
  1250. Total: 2.836439 ms (FindLiveObjects: 0.171944 ms CreateObjectMapping: 0.054675 ms MarkObjects: 2.587848 ms DeleteObjects: 0.020695 ms)
  1251. AssetImportParameters requested are different than current active one (requested -> active):
  1252. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1253. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1254. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1255. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1256. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1257. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1258. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1259. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1260. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1261. ========================================================================
  1262. Received Prepare
  1263. Registering precompiled user dll's ...
  1264. Registered in 0.005906 seconds.
  1265. Begin MonoManager ReloadAssembly
  1266. Native extension for WindowsStandalone target not found
  1267. Native extension for WebGL target not found
  1268. Refreshing native plugins compatible for Editor in 0.36 ms, found 2 plugins.
  1269. Preloading 0 native plugins for Editor in 0.00 ms.
  1270. Mono: successfully reloaded assembly
  1271. - Completed reload, in 0.930 seconds
  1272. Domain Reload Profiling:
  1273. ReloadAssembly (931ms)
  1274. BeginReloadAssembly (97ms)
  1275. ExecutionOrderSort (0ms)
  1276. DisableScriptedObjects (4ms)
  1277. BackupInstance (0ms)
  1278. ReleaseScriptingObjects (0ms)
  1279. CreateAndSetChildDomain (26ms)
  1280. EndReloadAssembly (770ms)
  1281. LoadAssemblies (89ms)
  1282. RebuildTransferFunctionScriptingTraits (0ms)
  1283. SetupTypeCache (254ms)
  1284. ReleaseScriptCaches (1ms)
  1285. RebuildScriptCaches (46ms)
  1286. SetupLoadedEditorAssemblies (284ms)
  1287. LogAssemblyErrors (0ms)
  1288. InitializePlatformSupportModulesInManaged (5ms)
  1289. SetLoadedEditorAssemblies (0ms)
  1290. RefreshPlugins (0ms)
  1291. BeforeProcessingInitializeOnLoad (83ms)
  1292. ProcessInitializeOnLoadAttributes (176ms)
  1293. ProcessInitializeOnLoadMethodAttributes (9ms)
  1294. AfterProcessingInitializeOnLoad (10ms)
  1295. EditorAssembliesLoaded (0ms)
  1296. ExecutionOrderSort2 (0ms)
  1297. AwakeInstancesAfterBackupRestoration (8ms)
  1298. Platform modules already initialized, skipping
  1299. Refreshing native plugins compatible for Editor in 0.37 ms, found 2 plugins.
  1300. Preloading 0 native plugins for Editor in 0.00 ms.
  1301. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1302. System memory in use before: 73.7 MB.
  1303. System memory in use after: 73.8 MB.
  1304. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2003.
  1305. Total: 2.670371 ms (FindLiveObjects: 0.169389 ms CreateObjectMapping: 0.046754 ms MarkObjects: 2.435321 ms DeleteObjects: 0.017629 ms)
  1306. AssetImportParameters requested are different than current active one (requested -> active):
  1307. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1308. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1309. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1310. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1311. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1312. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1313. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1314. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1315. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1316. ========================================================================
  1317. Received Prepare
  1318. Registering precompiled user dll's ...
  1319. Registered in 0.005053 seconds.
  1320. Begin MonoManager ReloadAssembly
  1321. Native extension for WindowsStandalone target not found
  1322. Native extension for WebGL target not found
  1323. Refreshing native plugins compatible for Editor in 0.37 ms, found 2 plugins.
  1324. Preloading 0 native plugins for Editor in 0.00 ms.
  1325. Mono: successfully reloaded assembly
  1326. - Completed reload, in 0.925 seconds
  1327. Domain Reload Profiling:
  1328. ReloadAssembly (926ms)
  1329. BeginReloadAssembly (102ms)
  1330. ExecutionOrderSort (0ms)
  1331. DisableScriptedObjects (4ms)
  1332. BackupInstance (0ms)
  1333. ReleaseScriptingObjects (0ms)
  1334. CreateAndSetChildDomain (28ms)
  1335. EndReloadAssembly (759ms)
  1336. LoadAssemblies (89ms)
  1337. RebuildTransferFunctionScriptingTraits (0ms)
  1338. SetupTypeCache (262ms)
  1339. ReleaseScriptCaches (1ms)
  1340. RebuildScriptCaches (37ms)
  1341. SetupLoadedEditorAssemblies (276ms)
  1342. LogAssemblyErrors (0ms)
  1343. InitializePlatformSupportModulesInManaged (5ms)
  1344. SetLoadedEditorAssemblies (0ms)
  1345. RefreshPlugins (0ms)
  1346. BeforeProcessingInitializeOnLoad (75ms)
  1347. ProcessInitializeOnLoadAttributes (177ms)
  1348. ProcessInitializeOnLoadMethodAttributes (8ms)
  1349. AfterProcessingInitializeOnLoad (9ms)
  1350. EditorAssembliesLoaded (0ms)
  1351. ExecutionOrderSort2 (0ms)
  1352. AwakeInstancesAfterBackupRestoration (13ms)
  1353. Platform modules already initialized, skipping
  1354. Refreshing native plugins compatible for Editor in 0.39 ms, found 2 plugins.
  1355. Preloading 0 native plugins for Editor in 0.00 ms.
  1356. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1357. System memory in use before: 73.7 MB.
  1358. System memory in use after: 73.8 MB.
  1359. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2005.
  1360. Total: 2.532151 ms (FindLiveObjects: 0.156359 ms CreateObjectMapping: 0.049820 ms MarkObjects: 2.307832 ms DeleteObjects: 0.016862 ms)
  1361. AssetImportParameters requested are different than current active one (requested -> active):
  1362. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1363. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1364. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1365. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1366. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1367. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1368. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1369. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1370. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1371. ========================================================================
  1372. Received Prepare
  1373. Registering precompiled user dll's ...
  1374. Registered in 0.005044 seconds.
  1375. Begin MonoManager ReloadAssembly
  1376. Native extension for WindowsStandalone target not found
  1377. Native extension for WebGL target not found
  1378. Refreshing native plugins compatible for Editor in 0.60 ms, found 2 plugins.
  1379. Preloading 0 native plugins for Editor in 0.00 ms.
  1380. Mono: successfully reloaded assembly
  1381. - Completed reload, in 0.931 seconds
  1382. Domain Reload Profiling:
  1383. ReloadAssembly (931ms)
  1384. BeginReloadAssembly (99ms)
  1385. ExecutionOrderSort (0ms)
  1386. DisableScriptedObjects (4ms)
  1387. BackupInstance (0ms)
  1388. ReleaseScriptingObjects (0ms)
  1389. CreateAndSetChildDomain (27ms)
  1390. EndReloadAssembly (769ms)
  1391. LoadAssemblies (86ms)
  1392. RebuildTransferFunctionScriptingTraits (0ms)
  1393. SetupTypeCache (256ms)
  1394. ReleaseScriptCaches (1ms)
  1395. RebuildScriptCaches (36ms)
  1396. SetupLoadedEditorAssemblies (276ms)
  1397. LogAssemblyErrors (0ms)
  1398. InitializePlatformSupportModulesInManaged (5ms)
  1399. SetLoadedEditorAssemblies (1ms)
  1400. RefreshPlugins (1ms)
  1401. BeforeProcessingInitializeOnLoad (75ms)
  1402. ProcessInitializeOnLoadAttributes (177ms)
  1403. ProcessInitializeOnLoadMethodAttributes (8ms)
  1404. AfterProcessingInitializeOnLoad (9ms)
  1405. EditorAssembliesLoaded (0ms)
  1406. ExecutionOrderSort2 (0ms)
  1407. AwakeInstancesAfterBackupRestoration (8ms)
  1408. Platform modules already initialized, skipping
  1409. Refreshing native plugins compatible for Editor in 0.36 ms, found 2 plugins.
  1410. Preloading 0 native plugins for Editor in 0.00 ms.
  1411. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1412. System memory in use before: 73.7 MB.
  1413. System memory in use after: 73.8 MB.
  1414. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2007.
  1415. Total: 2.834395 ms (FindLiveObjects: 0.196471 ms CreateObjectMapping: 0.051864 ms MarkObjects: 2.568431 ms DeleteObjects: 0.016351 ms)
  1416. AssetImportParameters requested are different than current active one (requested -> active):
  1417. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1418. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1419. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1420. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1421. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1422. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1423. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1424. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1425. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1426. ========================================================================
  1427. Received Import Request.
  1428. Time since last request: 146.155814 seconds.
  1429. path: Assets/Scenes/pay.unity
  1430. artifactKey: Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1431. Start importing Assets/Scenes/pay.unity using Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9b96807ab8288e3daf758e4c47f5026a') in 0.012948 seconds
  1432. Import took 0.015250 seconds .
  1433. ========================================================================
  1434. Received Prepare
  1435. Registering precompiled user dll's ...
  1436. Registered in 0.006151 seconds.
  1437. Begin MonoManager ReloadAssembly
  1438. Native extension for WindowsStandalone target not found
  1439. Native extension for WebGL target not found
  1440. Refreshing native plugins compatible for Editor in 0.59 ms, found 2 plugins.
  1441. Preloading 0 native plugins for Editor in 0.00 ms.
  1442. Mono: successfully reloaded assembly
  1443. - Completed reload, in 1.133 seconds
  1444. Domain Reload Profiling:
  1445. ReloadAssembly (1134ms)
  1446. BeginReloadAssembly (123ms)
  1447. ExecutionOrderSort (0ms)
  1448. DisableScriptedObjects (7ms)
  1449. BackupInstance (0ms)
  1450. ReleaseScriptingObjects (0ms)
  1451. CreateAndSetChildDomain (36ms)
  1452. EndReloadAssembly (941ms)
  1453. LoadAssemblies (96ms)
  1454. RebuildTransferFunctionScriptingTraits (0ms)
  1455. SetupTypeCache (334ms)
  1456. ReleaseScriptCaches (1ms)
  1457. RebuildScriptCaches (48ms)
  1458. SetupLoadedEditorAssemblies (324ms)
  1459. LogAssemblyErrors (0ms)
  1460. InitializePlatformSupportModulesInManaged (6ms)
  1461. SetLoadedEditorAssemblies (1ms)
  1462. RefreshPlugins (1ms)
  1463. BeforeProcessingInitializeOnLoad (92ms)
  1464. ProcessInitializeOnLoadAttributes (203ms)
  1465. ProcessInitializeOnLoadMethodAttributes (11ms)
  1466. AfterProcessingInitializeOnLoad (11ms)
  1467. EditorAssembliesLoaded (0ms)
  1468. ExecutionOrderSort2 (0ms)
  1469. AwakeInstancesAfterBackupRestoration (11ms)
  1470. Platform modules already initialized, skipping
  1471. Refreshing native plugins compatible for Editor in 0.60 ms, found 2 plugins.
  1472. Preloading 0 native plugins for Editor in 0.00 ms.
  1473. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1474. System memory in use before: 73.7 MB.
  1475. System memory in use after: 73.8 MB.
  1476. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2009.
  1477. Total: 3.320846 ms (FindLiveObjects: 0.148950 ms CreateObjectMapping: 0.044455 ms MarkObjects: 3.103425 ms DeleteObjects: 0.022228 ms)
  1478. AssetImportParameters requested are different than current active one (requested -> active):
  1479. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1480. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1481. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1482. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1483. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1484. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1485. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1486. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1487. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1488. ========================================================================
  1489. Received Prepare
  1490. Registering precompiled user dll's ...
  1491. Registered in 0.006942 seconds.
  1492. Begin MonoManager ReloadAssembly
  1493. Native extension for WindowsStandalone target not found
  1494. Native extension for WebGL target not found
  1495. Refreshing native plugins compatible for Editor in 0.54 ms, found 2 plugins.
  1496. Preloading 0 native plugins for Editor in 0.00 ms.
  1497. Mono: successfully reloaded assembly
  1498. - Completed reload, in 1.050 seconds
  1499. Domain Reload Profiling:
  1500. ReloadAssembly (1050ms)
  1501. BeginReloadAssembly (120ms)
  1502. ExecutionOrderSort (0ms)
  1503. DisableScriptedObjects (6ms)
  1504. BackupInstance (0ms)
  1505. ReleaseScriptingObjects (0ms)
  1506. CreateAndSetChildDomain (33ms)
  1507. EndReloadAssembly (848ms)
  1508. LoadAssemblies (107ms)
  1509. RebuildTransferFunctionScriptingTraits (0ms)
  1510. SetupTypeCache (304ms)
  1511. ReleaseScriptCaches (1ms)
  1512. RebuildScriptCaches (40ms)
  1513. SetupLoadedEditorAssemblies (305ms)
  1514. LogAssemblyErrors (0ms)
  1515. InitializePlatformSupportModulesInManaged (6ms)
  1516. SetLoadedEditorAssemblies (1ms)
  1517. RefreshPlugins (1ms)
  1518. BeforeProcessingInitializeOnLoad (83ms)
  1519. ProcessInitializeOnLoadAttributes (195ms)
  1520. ProcessInitializeOnLoadMethodAttributes (9ms)
  1521. AfterProcessingInitializeOnLoad (10ms)
  1522. EditorAssembliesLoaded (0ms)
  1523. ExecutionOrderSort2 (0ms)
  1524. AwakeInstancesAfterBackupRestoration (7ms)
  1525. Platform modules already initialized, skipping
  1526. Refreshing native plugins compatible for Editor in 0.61 ms, found 2 plugins.
  1527. Preloading 0 native plugins for Editor in 0.00 ms.
  1528. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1529. System memory in use before: 73.7 MB.
  1530. System memory in use after: 73.8 MB.
  1531. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2011.
  1532. Total: 3.026267 ms (FindLiveObjects: 0.180375 ms CreateObjectMapping: 0.049820 ms MarkObjects: 2.774355 ms DeleteObjects: 0.020184 ms)
  1533. AssetImportParameters requested are different than current active one (requested -> active):
  1534. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1535. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1536. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1537. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1538. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1539. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1540. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1541. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1542. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1543. ========================================================================
  1544. Received Prepare
  1545. Registering precompiled user dll's ...
  1546. Registered in 0.007139 seconds.
  1547. Begin MonoManager ReloadAssembly
  1548. Native extension for WindowsStandalone target not found
  1549. Native extension for WebGL target not found
  1550. Refreshing native plugins compatible for Editor in 0.49 ms, found 2 plugins.
  1551. Preloading 0 native plugins for Editor in 0.00 ms.
  1552. Mono: successfully reloaded assembly
  1553. - Completed reload, in 0.982 seconds
  1554. Domain Reload Profiling:
  1555. ReloadAssembly (982ms)
  1556. BeginReloadAssembly (107ms)
  1557. ExecutionOrderSort (0ms)
  1558. DisableScriptedObjects (4ms)
  1559. BackupInstance (0ms)
  1560. ReleaseScriptingObjects (0ms)
  1561. CreateAndSetChildDomain (31ms)
  1562. EndReloadAssembly (809ms)
  1563. LoadAssemblies (92ms)
  1564. RebuildTransferFunctionScriptingTraits (0ms)
  1565. SetupTypeCache (284ms)
  1566. ReleaseScriptCaches (1ms)
  1567. RebuildScriptCaches (40ms)
  1568. SetupLoadedEditorAssemblies (294ms)
  1569. LogAssemblyErrors (0ms)
  1570. InitializePlatformSupportModulesInManaged (5ms)
  1571. SetLoadedEditorAssemblies (0ms)
  1572. RefreshPlugins (1ms)
  1573. BeforeProcessingInitializeOnLoad (80ms)
  1574. ProcessInitializeOnLoadAttributes (188ms)
  1575. ProcessInitializeOnLoadMethodAttributes (10ms)
  1576. AfterProcessingInitializeOnLoad (9ms)
  1577. EditorAssembliesLoaded (0ms)
  1578. ExecutionOrderSort2 (0ms)
  1579. AwakeInstancesAfterBackupRestoration (7ms)
  1580. Platform modules already initialized, skipping
  1581. Refreshing native plugins compatible for Editor in 0.38 ms, found 2 plugins.
  1582. Preloading 0 native plugins for Editor in 0.00 ms.
  1583. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1584. System memory in use before: 73.7 MB.
  1585. System memory in use after: 73.8 MB.
  1586. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2013.
  1587. Total: 3.004040 ms (FindLiveObjects: 0.192383 ms CreateObjectMapping: 0.059018 ms MarkObjects: 2.728622 ms DeleteObjects: 0.022483 ms)
  1588. AssetImportParameters requested are different than current active one (requested -> active):
  1589. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1590. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1591. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1592. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1593. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1594. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1595. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1596. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1597. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1598. ========================================================================
  1599. Received Prepare
  1600. Registering precompiled user dll's ...
  1601. Registered in 0.005254 seconds.
  1602. Begin MonoManager ReloadAssembly
  1603. Native extension for WindowsStandalone target not found
  1604. Native extension for WebGL target not found
  1605. Refreshing native plugins compatible for Editor in 0.40 ms, found 2 plugins.
  1606. Preloading 0 native plugins for Editor in 0.00 ms.
  1607. Mono: successfully reloaded assembly
  1608. - Completed reload, in 0.996 seconds
  1609. Domain Reload Profiling:
  1610. ReloadAssembly (997ms)
  1611. BeginReloadAssembly (99ms)
  1612. ExecutionOrderSort (0ms)
  1613. DisableScriptedObjects (4ms)
  1614. BackupInstance (0ms)
  1615. ReleaseScriptingObjects (0ms)
  1616. CreateAndSetChildDomain (27ms)
  1617. EndReloadAssembly (835ms)
  1618. LoadAssemblies (85ms)
  1619. RebuildTransferFunctionScriptingTraits (0ms)
  1620. SetupTypeCache (253ms)
  1621. ReleaseScriptCaches (1ms)
  1622. RebuildScriptCaches (36ms)
  1623. SetupLoadedEditorAssemblies (373ms)
  1624. LogAssemblyErrors (0ms)
  1625. InitializePlatformSupportModulesInManaged (5ms)
  1626. SetLoadedEditorAssemblies (0ms)
  1627. RefreshPlugins (0ms)
  1628. BeforeProcessingInitializeOnLoad (158ms)
  1629. ProcessInitializeOnLoadAttributes (188ms)
  1630. ProcessInitializeOnLoadMethodAttributes (9ms)
  1631. AfterProcessingInitializeOnLoad (11ms)
  1632. EditorAssembliesLoaded (0ms)
  1633. ExecutionOrderSort2 (0ms)
  1634. AwakeInstancesAfterBackupRestoration (6ms)
  1635. Platform modules already initialized, skipping
  1636. Refreshing native plugins compatible for Editor in 0.61 ms, found 2 plugins.
  1637. Preloading 0 native plugins for Editor in 0.00 ms.
  1638. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1639. System memory in use before: 73.7 MB.
  1640. System memory in use after: 73.8 MB.
  1641. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2015.
  1642. Total: 2.647888 ms (FindLiveObjects: 0.164535 ms CreateObjectMapping: 0.042667 ms MarkObjects: 2.421780 ms DeleteObjects: 0.017884 ms)
  1643. AssetImportParameters requested are different than current active one (requested -> active):
  1644. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1645. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1646. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1647. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1648. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1649. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1650. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1651. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1652. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1653. ========================================================================
  1654. Received Prepare
  1655. Registering precompiled user dll's ...
  1656. Registered in 0.007487 seconds.
  1657. Begin MonoManager ReloadAssembly
  1658. Native extension for WindowsStandalone target not found
  1659. Native extension for WebGL target not found
  1660. Refreshing native plugins compatible for Editor in 0.38 ms, found 2 plugins.
  1661. Preloading 0 native plugins for Editor in 0.00 ms.
  1662. Mono: successfully reloaded assembly
  1663. - Completed reload, in 1.014 seconds
  1664. Domain Reload Profiling:
  1665. ReloadAssembly (1014ms)
  1666. BeginReloadAssembly (112ms)
  1667. ExecutionOrderSort (0ms)
  1668. DisableScriptedObjects (5ms)
  1669. BackupInstance (0ms)
  1670. ReleaseScriptingObjects (0ms)
  1671. CreateAndSetChildDomain (32ms)
  1672. EndReloadAssembly (829ms)
  1673. LoadAssemblies (99ms)
  1674. RebuildTransferFunctionScriptingTraits (0ms)
  1675. SetupTypeCache (291ms)
  1676. ReleaseScriptCaches (1ms)
  1677. RebuildScriptCaches (43ms)
  1678. SetupLoadedEditorAssemblies (284ms)
  1679. LogAssemblyErrors (0ms)
  1680. InitializePlatformSupportModulesInManaged (5ms)
  1681. SetLoadedEditorAssemblies (0ms)
  1682. RefreshPlugins (0ms)
  1683. BeforeProcessingInitializeOnLoad (85ms)
  1684. ProcessInitializeOnLoadAttributes (174ms)
  1685. ProcessInitializeOnLoadMethodAttributes (9ms)
  1686. AfterProcessingInitializeOnLoad (10ms)
  1687. EditorAssembliesLoaded (0ms)
  1688. ExecutionOrderSort2 (0ms)
  1689. AwakeInstancesAfterBackupRestoration (6ms)
  1690. Platform modules already initialized, skipping
  1691. Refreshing native plugins compatible for Editor in 0.39 ms, found 2 plugins.
  1692. Preloading 0 native plugins for Editor in 0.00 ms.
  1693. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1694. System memory in use before: 73.7 MB.
  1695. System memory in use after: 73.8 MB.
  1696. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2017.
  1697. Total: 2.783808 ms (FindLiveObjects: 0.181142 ms CreateObjectMapping: 0.048798 ms MarkObjects: 2.534962 ms DeleteObjects: 0.017629 ms)
  1698. AssetImportParameters requested are different than current active one (requested -> active):
  1699. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1700. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1701. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1702. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1703. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1704. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1705. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1706. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1707. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1708. ========================================================================
  1709. Received Import Request.
  1710. Time since last request: 415.094739 seconds.
  1711. path: Assets/Scenes/pay.unity
  1712. artifactKey: Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1713. Start importing Assets/Scenes/pay.unity using Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4bed9cd8fe2a712ac5d434b0b60fcc7a') in 0.010315 seconds
  1714. Import took 0.013016 seconds .
  1715. ========================================================================
  1716. Received Prepare
  1717. Registering precompiled user dll's ...
  1718. Registered in 0.005847 seconds.
  1719. Begin MonoManager ReloadAssembly
  1720. Native extension for WindowsStandalone target not found
  1721. Native extension for WebGL target not found
  1722. Refreshing native plugins compatible for Editor in 0.39 ms, found 2 plugins.
  1723. Preloading 0 native plugins for Editor in 0.00 ms.
  1724. Mono: successfully reloaded assembly
  1725. - Completed reload, in 1.035 seconds
  1726. Domain Reload Profiling:
  1727. ReloadAssembly (1036ms)
  1728. BeginReloadAssembly (113ms)
  1729. ExecutionOrderSort (0ms)
  1730. DisableScriptedObjects (5ms)
  1731. BackupInstance (0ms)
  1732. ReleaseScriptingObjects (0ms)
  1733. CreateAndSetChildDomain (31ms)
  1734. EndReloadAssembly (850ms)
  1735. LoadAssemblies (99ms)
  1736. RebuildTransferFunctionScriptingTraits (0ms)
  1737. SetupTypeCache (298ms)
  1738. ReleaseScriptCaches (1ms)
  1739. RebuildScriptCaches (40ms)
  1740. SetupLoadedEditorAssemblies (309ms)
  1741. LogAssemblyErrors (0ms)
  1742. InitializePlatformSupportModulesInManaged (6ms)
  1743. SetLoadedEditorAssemblies (1ms)
  1744. RefreshPlugins (0ms)
  1745. BeforeProcessingInitializeOnLoad (84ms)
  1746. ProcessInitializeOnLoadAttributes (199ms)
  1747. ProcessInitializeOnLoadMethodAttributes (9ms)
  1748. AfterProcessingInitializeOnLoad (10ms)
  1749. EditorAssembliesLoaded (0ms)
  1750. ExecutionOrderSort2 (0ms)
  1751. AwakeInstancesAfterBackupRestoration (7ms)
  1752. Platform modules already initialized, skipping
  1753. Refreshing native plugins compatible for Editor in 0.57 ms, found 2 plugins.
  1754. Preloading 0 native plugins for Editor in 0.00 ms.
  1755. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1756. System memory in use before: 73.7 MB.
  1757. System memory in use after: 73.8 MB.
  1758. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2019.
  1759. Total: 2.886770 ms (FindLiveObjects: 0.285892 ms CreateObjectMapping: 0.078180 ms MarkObjects: 2.497916 ms DeleteObjects: 0.023505 ms)
  1760. AssetImportParameters requested are different than current active one (requested -> active):
  1761. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1762. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1763. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1764. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1765. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1766. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1767. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1768. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1769. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1770. ========================================================================
  1771. Received Prepare
  1772. Registering precompiled user dll's ...
  1773. Registered in 0.006107 seconds.
  1774. Begin MonoManager ReloadAssembly
  1775. Native extension for WindowsStandalone target not found
  1776. Native extension for WebGL target not found
  1777. Refreshing native plugins compatible for Editor in 0.47 ms, found 2 plugins.
  1778. Preloading 0 native plugins for Editor in 0.00 ms.
  1779. Mono: successfully reloaded assembly
  1780. - Completed reload, in 1.042 seconds
  1781. Domain Reload Profiling:
  1782. ReloadAssembly (1042ms)
  1783. BeginReloadAssembly (116ms)
  1784. ExecutionOrderSort (0ms)
  1785. DisableScriptedObjects (5ms)
  1786. BackupInstance (0ms)
  1787. ReleaseScriptingObjects (0ms)
  1788. CreateAndSetChildDomain (31ms)
  1789. EndReloadAssembly (846ms)
  1790. LoadAssemblies (96ms)
  1791. RebuildTransferFunctionScriptingTraits (0ms)
  1792. SetupTypeCache (293ms)
  1793. ReleaseScriptCaches (1ms)
  1794. RebuildScriptCaches (41ms)
  1795. SetupLoadedEditorAssemblies (314ms)
  1796. LogAssemblyErrors (0ms)
  1797. InitializePlatformSupportModulesInManaged (8ms)
  1798. SetLoadedEditorAssemblies (1ms)
  1799. RefreshPlugins (1ms)
  1800. BeforeProcessingInitializeOnLoad (86ms)
  1801. ProcessInitializeOnLoadAttributes (199ms)
  1802. ProcessInitializeOnLoadMethodAttributes (9ms)
  1803. AfterProcessingInitializeOnLoad (11ms)
  1804. EditorAssembliesLoaded (0ms)
  1805. ExecutionOrderSort2 (0ms)
  1806. AwakeInstancesAfterBackupRestoration (7ms)
  1807. Platform modules already initialized, skipping
  1808. Refreshing native plugins compatible for Editor in 0.41 ms, found 2 plugins.
  1809. Preloading 0 native plugins for Editor in 0.00 ms.
  1810. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1811. System memory in use before: 73.7 MB.
  1812. System memory in use after: 73.8 MB.
  1813. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2021.
  1814. Total: 2.984111 ms (FindLiveObjects: 0.267497 ms CreateObjectMapping: 0.099896 ms MarkObjects: 2.589636 ms DeleteObjects: 0.025549 ms)
  1815. AssetImportParameters requested are different than current active one (requested -> active):
  1816. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1817. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1818. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1819. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1820. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1821. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1822. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1823. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1824. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1825. ========================================================================
  1826. Received Prepare
  1827. Registering precompiled user dll's ...
  1828. Registered in 0.006521 seconds.
  1829. Begin MonoManager ReloadAssembly
  1830. Native extension for WindowsStandalone target not found
  1831. Native extension for WebGL target not found
  1832. Refreshing native plugins compatible for Editor in 0.44 ms, found 2 plugins.
  1833. Preloading 0 native plugins for Editor in 0.00 ms.
  1834. Mono: successfully reloaded assembly
  1835. - Completed reload, in 1.127 seconds
  1836. Domain Reload Profiling:
  1837. ReloadAssembly (1127ms)
  1838. BeginReloadAssembly (124ms)
  1839. ExecutionOrderSort (0ms)
  1840. DisableScriptedObjects (5ms)
  1841. BackupInstance (0ms)
  1842. ReleaseScriptingObjects (0ms)
  1843. CreateAndSetChildDomain (35ms)
  1844. EndReloadAssembly (919ms)
  1845. LoadAssemblies (108ms)
  1846. RebuildTransferFunctionScriptingTraits (0ms)
  1847. SetupTypeCache (337ms)
  1848. ReleaseScriptCaches (1ms)
  1849. RebuildScriptCaches (48ms)
  1850. SetupLoadedEditorAssemblies (319ms)
  1851. LogAssemblyErrors (0ms)
  1852. InitializePlatformSupportModulesInManaged (6ms)
  1853. SetLoadedEditorAssemblies (1ms)
  1854. RefreshPlugins (1ms)
  1855. BeforeProcessingInitializeOnLoad (89ms)
  1856. ProcessInitializeOnLoadAttributes (203ms)
  1857. ProcessInitializeOnLoadMethodAttributes (9ms)
  1858. AfterProcessingInitializeOnLoad (10ms)
  1859. EditorAssembliesLoaded (0ms)
  1860. ExecutionOrderSort2 (0ms)
  1861. AwakeInstancesAfterBackupRestoration (7ms)
  1862. Platform modules already initialized, skipping
  1863. Refreshing native plugins compatible for Editor in 0.38 ms, found 2 plugins.
  1864. Preloading 0 native plugins for Editor in 0.00 ms.
  1865. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1866. System memory in use before: 73.7 MB.
  1867. System memory in use after: 73.8 MB.
  1868. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2023.
  1869. Total: 2.889325 ms (FindLiveObjects: 0.246036 ms CreateObjectMapping: 0.083034 ms MarkObjects: 2.536239 ms DeleteObjects: 0.022228 ms)
  1870. AssetImportParameters requested are different than current active one (requested -> active):
  1871. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1872. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1873. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1874. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1875. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1876. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1877. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1878. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1879. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1880. ========================================================================
  1881. Received Prepare
  1882. Registering precompiled user dll's ...
  1883. Registered in 0.006323 seconds.
  1884. Begin MonoManager ReloadAssembly
  1885. Native extension for WindowsStandalone target not found
  1886. Native extension for WebGL target not found
  1887. Refreshing native plugins compatible for Editor in 0.63 ms, found 2 plugins.
  1888. Preloading 0 native plugins for Editor in 0.00 ms.
  1889. Mono: successfully reloaded assembly
  1890. - Completed reload, in 1.067 seconds
  1891. Domain Reload Profiling:
  1892. ReloadAssembly (1068ms)
  1893. BeginReloadAssembly (129ms)
  1894. ExecutionOrderSort (0ms)
  1895. DisableScriptedObjects (5ms)
  1896. BackupInstance (0ms)
  1897. ReleaseScriptingObjects (0ms)
  1898. CreateAndSetChildDomain (35ms)
  1899. EndReloadAssembly (851ms)
  1900. LoadAssemblies (113ms)
  1901. RebuildTransferFunctionScriptingTraits (0ms)
  1902. SetupTypeCache (296ms)
  1903. ReleaseScriptCaches (1ms)
  1904. RebuildScriptCaches (41ms)
  1905. SetupLoadedEditorAssemblies (308ms)
  1906. LogAssemblyErrors (0ms)
  1907. InitializePlatformSupportModulesInManaged (6ms)
  1908. SetLoadedEditorAssemblies (1ms)
  1909. RefreshPlugins (1ms)
  1910. BeforeProcessingInitializeOnLoad (86ms)
  1911. ProcessInitializeOnLoadAttributes (194ms)
  1912. ProcessInitializeOnLoadMethodAttributes (10ms)
  1913. AfterProcessingInitializeOnLoad (11ms)
  1914. EditorAssembliesLoaded (0ms)
  1915. ExecutionOrderSort2 (0ms)
  1916. AwakeInstancesAfterBackupRestoration (7ms)
  1917. Platform modules already initialized, skipping
  1918. Refreshing native plugins compatible for Editor in 0.42 ms, found 2 plugins.
  1919. Preloading 0 native plugins for Editor in 0.00 ms.
  1920. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1921. System memory in use before: 73.7 MB.
  1922. System memory in use after: 73.8 MB.
  1923. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2025.
  1924. Total: 2.886259 ms (FindLiveObjects: 0.163257 ms CreateObjectMapping: 0.048032 ms MarkObjects: 2.653509 ms DeleteObjects: 0.019417 ms)
  1925. AssetImportParameters requested are different than current active one (requested -> active):
  1926. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1927. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1928. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1929. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1930. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1931. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1932. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1933. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1934. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1935. ========================================================================
  1936. Received Prepare
  1937. Registering precompiled user dll's ...
  1938. Registered in 0.006326 seconds.
  1939. Begin MonoManager ReloadAssembly
  1940. Native extension for WindowsStandalone target not found
  1941. Native extension for WebGL target not found
  1942. Refreshing native plugins compatible for Editor in 0.61 ms, found 2 plugins.
  1943. Preloading 0 native plugins for Editor in 0.00 ms.
  1944. Mono: successfully reloaded assembly
  1945. - Completed reload, in 1.092 seconds
  1946. Domain Reload Profiling:
  1947. ReloadAssembly (1093ms)
  1948. BeginReloadAssembly (113ms)
  1949. ExecutionOrderSort (0ms)
  1950. DisableScriptedObjects (4ms)
  1951. BackupInstance (0ms)
  1952. ReleaseScriptingObjects (0ms)
  1953. CreateAndSetChildDomain (34ms)
  1954. EndReloadAssembly (908ms)
  1955. LoadAssemblies (102ms)
  1956. RebuildTransferFunctionScriptingTraits (0ms)
  1957. SetupTypeCache (312ms)
  1958. ReleaseScriptCaches (1ms)
  1959. RebuildScriptCaches (43ms)
  1960. SetupLoadedEditorAssemblies (338ms)
  1961. LogAssemblyErrors (0ms)
  1962. InitializePlatformSupportModulesInManaged (7ms)
  1963. SetLoadedEditorAssemblies (1ms)
  1964. RefreshPlugins (1ms)
  1965. BeforeProcessingInitializeOnLoad (102ms)
  1966. ProcessInitializeOnLoadAttributes (208ms)
  1967. ProcessInitializeOnLoadMethodAttributes (8ms)
  1968. AfterProcessingInitializeOnLoad (11ms)
  1969. EditorAssembliesLoaded (0ms)
  1970. ExecutionOrderSort2 (0ms)
  1971. AwakeInstancesAfterBackupRestoration (8ms)
  1972. Platform modules already initialized, skipping
  1973. Refreshing native plugins compatible for Editor in 0.61 ms, found 2 plugins.
  1974. Preloading 0 native plugins for Editor in 0.00 ms.
  1975. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  1976. System memory in use before: 73.7 MB.
  1977. System memory in use after: 73.8 MB.
  1978. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2027.
  1979. Total: 2.863776 ms (FindLiveObjects: 0.172455 ms CreateObjectMapping: 0.050842 ms MarkObjects: 2.614419 ms DeleteObjects: 0.024271 ms)
  1980. AssetImportParameters requested are different than current active one (requested -> active):
  1981. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1982. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1983. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1984. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1985. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1986. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1987. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1988. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1989. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1990. ========================================================================
  1991. Received Prepare
  1992. Registering precompiled user dll's ...
  1993. Registered in 0.005609 seconds.
  1994. Begin MonoManager ReloadAssembly
  1995. Native extension for WindowsStandalone target not found
  1996. Native extension for WebGL target not found
  1997. Refreshing native plugins compatible for Editor in 0.39 ms, found 2 plugins.
  1998. Preloading 0 native plugins for Editor in 0.00 ms.
  1999. Mono: successfully reloaded assembly
  2000. - Completed reload, in 1.080 seconds
  2001. Domain Reload Profiling:
  2002. ReloadAssembly (1081ms)
  2003. BeginReloadAssembly (120ms)
  2004. ExecutionOrderSort (0ms)
  2005. DisableScriptedObjects (5ms)
  2006. BackupInstance (0ms)
  2007. ReleaseScriptingObjects (0ms)
  2008. CreateAndSetChildDomain (33ms)
  2009. EndReloadAssembly (884ms)
  2010. LoadAssemblies (108ms)
  2011. RebuildTransferFunctionScriptingTraits (0ms)
  2012. SetupTypeCache (331ms)
  2013. ReleaseScriptCaches (1ms)
  2014. RebuildScriptCaches (40ms)
  2015. SetupLoadedEditorAssemblies (306ms)
  2016. LogAssemblyErrors (0ms)
  2017. InitializePlatformSupportModulesInManaged (6ms)
  2018. SetLoadedEditorAssemblies (1ms)
  2019. RefreshPlugins (1ms)
  2020. BeforeProcessingInitializeOnLoad (84ms)
  2021. ProcessInitializeOnLoadAttributes (194ms)
  2022. ProcessInitializeOnLoadMethodAttributes (9ms)
  2023. AfterProcessingInitializeOnLoad (11ms)
  2024. EditorAssembliesLoaded (0ms)
  2025. ExecutionOrderSort2 (0ms)
  2026. AwakeInstancesAfterBackupRestoration (7ms)
  2027. Platform modules already initialized, skipping
  2028. Refreshing native plugins compatible for Editor in 0.36 ms, found 2 plugins.
  2029. Preloading 0 native plugins for Editor in 0.00 ms.
  2030. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  2031. System memory in use before: 73.7 MB.
  2032. System memory in use after: 73.8 MB.
  2033. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2029.
  2034. Total: 2.659640 ms (FindLiveObjects: 0.150994 ms CreateObjectMapping: 0.042667 ms MarkObjects: 2.442986 ms DeleteObjects: 0.021972 ms)
  2035. AssetImportParameters requested are different than current active one (requested -> active):
  2036. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2037. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2038. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2039. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2040. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2041. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2042. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2043. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2044. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2045. ========================================================================
  2046. Received Prepare
  2047. Registering precompiled user dll's ...
  2048. Registered in 0.007470 seconds.
  2049. Begin MonoManager ReloadAssembly
  2050. Native extension for WindowsStandalone target not found
  2051. Native extension for WebGL target not found
  2052. Refreshing native plugins compatible for Editor in 0.39 ms, found 2 plugins.
  2053. Preloading 0 native plugins for Editor in 0.00 ms.
  2054. Mono: successfully reloaded assembly
  2055. - Completed reload, in 1.113 seconds
  2056. Domain Reload Profiling:
  2057. ReloadAssembly (1113ms)
  2058. BeginReloadAssembly (123ms)
  2059. ExecutionOrderSort (0ms)
  2060. DisableScriptedObjects (6ms)
  2061. BackupInstance (0ms)
  2062. ReleaseScriptingObjects (0ms)
  2063. CreateAndSetChildDomain (34ms)
  2064. EndReloadAssembly (913ms)
  2065. LoadAssemblies (110ms)
  2066. RebuildTransferFunctionScriptingTraits (0ms)
  2067. SetupTypeCache (338ms)
  2068. ReleaseScriptCaches (1ms)
  2069. RebuildScriptCaches (40ms)
  2070. SetupLoadedEditorAssemblies (321ms)
  2071. LogAssemblyErrors (0ms)
  2072. InitializePlatformSupportModulesInManaged (7ms)
  2073. SetLoadedEditorAssemblies (1ms)
  2074. RefreshPlugins (0ms)
  2075. BeforeProcessingInitializeOnLoad (87ms)
  2076. ProcessInitializeOnLoadAttributes (206ms)
  2077. ProcessInitializeOnLoadMethodAttributes (9ms)
  2078. AfterProcessingInitializeOnLoad (10ms)
  2079. EditorAssembliesLoaded (0ms)
  2080. ExecutionOrderSort2 (0ms)
  2081. AwakeInstancesAfterBackupRestoration (7ms)
  2082. Platform modules already initialized, skipping
  2083. Refreshing native plugins compatible for Editor in 0.44 ms, found 2 plugins.
  2084. Preloading 0 native plugins for Editor in 0.00 ms.
  2085. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  2086. System memory in use before: 73.7 MB.
  2087. System memory in use after: 73.8 MB.
  2088. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2031.
  2089. Total: 2.888303 ms (FindLiveObjects: 0.175265 ms CreateObjectMapping: 0.053908 ms MarkObjects: 2.636646 ms DeleteObjects: 0.020950 ms)
  2090. AssetImportParameters requested are different than current active one (requested -> active):
  2091. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2092. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2093. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2094. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2095. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2096. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2097. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2098. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2099. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2100. ========================================================================
  2101. Received Prepare
  2102. Registering precompiled user dll's ...
  2103. Registered in 0.005742 seconds.
  2104. Begin MonoManager ReloadAssembly
  2105. Native extension for WindowsStandalone target not found
  2106. Native extension for WebGL target not found
  2107. Refreshing native plugins compatible for Editor in 0.44 ms, found 2 plugins.
  2108. Preloading 0 native plugins for Editor in 0.00 ms.
  2109. Mono: successfully reloaded assembly
  2110. - Completed reload, in 1.097 seconds
  2111. Domain Reload Profiling:
  2112. ReloadAssembly (1097ms)
  2113. BeginReloadAssembly (123ms)
  2114. ExecutionOrderSort (0ms)
  2115. DisableScriptedObjects (5ms)
  2116. BackupInstance (0ms)
  2117. ReleaseScriptingObjects (0ms)
  2118. CreateAndSetChildDomain (35ms)
  2119. EndReloadAssembly (891ms)
  2120. LoadAssemblies (109ms)
  2121. RebuildTransferFunctionScriptingTraits (0ms)
  2122. SetupTypeCache (338ms)
  2123. ReleaseScriptCaches (1ms)
  2124. RebuildScriptCaches (42ms)
  2125. SetupLoadedEditorAssemblies (293ms)
  2126. LogAssemblyErrors (0ms)
  2127. InitializePlatformSupportModulesInManaged (6ms)
  2128. SetLoadedEditorAssemblies (0ms)
  2129. RefreshPlugins (1ms)
  2130. BeforeProcessingInitializeOnLoad (83ms)
  2131. ProcessInitializeOnLoadAttributes (185ms)
  2132. ProcessInitializeOnLoadMethodAttributes (8ms)
  2133. AfterProcessingInitializeOnLoad (10ms)
  2134. EditorAssembliesLoaded (0ms)
  2135. ExecutionOrderSort2 (0ms)
  2136. AwakeInstancesAfterBackupRestoration (6ms)
  2137. Platform modules already initialized, skipping
  2138. Refreshing native plugins compatible for Editor in 0.36 ms, found 2 plugins.
  2139. Preloading 0 native plugins for Editor in 0.00 ms.
  2140. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  2141. System memory in use before: 73.7 MB.
  2142. System memory in use after: 73.9 MB.
  2143. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2033.
  2144. Total: 2.648399 ms (FindLiveObjects: 0.173733 ms CreateObjectMapping: 0.050331 ms MarkObjects: 2.405173 ms DeleteObjects: 0.018140 ms)
  2145. AssetImportParameters requested are different than current active one (requested -> active):
  2146. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2147. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2148. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2149. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2150. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2151. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2152. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2153. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2154. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2155. ========================================================================
  2156. Received Prepare
  2157. Registering precompiled user dll's ...
  2158. Registered in 0.007388 seconds.
  2159. Begin MonoManager ReloadAssembly
  2160. Native extension for WindowsStandalone target not found
  2161. Native extension for WebGL target not found
  2162. Refreshing native plugins compatible for Editor in 0.64 ms, found 2 plugins.
  2163. Preloading 0 native plugins for Editor in 0.00 ms.
  2164. Mono: successfully reloaded assembly
  2165. - Completed reload, in 1.133 seconds
  2166. Domain Reload Profiling:
  2167. ReloadAssembly (1134ms)
  2168. BeginReloadAssembly (110ms)
  2169. ExecutionOrderSort (0ms)
  2170. DisableScriptedObjects (5ms)
  2171. BackupInstance (0ms)
  2172. ReleaseScriptingObjects (0ms)
  2173. CreateAndSetChildDomain (27ms)
  2174. EndReloadAssembly (949ms)
  2175. LoadAssemblies (100ms)
  2176. RebuildTransferFunctionScriptingTraits (0ms)
  2177. SetupTypeCache (351ms)
  2178. ReleaseScriptCaches (1ms)
  2179. RebuildScriptCaches (41ms)
  2180. SetupLoadedEditorAssemblies (351ms)
  2181. LogAssemblyErrors (0ms)
  2182. InitializePlatformSupportModulesInManaged (7ms)
  2183. SetLoadedEditorAssemblies (1ms)
  2184. RefreshPlugins (1ms)
  2185. BeforeProcessingInitializeOnLoad (109ms)
  2186. ProcessInitializeOnLoadAttributes (212ms)
  2187. ProcessInitializeOnLoadMethodAttributes (9ms)
  2188. AfterProcessingInitializeOnLoad (12ms)
  2189. EditorAssembliesLoaded (0ms)
  2190. ExecutionOrderSort2 (0ms)
  2191. AwakeInstancesAfterBackupRestoration (6ms)
  2192. Platform modules already initialized, skipping
  2193. Refreshing native plugins compatible for Editor in 0.63 ms, found 2 plugins.
  2194. Preloading 0 native plugins for Editor in 0.00 ms.
  2195. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  2196. System memory in use before: 73.7 MB.
  2197. System memory in use after: 73.9 MB.
  2198. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2035.
  2199. Total: 3.009660 ms (FindLiveObjects: 0.176543 ms CreateObjectMapping: 0.053397 ms MarkObjects: 2.757237 ms DeleteObjects: 0.021206 ms)
  2200. AssetImportParameters requested are different than current active one (requested -> active):
  2201. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2202. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2203. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2204. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2205. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2206. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2207. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2208. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2209. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2210. ========================================================================
  2211. Received Prepare
  2212. Registering precompiled user dll's ...
  2213. Registered in 0.006784 seconds.
  2214. Begin MonoManager ReloadAssembly
  2215. Native extension for WindowsStandalone target not found
  2216. Native extension for WebGL target not found
  2217. Refreshing native plugins compatible for Editor in 0.40 ms, found 2 plugins.
  2218. Preloading 0 native plugins for Editor in 0.00 ms.
  2219. Mono: successfully reloaded assembly
  2220. - Completed reload, in 1.020 seconds
  2221. Domain Reload Profiling:
  2222. ReloadAssembly (1020ms)
  2223. BeginReloadAssembly (107ms)
  2224. ExecutionOrderSort (0ms)
  2225. DisableScriptedObjects (5ms)
  2226. BackupInstance (0ms)
  2227. ReleaseScriptingObjects (0ms)
  2228. CreateAndSetChildDomain (30ms)
  2229. EndReloadAssembly (845ms)
  2230. LoadAssemblies (95ms)
  2231. RebuildTransferFunctionScriptingTraits (0ms)
  2232. SetupTypeCache (304ms)
  2233. ReleaseScriptCaches (1ms)
  2234. RebuildScriptCaches (44ms)
  2235. SetupLoadedEditorAssemblies (302ms)
  2236. LogAssemblyErrors (0ms)
  2237. InitializePlatformSupportModulesInManaged (6ms)
  2238. SetLoadedEditorAssemblies (0ms)
  2239. RefreshPlugins (0ms)
  2240. BeforeProcessingInitializeOnLoad (82ms)
  2241. ProcessInitializeOnLoadAttributes (194ms)
  2242. ProcessInitializeOnLoadMethodAttributes (9ms)
  2243. AfterProcessingInitializeOnLoad (10ms)
  2244. EditorAssembliesLoaded (0ms)
  2245. ExecutionOrderSort2 (0ms)
  2246. AwakeInstancesAfterBackupRestoration (7ms)
  2247. Platform modules already initialized, skipping
  2248. Refreshing native plugins compatible for Editor in 0.40 ms, found 2 plugins.
  2249. Preloading 0 native plugins for Editor in 0.00 ms.
  2250. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  2251. System memory in use before: 73.8 MB.
  2252. System memory in use after: 73.9 MB.
  2253. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2037.
  2254. Total: 2.577373 ms (FindLiveObjects: 0.153293 ms CreateObjectMapping: 0.046244 ms MarkObjects: 2.358930 ms DeleteObjects: 0.017629 ms)
  2255. AssetImportParameters requested are different than current active one (requested -> active):
  2256. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2257. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2258. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2259. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2260. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2261. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2262. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2263. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2264. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2265. ========================================================================
  2266. Received Import Request.
  2267. Time since last request: 709.846170 seconds.
  2268. path: ProjectSettings/TagManager.asset
  2269. artifactKey: Guid(00000000000000003000000000000000) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2270. Start importing ProjectSettings/TagManager.asset using Guid(00000000000000003000000000000000) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5825fb3e1d829dcd4fe4ec8c66bdc9fa') in 0.019091 seconds
  2271. Import took 0.021862 seconds .
  2272. ========================================================================
  2273. Received Prepare
  2274. Registering precompiled user dll's ...
  2275. Registered in 0.005599 seconds.
  2276. Begin MonoManager ReloadAssembly
  2277. Native extension for WindowsStandalone target not found
  2278. Native extension for WebGL target not found
  2279. Refreshing native plugins compatible for Editor in 0.46 ms, found 2 plugins.
  2280. Preloading 0 native plugins for Editor in 0.00 ms.
  2281. Mono: successfully reloaded assembly
  2282. - Completed reload, in 1.025 seconds
  2283. Domain Reload Profiling:
  2284. ReloadAssembly (1026ms)
  2285. BeginReloadAssembly (114ms)
  2286. ExecutionOrderSort (0ms)
  2287. DisableScriptedObjects (5ms)
  2288. BackupInstance (0ms)
  2289. ReleaseScriptingObjects (0ms)
  2290. CreateAndSetChildDomain (32ms)
  2291. EndReloadAssembly (839ms)
  2292. LoadAssemblies (99ms)
  2293. RebuildTransferFunctionScriptingTraits (0ms)
  2294. SetupTypeCache (297ms)
  2295. ReleaseScriptCaches (1ms)
  2296. RebuildScriptCaches (39ms)
  2297. SetupLoadedEditorAssemblies (306ms)
  2298. LogAssemblyErrors (0ms)
  2299. InitializePlatformSupportModulesInManaged (5ms)
  2300. SetLoadedEditorAssemblies (0ms)
  2301. RefreshPlugins (1ms)
  2302. BeforeProcessingInitializeOnLoad (82ms)
  2303. ProcessInitializeOnLoadAttributes (197ms)
  2304. ProcessInitializeOnLoadMethodAttributes (10ms)
  2305. AfterProcessingInitializeOnLoad (12ms)
  2306. EditorAssembliesLoaded (0ms)
  2307. ExecutionOrderSort2 (0ms)
  2308. AwakeInstancesAfterBackupRestoration (7ms)
  2309. Platform modules already initialized, skipping
  2310. Refreshing native plugins compatible for Editor in 0.53 ms, found 2 plugins.
  2311. Preloading 0 native plugins for Editor in 0.00 ms.
  2312. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  2313. System memory in use before: 73.8 MB.
  2314. System memory in use after: 73.9 MB.
  2315. Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2039.
  2316. Total: 3.262083 ms (FindLiveObjects: 0.181908 ms CreateObjectMapping: 0.050842 ms MarkObjects: 2.999952 ms DeleteObjects: 0.027593 ms)
  2317. AssetImportParameters requested are different than current active one (requested -> active):
  2318. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2319. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2320. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2321. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2322. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2323. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2324. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2325. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2326. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2327. ========================================================================
  2328. Received Prepare
  2329. Registering precompiled user dll's ...
  2330. Registered in 0.006215 seconds.
  2331. Begin MonoManager ReloadAssembly
  2332. Native extension for WindowsStandalone target not found
  2333. Native extension for WebGL target not found
  2334. Refreshing native plugins compatible for Editor in 0.37 ms, found 2 plugins.
  2335. Preloading 0 native plugins for Editor in 0.00 ms.
  2336. Mono: successfully reloaded assembly
  2337. - Completed reload, in 1.026 seconds
  2338. Domain Reload Profiling:
  2339. ReloadAssembly (1026ms)
  2340. BeginReloadAssembly (117ms)
  2341. ExecutionOrderSort (0ms)
  2342. DisableScriptedObjects (6ms)
  2343. BackupInstance (0ms)
  2344. ReleaseScriptingObjects (0ms)
  2345. CreateAndSetChildDomain (33ms)
  2346. EndReloadAssembly (835ms)
  2347. LoadAssemblies (99ms)
  2348. RebuildTransferFunctionScriptingTraits (0ms)
  2349. SetupTypeCache (296ms)
  2350. ReleaseScriptCaches (1ms)
  2351. RebuildScriptCaches (41ms)
  2352. SetupLoadedEditorAssemblies (302ms)
  2353. LogAssemblyErrors (0ms)
  2354. InitializePlatformSupportModulesInManaged (5ms)
  2355. SetLoadedEditorAssemblies (0ms)
  2356. RefreshPlugins (0ms)
  2357. BeforeProcessingInitializeOnLoad (81ms)
  2358. ProcessInitializeOnLoadAttributes (194ms)
  2359. ProcessInitializeOnLoadMethodAttributes (10ms)
  2360. AfterProcessingInitializeOnLoad (11ms)
  2361. EditorAssembliesLoaded (0ms)
  2362. ExecutionOrderSort2 (0ms)
  2363. AwakeInstancesAfterBackupRestoration (6ms)
  2364. Platform modules already initialized, skipping
  2365. Refreshing native plugins compatible for Editor in 0.37 ms, found 2 plugins.
  2366. Preloading 0 native plugins for Editor in 0.00 ms.
  2367. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  2368. System memory in use before: 73.8 MB.
  2369. System memory in use after: 73.9 MB.
  2370. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2041.
  2371. Total: 2.737309 ms (FindLiveObjects: 0.165557 ms CreateObjectMapping: 0.039601 ms MarkObjects: 2.512734 ms DeleteObjects: 0.018395 ms)
  2372. AssetImportParameters requested are different than current active one (requested -> active):
  2373. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2374. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2375. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2376. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2377. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2378. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2379. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2380. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2381. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2382. ========================================================================
  2383. Received Prepare
  2384. Registering precompiled user dll's ...
  2385. Registered in 0.006722 seconds.
  2386. Begin MonoManager ReloadAssembly
  2387. Native extension for WindowsStandalone target not found
  2388. Native extension for WebGL target not found
  2389. Refreshing native plugins compatible for Editor in 0.37 ms, found 2 plugins.
  2390. Preloading 0 native plugins for Editor in 0.00 ms.
  2391. Mono: successfully reloaded assembly
  2392. - Completed reload, in 1.098 seconds
  2393. Domain Reload Profiling:
  2394. ReloadAssembly (1099ms)
  2395. BeginReloadAssembly (110ms)
  2396. ExecutionOrderSort (0ms)
  2397. DisableScriptedObjects (6ms)
  2398. BackupInstance (0ms)
  2399. ReleaseScriptingObjects (0ms)
  2400. CreateAndSetChildDomain (30ms)
  2401. EndReloadAssembly (920ms)
  2402. LoadAssemblies (96ms)
  2403. RebuildTransferFunctionScriptingTraits (0ms)
  2404. SetupTypeCache (294ms)
  2405. ReleaseScriptCaches (1ms)
  2406. RebuildScriptCaches (43ms)
  2407. SetupLoadedEditorAssemblies (366ms)
  2408. LogAssemblyErrors (0ms)
  2409. InitializePlatformSupportModulesInManaged (6ms)
  2410. SetLoadedEditorAssemblies (0ms)
  2411. RefreshPlugins (1ms)
  2412. BeforeProcessingInitializeOnLoad (100ms)
  2413. ProcessInitializeOnLoadAttributes (233ms)
  2414. ProcessInitializeOnLoadMethodAttributes (12ms)
  2415. AfterProcessingInitializeOnLoad (13ms)
  2416. EditorAssembliesLoaded (0ms)
  2417. ExecutionOrderSort2 (0ms)
  2418. AwakeInstancesAfterBackupRestoration (10ms)
  2419. Platform modules already initialized, skipping
  2420. Refreshing native plugins compatible for Editor in 0.44 ms, found 2 plugins.
  2421. Preloading 0 native plugins for Editor in 0.00 ms.
  2422. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  2423. System memory in use before: 73.8 MB.
  2424. System memory in use after: 73.9 MB.
  2425. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2043.
  2426. Total: 3.125397 ms (FindLiveObjects: 0.215633 ms CreateObjectMapping: 0.052120 ms MarkObjects: 2.836694 ms DeleteObjects: 0.019673 ms)
  2427. AssetImportParameters requested are different than current active one (requested -> active):
  2428. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2429. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2430. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2431. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2432. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2433. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2434. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2435. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2436. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2437. ========================================================================
  2438. Received Prepare
  2439. Registering precompiled user dll's ...
  2440. Registered in 0.007226 seconds.
  2441. Begin MonoManager ReloadAssembly
  2442. Native extension for WindowsStandalone target not found
  2443. Native extension for WebGL target not found
  2444. Refreshing native plugins compatible for Editor in 0.37 ms, found 2 plugins.
  2445. Preloading 0 native plugins for Editor in 0.00 ms.
  2446. Mono: successfully reloaded assembly
  2447. - Completed reload, in 1.022 seconds
  2448. Domain Reload Profiling:
  2449. ReloadAssembly (1022ms)
  2450. BeginReloadAssembly (110ms)
  2451. ExecutionOrderSort (0ms)
  2452. DisableScriptedObjects (5ms)
  2453. BackupInstance (0ms)
  2454. ReleaseScriptingObjects (0ms)
  2455. CreateAndSetChildDomain (28ms)
  2456. EndReloadAssembly (841ms)
  2457. LoadAssemblies (109ms)
  2458. RebuildTransferFunctionScriptingTraits (0ms)
  2459. SetupTypeCache (290ms)
  2460. ReleaseScriptCaches (1ms)
  2461. RebuildScriptCaches (44ms)
  2462. SetupLoadedEditorAssemblies (299ms)
  2463. LogAssemblyErrors (0ms)
  2464. InitializePlatformSupportModulesInManaged (6ms)
  2465. SetLoadedEditorAssemblies (0ms)
  2466. RefreshPlugins (0ms)
  2467. BeforeProcessingInitializeOnLoad (81ms)
  2468. ProcessInitializeOnLoadAttributes (192ms)
  2469. ProcessInitializeOnLoadMethodAttributes (10ms)
  2470. AfterProcessingInitializeOnLoad (9ms)
  2471. EditorAssembliesLoaded (0ms)
  2472. ExecutionOrderSort2 (0ms)
  2473. AwakeInstancesAfterBackupRestoration (7ms)
  2474. Platform modules already initialized, skipping
  2475. Refreshing native plugins compatible for Editor in 0.67 ms, found 2 plugins.
  2476. Preloading 0 native plugins for Editor in 0.00 ms.
  2477. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  2478. System memory in use before: 73.8 MB.
  2479. System memory in use after: 73.9 MB.
  2480. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2045.
  2481. Total: 3.787880 ms (FindLiveObjects: 0.238371 ms CreateObjectMapping: 0.087122 ms MarkObjects: 3.442459 ms DeleteObjects: 0.018906 ms)
  2482. AssetImportParameters requested are different than current active one (requested -> active):
  2483. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2484. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2485. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2486. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2487. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2488. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2489. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2490. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2491. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2492. ========================================================================
  2493. Received Prepare
  2494. Registering precompiled user dll's ...
  2495. Registered in 0.006144 seconds.
  2496. Begin MonoManager ReloadAssembly
  2497. Native extension for WindowsStandalone target not found
  2498. Native extension for WebGL target not found
  2499. Refreshing native plugins compatible for Editor in 0.56 ms, found 2 plugins.
  2500. Preloading 0 native plugins for Editor in 0.00 ms.
  2501. Mono: successfully reloaded assembly
  2502. - Completed reload, in 1.095 seconds
  2503. Domain Reload Profiling:
  2504. ReloadAssembly (1095ms)
  2505. BeginReloadAssembly (121ms)
  2506. ExecutionOrderSort (0ms)
  2507. DisableScriptedObjects (6ms)
  2508. BackupInstance (0ms)
  2509. ReleaseScriptingObjects (0ms)
  2510. CreateAndSetChildDomain (31ms)
  2511. EndReloadAssembly (895ms)
  2512. LoadAssemblies (107ms)
  2513. RebuildTransferFunctionScriptingTraits (0ms)
  2514. SetupTypeCache (325ms)
  2515. ReleaseScriptCaches (1ms)
  2516. RebuildScriptCaches (45ms)
  2517. SetupLoadedEditorAssemblies (314ms)
  2518. LogAssemblyErrors (0ms)
  2519. InitializePlatformSupportModulesInManaged (6ms)
  2520. SetLoadedEditorAssemblies (1ms)
  2521. RefreshPlugins (1ms)
  2522. BeforeProcessingInitializeOnLoad (93ms)
  2523. ProcessInitializeOnLoadAttributes (195ms)
  2524. ProcessInitializeOnLoadMethodAttributes (9ms)
  2525. AfterProcessingInitializeOnLoad (10ms)
  2526. EditorAssembliesLoaded (0ms)
  2527. ExecutionOrderSort2 (0ms)
  2528. AwakeInstancesAfterBackupRestoration (8ms)
  2529. Platform modules already initialized, skipping
  2530. Refreshing native plugins compatible for Editor in 0.39 ms, found 2 plugins.
  2531. Preloading 0 native plugins for Editor in 0.00 ms.
  2532. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  2533. System memory in use before: 73.8 MB.
  2534. System memory in use after: 73.9 MB.
  2535. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2047.
  2536. Total: 3.126930 ms (FindLiveObjects: 0.178331 ms CreateObjectMapping: 0.049309 ms MarkObjects: 2.877317 ms DeleteObjects: 0.020950 ms)
  2537. AssetImportParameters requested are different than current active one (requested -> active):
  2538. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2539. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2540. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2541. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2542. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2543. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2544. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2545. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2546. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2547. ========================================================================
  2548. Received Prepare
  2549. Registering precompiled user dll's ...
  2550. Registered in 0.006799 seconds.
  2551. Begin MonoManager ReloadAssembly
  2552. Native extension for WindowsStandalone target not found
  2553. Native extension for WebGL target not found
  2554. Refreshing native plugins compatible for Editor in 0.57 ms, found 2 plugins.
  2555. Preloading 0 native plugins for Editor in 0.00 ms.
  2556. Mono: successfully reloaded assembly
  2557. - Completed reload, in 1.164 seconds
  2558. Domain Reload Profiling:
  2559. ReloadAssembly (1165ms)
  2560. BeginReloadAssembly (120ms)
  2561. ExecutionOrderSort (0ms)
  2562. DisableScriptedObjects (5ms)
  2563. BackupInstance (0ms)
  2564. ReleaseScriptingObjects (0ms)
  2565. CreateAndSetChildDomain (32ms)
  2566. EndReloadAssembly (961ms)
  2567. LoadAssemblies (110ms)
  2568. RebuildTransferFunctionScriptingTraits (0ms)
  2569. SetupTypeCache (343ms)
  2570. ReleaseScriptCaches (1ms)
  2571. RebuildScriptCaches (46ms)
  2572. SetupLoadedEditorAssemblies (348ms)
  2573. LogAssemblyErrors (0ms)
  2574. InitializePlatformSupportModulesInManaged (6ms)
  2575. SetLoadedEditorAssemblies (1ms)
  2576. RefreshPlugins (1ms)
  2577. BeforeProcessingInitializeOnLoad (92ms)
  2578. ProcessInitializeOnLoadAttributes (224ms)
  2579. ProcessInitializeOnLoadMethodAttributes (12ms)
  2580. AfterProcessingInitializeOnLoad (13ms)
  2581. EditorAssembliesLoaded (0ms)
  2582. ExecutionOrderSort2 (0ms)
  2583. AwakeInstancesAfterBackupRestoration (8ms)
  2584. Platform modules already initialized, skipping
  2585. Refreshing native plugins compatible for Editor in 0.59 ms, found 2 plugins.
  2586. Preloading 0 native plugins for Editor in 0.00 ms.
  2587. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  2588. System memory in use before: 73.8 MB.
  2589. System memory in use after: 73.9 MB.
  2590. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2049.
  2591. Total: 3.329533 ms (FindLiveObjects: 0.189062 ms CreateObjectMapping: 0.060040 ms MarkObjects: 3.059225 ms DeleteObjects: 0.019928 ms)
  2592. AssetImportParameters requested are different than current active one (requested -> active):
  2593. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2594. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2595. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2596. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2597. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2598. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2599. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2600. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2601. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2602. ========================================================================
  2603. Received Prepare
  2604. Registering precompiled user dll's ...
  2605. Registered in 0.005327 seconds.
  2606. Begin MonoManager ReloadAssembly
  2607. Native extension for WindowsStandalone target not found
  2608. Native extension for WebGL target not found
  2609. Refreshing native plugins compatible for Editor in 0.69 ms, found 2 plugins.
  2610. Preloading 0 native plugins for Editor in 0.00 ms.
  2611. Mono: successfully reloaded assembly
  2612. - Completed reload, in 1.265 seconds
  2613. Domain Reload Profiling:
  2614. ReloadAssembly (1265ms)
  2615. BeginReloadAssembly (129ms)
  2616. ExecutionOrderSort (0ms)
  2617. DisableScriptedObjects (6ms)
  2618. BackupInstance (0ms)
  2619. ReleaseScriptingObjects (0ms)
  2620. CreateAndSetChildDomain (37ms)
  2621. EndReloadAssembly (1049ms)
  2622. LoadAssemblies (111ms)
  2623. RebuildTransferFunctionScriptingTraits (0ms)
  2624. SetupTypeCache (402ms)
  2625. ReleaseScriptCaches (1ms)
  2626. RebuildScriptCaches (46ms)
  2627. SetupLoadedEditorAssemblies (372ms)
  2628. LogAssemblyErrors (0ms)
  2629. InitializePlatformSupportModulesInManaged (8ms)
  2630. SetLoadedEditorAssemblies (1ms)
  2631. RefreshPlugins (1ms)
  2632. BeforeProcessingInitializeOnLoad (92ms)
  2633. ProcessInitializeOnLoadAttributes (250ms)
  2634. ProcessInitializeOnLoadMethodAttributes (10ms)
  2635. AfterProcessingInitializeOnLoad (11ms)
  2636. EditorAssembliesLoaded (0ms)
  2637. ExecutionOrderSort2 (0ms)
  2638. AwakeInstancesAfterBackupRestoration (9ms)
  2639. Platform modules already initialized, skipping
  2640. Refreshing native plugins compatible for Editor in 0.38 ms, found 2 plugins.
  2641. Preloading 0 native plugins for Editor in 0.00 ms.
  2642. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  2643. System memory in use before: 73.8 MB.
  2644. System memory in use after: 73.9 MB.
  2645. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2051.
  2646. Total: 3.093205 ms (FindLiveObjects: 0.185485 ms CreateObjectMapping: 0.057996 ms MarkObjects: 2.828008 ms DeleteObjects: 0.020695 ms)
  2647. AssetImportParameters requested are different than current active one (requested -> active):
  2648. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2649. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2650. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2651. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2652. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2653. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2654. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2655. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2656. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2657. ========================================================================
  2658. Received Prepare
  2659. Registering precompiled user dll's ...
  2660. Registered in 0.006938 seconds.
  2661. Begin MonoManager ReloadAssembly
  2662. Native extension for WindowsStandalone target not found
  2663. Native extension for WebGL target not found
  2664. Refreshing native plugins compatible for Editor in 0.38 ms, found 2 plugins.
  2665. Preloading 0 native plugins for Editor in 0.00 ms.
  2666. Mono: successfully reloaded assembly
  2667. - Completed reload, in 1.211 seconds
  2668. Domain Reload Profiling:
  2669. ReloadAssembly (1211ms)
  2670. BeginReloadAssembly (134ms)
  2671. ExecutionOrderSort (0ms)
  2672. DisableScriptedObjects (7ms)
  2673. BackupInstance (0ms)
  2674. ReleaseScriptingObjects (0ms)
  2675. CreateAndSetChildDomain (36ms)
  2676. EndReloadAssembly (990ms)
  2677. LoadAssemblies (112ms)
  2678. RebuildTransferFunctionScriptingTraits (0ms)
  2679. SetupTypeCache (350ms)
  2680. ReleaseScriptCaches (1ms)
  2681. RebuildScriptCaches (49ms)
  2682. SetupLoadedEditorAssemblies (357ms)
  2683. LogAssemblyErrors (0ms)
  2684. InitializePlatformSupportModulesInManaged (7ms)
  2685. SetLoadedEditorAssemblies (1ms)
  2686. RefreshPlugins (0ms)
  2687. BeforeProcessingInitializeOnLoad (98ms)
  2688. ProcessInitializeOnLoadAttributes (232ms)
  2689. ProcessInitializeOnLoadMethodAttributes (9ms)
  2690. AfterProcessingInitializeOnLoad (10ms)
  2691. EditorAssembliesLoaded (0ms)
  2692. ExecutionOrderSort2 (0ms)
  2693. AwakeInstancesAfterBackupRestoration (8ms)
  2694. Platform modules already initialized, skipping
  2695. Refreshing native plugins compatible for Editor in 0.44 ms, found 2 plugins.
  2696. Preloading 0 native plugins for Editor in 0.00 ms.
  2697. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  2698. System memory in use before: 73.8 MB.
  2699. System memory in use after: 73.9 MB.
  2700. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2053.
  2701. Total: 3.108024 ms (FindLiveObjects: 0.190595 ms CreateObjectMapping: 0.053397 ms MarkObjects: 2.839505 ms DeleteObjects: 0.022994 ms)
  2702. AssetImportParameters requested are different than current active one (requested -> active):
  2703. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2704. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2705. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2706. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2707. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2708. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2709. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2710. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2711. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2712. ========================================================================
  2713. Received Prepare
  2714. Registering precompiled user dll's ...
  2715. Registered in 0.007998 seconds.
  2716. Begin MonoManager ReloadAssembly
  2717. Native extension for WindowsStandalone target not found
  2718. Native extension for WebGL target not found
  2719. Refreshing native plugins compatible for Editor in 0.72 ms, found 2 plugins.
  2720. Preloading 0 native plugins for Editor in 0.00 ms.
  2721. Mono: successfully reloaded assembly
  2722. - Completed reload, in 1.119 seconds
  2723. Domain Reload Profiling:
  2724. ReloadAssembly (1120ms)
  2725. BeginReloadAssembly (121ms)
  2726. ExecutionOrderSort (0ms)
  2727. DisableScriptedObjects (6ms)
  2728. BackupInstance (0ms)
  2729. ReleaseScriptingObjects (0ms)
  2730. CreateAndSetChildDomain (34ms)
  2731. EndReloadAssembly (916ms)
  2732. LoadAssemblies (107ms)
  2733. RebuildTransferFunctionScriptingTraits (0ms)
  2734. SetupTypeCache (314ms)
  2735. ReleaseScriptCaches (1ms)
  2736. RebuildScriptCaches (46ms)
  2737. SetupLoadedEditorAssemblies (334ms)
  2738. LogAssemblyErrors (0ms)
  2739. InitializePlatformSupportModulesInManaged (6ms)
  2740. SetLoadedEditorAssemblies (1ms)
  2741. RefreshPlugins (1ms)
  2742. BeforeProcessingInitializeOnLoad (89ms)
  2743. ProcessInitializeOnLoadAttributes (217ms)
  2744. ProcessInitializeOnLoadMethodAttributes (9ms)
  2745. AfterProcessingInitializeOnLoad (12ms)
  2746. EditorAssembliesLoaded (0ms)
  2747. ExecutionOrderSort2 (0ms)
  2748. AwakeInstancesAfterBackupRestoration (8ms)
  2749. Platform modules already initialized, skipping
  2750. Refreshing native plugins compatible for Editor in 0.63 ms, found 2 plugins.
  2751. Preloading 0 native plugins for Editor in 0.00 ms.
  2752. Unloading 1518 Unused Serialized files (Serialized files now loaded: 0)
  2753. System memory in use before: 73.8 MB.
  2754. System memory in use after: 73.9 MB.
  2755. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 2055.
  2756. Total: 3.249309 ms (FindLiveObjects: 0.266475 ms CreateObjectMapping: 0.071792 ms MarkObjects: 2.888814 ms DeleteObjects: 0.020439 ms)
  2757. AssetImportParameters requested are different than current active one (requested -> active):
  2758. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2759. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2760. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2761. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2762. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2763. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2764. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2765. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2766. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2767. AssetImportWorkerClient::OnTransportError - code=121 error=ÐźŵƳ¬Ê±Ê±¼äÒѵ½