AssetImportWorker0.log 138 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856
  1. Using pre-set license
  2. Built from '2020.3/china_unity/release' branch; Version is '2020.3.15f1c1 (2f15a4c58450) revision 3085732'; Using compiler version '192528614'; Build Type 'Release'
  3. OS: 'Windows 10 Pro; OS build 19043.1110; Version 2009; 64bit' Language: 'zh' Physical Memory: 16305 MB
  4. BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
  5. COMMAND LINE ARGUMENTS:
  6. C:\workflow\software\Unity\2020.3.15f1c1\Editor\Unity.exe
  7. -adb2
  8. -batchMode
  9. -noUpm
  10. -name
  11. AssetImportWorker0
  12. -projectPath
  13. D:/workflow/project/unity/ToneTuneToolkit
  14. -logFile
  15. Logs/AssetImportWorker0.log
  16. -srvPort
  17. 60285
  18. Successfully changed project path to: D:/workflow/project/unity/ToneTuneToolkit
  19. D:/workflow/project/unity/ToneTuneToolkit
  20. Using Asset Import Pipeline V2.
  21. Refreshing native plugins compatible for Editor in 43.99 ms, found 3 plugins.
  22. Preloading 0 native plugins for Editor in 0.00 ms.
  23. Initialize engine version: 2020.3.15f1c1 (2f15a4c58450)
  24. [Subsystems] Discovering subsystems at path C:/workflow/software/Unity/2020.3.15f1c1/Editor/Data/Resources/UnitySubsystems
  25. [Subsystems] Discovering subsystems at path D:/workflow/project/unity/ToneTuneToolkit/Assets
  26. GfxDevice: creating device client; threaded=0
  27. Direct3D:
  28. Version: Direct3D 11.0 [level 11.1]
  29. Renderer: NVIDIA GeForce GTX 1070 (ID=0x1b81)
  30. Vendor:
  31. VRAM: 8088 MB
  32. Driver: 27.21.14.5671
  33. Initialize mono
  34. Mono path[0] = 'C:/workflow/software/Unity/2020.3.15f1c1/Editor/Data/Managed'
  35. Mono path[1] = 'C:/workflow/software/Unity/2020.3.15f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
  36. Mono config path = 'C:/workflow/software/Unity/2020.3.15f1c1/Editor/Data/MonoBleedingEdge/etc'
  37. Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56224
  38. Begin MonoManager ReloadAssembly
  39. Registering precompiled unity dll's ...
  40. Register platform support module: C:/workflow/software/Unity/2020.3.15f1c1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll
  41. Register platform support module: C:/workflow/software/Unity/2020.3.15f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
  42. Registered in 0.003661 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 41.59 ms, found 3 plugins.
  46. Preloading 0 native plugins for Editor in 0.00 ms.
  47. Mono: successfully reloaded assembly
  48. - Completed reload, in 2.199 seconds
  49. Domain Reload Profiling:
  50. ReloadAssembly (2199ms)
  51. BeginReloadAssembly (62ms)
  52. ExecutionOrderSort (0ms)
  53. DisableScriptedObjects (0ms)
  54. BackupInstance (0ms)
  55. ReleaseScriptingObjects (0ms)
  56. CreateAndSetChildDomain (1ms)
  57. EndReloadAssembly (392ms)
  58. LoadAssemblies (58ms)
  59. RebuildTransferFunctionScriptingTraits (0ms)
  60. SetupTypeCache (141ms)
  61. ReleaseScriptCaches (0ms)
  62. RebuildScriptCaches (29ms)
  63. SetupLoadedEditorAssemblies (157ms)
  64. LogAssemblyErrors (0ms)
  65. InitializePlatformSupportModulesInManaged (5ms)
  66. SetLoadedEditorAssemblies (0ms)
  67. RefreshPlugins (42ms)
  68. BeforeProcessingInitializeOnLoad (10ms)
  69. ProcessInitializeOnLoadAttributes (74ms)
  70. ProcessInitializeOnLoadMethodAttributes (27ms)
  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.003008 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 41.23 ms, found 3 plugins.
  82. Preloading 0 native plugins for Editor in 0.00 ms.
  83. Mono: successfully reloaded assembly
  84. - Completed reload, in 1.175 seconds
  85. Domain Reload Profiling:
  86. ReloadAssembly (1176ms)
  87. BeginReloadAssembly (147ms)
  88. ExecutionOrderSort (0ms)
  89. DisableScriptedObjects (4ms)
  90. BackupInstance (0ms)
  91. ReleaseScriptingObjects (0ms)
  92. CreateAndSetChildDomain (17ms)
  93. EndReloadAssembly (965ms)
  94. LoadAssemblies (96ms)
  95. RebuildTransferFunctionScriptingTraits (0ms)
  96. SetupTypeCache (285ms)
  97. ReleaseScriptCaches (0ms)
  98. RebuildScriptCaches (46ms)
  99. SetupLoadedEditorAssemblies (430ms)
  100. LogAssemblyErrors (0ms)
  101. InitializePlatformSupportModulesInManaged (5ms)
  102. SetLoadedEditorAssemblies (0ms)
  103. RefreshPlugins (41ms)
  104. BeforeProcessingInitializeOnLoad (87ms)
  105. ProcessInitializeOnLoadAttributes (273ms)
  106. ProcessInitializeOnLoadMethodAttributes (12ms)
  107. AfterProcessingInitializeOnLoad (11ms)
  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.44 ms, found 3 plugins.
  116. Preloading 0 native plugins for Editor in 0.00 ms.
  117. Unloading 2125 Unused Serialized files (Serialized files now loaded: 0)
  118. System memory in use before: 170.4 MB.
  119. System memory in use after: 170.5 MB.
  120. Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2583.
  121. Total: 2.410000 ms (FindLiveObjects: 0.174100 ms CreateObjectMapping: 0.074200 ms MarkObjects: 2.108700 ms DeleteObjects: 0.052100 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/ToneTuneToolkit/Documentation.md
  135. artifactKey: Guid(00277320b88355049b5c0adbb1dc7925) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  136. Start importing Assets/ToneTuneToolkit/Documentation.md using Guid(00277320b88355049b5c0adbb1dc7925) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '660206f7487850624a822d726ec89e0a') in 0.031664 seconds
  137. Import took 0.034724 seconds .
  138. ========================================================================
  139. Received Prepare
  140. Registering precompiled user dll's ...
  141. Registered in 0.002919 seconds.
  142. Begin MonoManager ReloadAssembly
  143. Native extension for WindowsStandalone target not found
  144. Native extension for WebGL target not found
  145. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  146. Preloading 0 native plugins for Editor in 0.00 ms.
  147. Mono: successfully reloaded assembly
  148. - Completed reload, in 1.039 seconds
  149. Domain Reload Profiling:
  150. ReloadAssembly (1039ms)
  151. BeginReloadAssembly (118ms)
  152. ExecutionOrderSort (0ms)
  153. DisableScriptedObjects (6ms)
  154. BackupInstance (0ms)
  155. ReleaseScriptingObjects (0ms)
  156. CreateAndSetChildDomain (32ms)
  157. EndReloadAssembly (856ms)
  158. LoadAssemblies (93ms)
  159. RebuildTransferFunctionScriptingTraits (0ms)
  160. SetupTypeCache (272ms)
  161. ReleaseScriptCaches (1ms)
  162. RebuildScriptCaches (39ms)
  163. SetupLoadedEditorAssemblies (359ms)
  164. LogAssemblyErrors (0ms)
  165. InitializePlatformSupportModulesInManaged (6ms)
  166. SetLoadedEditorAssemblies (0ms)
  167. RefreshPlugins (0ms)
  168. BeforeProcessingInitializeOnLoad (94ms)
  169. ProcessInitializeOnLoadAttributes (243ms)
  170. ProcessInitializeOnLoadMethodAttributes (5ms)
  171. AfterProcessingInitializeOnLoad (10ms)
  172. EditorAssembliesLoaded (0ms)
  173. ExecutionOrderSort2 (0ms)
  174. AwakeInstancesAfterBackupRestoration (10ms)
  175. Platform modules already initialized, skipping
  176. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  177. Preloading 0 native plugins for Editor in 0.00 ms.
  178. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  179. System memory in use before: 169.9 MB.
  180. System memory in use after: 170.0 MB.
  181. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2588.
  182. Total: 2.360300 ms (FindLiveObjects: 0.188200 ms CreateObjectMapping: 0.092900 ms MarkObjects: 2.060000 ms DeleteObjects: 0.018100 ms)
  183. AssetImportParameters requested are different than current active one (requested -> active):
  184. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  185. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  186. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  187. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  188. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  189. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  190. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  191. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  192. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  193. ========================================================================
  194. Received Import Request.
  195. Time since last request: 102.171594 seconds.
  196. path: Assets/ToneTuneToolkit/Scripts/Other/JsonConstructer.cs
  197. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  198. Start importing Assets/ToneTuneToolkit/Scripts/Other/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed4d58c14dc9015a371e408c9a273cac') in 0.010832 seconds
  199. Import took 0.013724 seconds .
  200. ========================================================================
  201. Received Prepare
  202. Registering precompiled user dll's ...
  203. Registered in 0.003400 seconds.
  204. Begin MonoManager ReloadAssembly
  205. Native extension for WindowsStandalone target not found
  206. Native extension for WebGL target not found
  207. Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
  208. Preloading 0 native plugins for Editor in 0.00 ms.
  209. Mono: successfully reloaded assembly
  210. - Completed reload, in 1.042 seconds
  211. Domain Reload Profiling:
  212. ReloadAssembly (1043ms)
  213. BeginReloadAssembly (120ms)
  214. ExecutionOrderSort (0ms)
  215. DisableScriptedObjects (6ms)
  216. BackupInstance (0ms)
  217. ReleaseScriptingObjects (0ms)
  218. CreateAndSetChildDomain (31ms)
  219. EndReloadAssembly (858ms)
  220. LoadAssemblies (95ms)
  221. RebuildTransferFunctionScriptingTraits (0ms)
  222. SetupTypeCache (269ms)
  223. ReleaseScriptCaches (1ms)
  224. RebuildScriptCaches (39ms)
  225. SetupLoadedEditorAssemblies (363ms)
  226. LogAssemblyErrors (0ms)
  227. InitializePlatformSupportModulesInManaged (6ms)
  228. SetLoadedEditorAssemblies (0ms)
  229. RefreshPlugins (1ms)
  230. BeforeProcessingInitializeOnLoad (94ms)
  231. ProcessInitializeOnLoadAttributes (243ms)
  232. ProcessInitializeOnLoadMethodAttributes (5ms)
  233. AfterProcessingInitializeOnLoad (14ms)
  234. EditorAssembliesLoaded (0ms)
  235. ExecutionOrderSort2 (0ms)
  236. AwakeInstancesAfterBackupRestoration (10ms)
  237. Platform modules already initialized, skipping
  238. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  239. Preloading 0 native plugins for Editor in 0.00 ms.
  240. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  241. System memory in use before: 169.9 MB.
  242. System memory in use after: 170.1 MB.
  243. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2592.
  244. Total: 2.633400 ms (FindLiveObjects: 0.173300 ms CreateObjectMapping: 0.068000 ms MarkObjects: 2.370700 ms DeleteObjects: 0.020300 ms)
  245. AssetImportParameters requested are different than current active one (requested -> active):
  246. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  247. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  248. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  249. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  250. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  251. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  252. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  253. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  254. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  255. ========================================================================
  256. Received Import Request.
  257. Time since last request: 166.105476 seconds.
  258. path: Assets/ToneTuneToolkit/Scripts/Other/JsonConstructer.cs
  259. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  260. Start importing Assets/ToneTuneToolkit/Scripts/Other/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '32d43ed67a1524e86a1c6ecb7da512bc') in 0.004030 seconds
  261. Import took 0.007021 seconds .
  262. ========================================================================
  263. Received Import Request.
  264. Time since last request: 5.412652 seconds.
  265. path: Assets/Examples/_Template 1
  266. artifactKey: Guid(bad7bc9047c78784ebe5ac5748dbcb66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  267. Start importing Assets/Examples/_Template 1 using Guid(bad7bc9047c78784ebe5ac5748dbcb66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f4c1439296e2205fbd1e95e1842af547') in 0.001908 seconds
  268. Import took 0.004907 seconds .
  269. ========================================================================
  270. Received Import Request.
  271. Time since last request: 3.384241 seconds.
  272. path: Assets/Examples/TEST
  273. artifactKey: Guid(bad7bc9047c78784ebe5ac5748dbcb66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  274. Start importing Assets/Examples/TEST using Guid(bad7bc9047c78784ebe5ac5748dbcb66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9197a14471bfc6fcabe0d4b2e08e9309') in 0.002641 seconds
  275. Import took 0.005639 seconds .
  276. ========================================================================
  277. Received Import Request.
  278. Time since last request: 1.158077 seconds.
  279. path: Assets/Examples/TEST/Scripts
  280. artifactKey: Guid(697bea3e38c5a2d45af275a98a2bce05) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  281. Start importing Assets/Examples/TEST/Scripts using Guid(697bea3e38c5a2d45af275a98a2bce05) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a626765ecde3b9a837b9890d16866cb7') in 0.001896 seconds
  282. Import took 0.005162 seconds .
  283. ========================================================================
  284. Received Import Request.
  285. Time since last request: 0.393111 seconds.
  286. path: Assets/Examples/TEST/Scripts/ExampleTestScript.cs
  287. artifactKey: Guid(7623bd500ec06b0479a9ad3d15d65d77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  288. Start importing Assets/Examples/TEST/Scripts/ExampleTestScript.cs using Guid(7623bd500ec06b0479a9ad3d15d65d77) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5fd09caf137fd2d426552fe313f66a30') in 0.001904 seconds
  289. Import took 0.005534 seconds .
  290. ========================================================================
  291. Received Prepare
  292. Registering precompiled user dll's ...
  293. Registered in 0.003154 seconds.
  294. Begin MonoManager ReloadAssembly
  295. Native extension for WindowsStandalone target not found
  296. Native extension for WebGL target not found
  297. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  298. Preloading 0 native plugins for Editor in 0.00 ms.
  299. Mono: successfully reloaded assembly
  300. - Completed reload, in 1.042 seconds
  301. Domain Reload Profiling:
  302. ReloadAssembly (1043ms)
  303. BeginReloadAssembly (124ms)
  304. ExecutionOrderSort (0ms)
  305. DisableScriptedObjects (6ms)
  306. BackupInstance (0ms)
  307. ReleaseScriptingObjects (0ms)
  308. CreateAndSetChildDomain (31ms)
  309. EndReloadAssembly (856ms)
  310. LoadAssemblies (94ms)
  311. RebuildTransferFunctionScriptingTraits (0ms)
  312. SetupTypeCache (268ms)
  313. ReleaseScriptCaches (1ms)
  314. RebuildScriptCaches (40ms)
  315. SetupLoadedEditorAssemblies (360ms)
  316. LogAssemblyErrors (0ms)
  317. InitializePlatformSupportModulesInManaged (6ms)
  318. SetLoadedEditorAssemblies (0ms)
  319. RefreshPlugins (1ms)
  320. BeforeProcessingInitializeOnLoad (94ms)
  321. ProcessInitializeOnLoadAttributes (244ms)
  322. ProcessInitializeOnLoadMethodAttributes (5ms)
  323. AfterProcessingInitializeOnLoad (10ms)
  324. EditorAssembliesLoaded (0ms)
  325. ExecutionOrderSort2 (0ms)
  326. AwakeInstancesAfterBackupRestoration (10ms)
  327. Platform modules already initialized, skipping
  328. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  329. Preloading 0 native plugins for Editor in 0.00 ms.
  330. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  331. System memory in use before: 170.0 MB.
  332. System memory in use after: 170.1 MB.
  333. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2596.
  334. Total: 2.453400 ms (FindLiveObjects: 0.180800 ms CreateObjectMapping: 0.075200 ms MarkObjects: 2.181000 ms DeleteObjects: 0.015600 ms)
  335. AssetImportParameters requested are different than current active one (requested -> active):
  336. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  337. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  338. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  339. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  340. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  341. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  342. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  343. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  344. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  345. ========================================================================
  346. Received Import Request.
  347. Time since last request: 7.805128 seconds.
  348. path: Assets/Examples/_TEST
  349. artifactKey: Guid(bad7bc9047c78784ebe5ac5748dbcb66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  350. Start importing Assets/Examples/_TEST using Guid(bad7bc9047c78784ebe5ac5748dbcb66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '98af3a2f02b5483611ac5f55454d99c7') in 0.004825 seconds
  351. Import took 0.008001 seconds .
  352. ========================================================================
  353. Received Import Request.
  354. Time since last request: 1.488132 seconds.
  355. path: Assets/Examples/_TEST/Scenes
  356. artifactKey: Guid(7e77b82fdc0b2ad409ca38aafa43d608) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  357. Start importing Assets/Examples/_TEST/Scenes using Guid(7e77b82fdc0b2ad409ca38aafa43d608) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e9ff38d6a3910e2cd319bffcdc4d861c') in 0.002038 seconds
  358. Import took 0.022142 seconds .
  359. ========================================================================
  360. Received Import Request.
  361. Time since last request: 0.388332 seconds.
  362. path: Assets/Examples/_TEST/Scenes/Example.unity
  363. artifactKey: Guid(ab263b4030d26444ba853932a266833e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  364. Start importing Assets/Examples/_TEST/Scenes/Example.unity using Guid(ab263b4030d26444ba853932a266833e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '992578e9351d05e93efb9df225099c36') in 0.013986 seconds
  365. Import took 0.016810 seconds .
  366. ========================================================================
  367. Received Prepare
  368. Registering precompiled user dll's ...
  369. Registered in 0.003099 seconds.
  370. Begin MonoManager ReloadAssembly
  371. Native extension for WindowsStandalone target not found
  372. Native extension for WebGL target not found
  373. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  374. Preloading 0 native plugins for Editor in 0.00 ms.
  375. Mono: successfully reloaded assembly
  376. - Completed reload, in 1.037 seconds
  377. Domain Reload Profiling:
  378. ReloadAssembly (1038ms)
  379. BeginReloadAssembly (121ms)
  380. ExecutionOrderSort (0ms)
  381. DisableScriptedObjects (6ms)
  382. BackupInstance (0ms)
  383. ReleaseScriptingObjects (0ms)
  384. CreateAndSetChildDomain (31ms)
  385. EndReloadAssembly (851ms)
  386. LoadAssemblies (93ms)
  387. RebuildTransferFunctionScriptingTraits (0ms)
  388. SetupTypeCache (266ms)
  389. ReleaseScriptCaches (1ms)
  390. RebuildScriptCaches (40ms)
  391. SetupLoadedEditorAssemblies (362ms)
  392. LogAssemblyErrors (0ms)
  393. InitializePlatformSupportModulesInManaged (6ms)
  394. SetLoadedEditorAssemblies (0ms)
  395. RefreshPlugins (1ms)
  396. BeforeProcessingInitializeOnLoad (98ms)
  397. ProcessInitializeOnLoadAttributes (241ms)
  398. ProcessInitializeOnLoadMethodAttributes (5ms)
  399. AfterProcessingInitializeOnLoad (10ms)
  400. EditorAssembliesLoaded (0ms)
  401. ExecutionOrderSort2 (0ms)
  402. AwakeInstancesAfterBackupRestoration (9ms)
  403. Platform modules already initialized, skipping
  404. Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
  405. Preloading 0 native plugins for Editor in 0.00 ms.
  406. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  407. System memory in use before: 170.0 MB.
  408. System memory in use after: 170.1 MB.
  409. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2600.
  410. Total: 2.497100 ms (FindLiveObjects: 0.178900 ms CreateObjectMapping: 0.073900 ms MarkObjects: 2.229000 ms DeleteObjects: 0.014600 ms)
  411. AssetImportParameters requested are different than current active one (requested -> active):
  412. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  413. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  414. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  415. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  416. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  417. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  418. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  419. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  420. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  421. ========================================================================
  422. Received Prepare
  423. Registering precompiled user dll's ...
  424. Registered in 0.003024 seconds.
  425. Begin MonoManager ReloadAssembly
  426. Native extension for WindowsStandalone target not found
  427. Native extension for WebGL target not found
  428. Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
  429. Preloading 0 native plugins for Editor in 0.00 ms.
  430. Mono: successfully reloaded assembly
  431. - Completed reload, in 1.019 seconds
  432. Domain Reload Profiling:
  433. ReloadAssembly (1019ms)
  434. BeginReloadAssembly (114ms)
  435. ExecutionOrderSort (0ms)
  436. DisableScriptedObjects (6ms)
  437. BackupInstance (0ms)
  438. ReleaseScriptingObjects (0ms)
  439. CreateAndSetChildDomain (29ms)
  440. EndReloadAssembly (839ms)
  441. LoadAssemblies (94ms)
  442. RebuildTransferFunctionScriptingTraits (0ms)
  443. SetupTypeCache (260ms)
  444. ReleaseScriptCaches (1ms)
  445. RebuildScriptCaches (40ms)
  446. SetupLoadedEditorAssemblies (356ms)
  447. LogAssemblyErrors (0ms)
  448. InitializePlatformSupportModulesInManaged (6ms)
  449. SetLoadedEditorAssemblies (0ms)
  450. RefreshPlugins (0ms)
  451. BeforeProcessingInitializeOnLoad (92ms)
  452. ProcessInitializeOnLoadAttributes (242ms)
  453. ProcessInitializeOnLoadMethodAttributes (5ms)
  454. AfterProcessingInitializeOnLoad (10ms)
  455. EditorAssembliesLoaded (0ms)
  456. ExecutionOrderSort2 (0ms)
  457. AwakeInstancesAfterBackupRestoration (10ms)
  458. Platform modules already initialized, skipping
  459. Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
  460. Preloading 0 native plugins for Editor in 0.00 ms.
  461. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  462. System memory in use before: 170.0 MB.
  463. System memory in use after: 170.1 MB.
  464. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2604.
  465. Total: 2.544300 ms (FindLiveObjects: 0.168600 ms CreateObjectMapping: 0.065800 ms MarkObjects: 2.293800 ms DeleteObjects: 0.015200 ms)
  466. AssetImportParameters requested are different than current active one (requested -> active):
  467. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  468. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  469. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  470. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  471. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  472. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  473. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  474. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  475. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  476. ========================================================================
  477. Received Prepare
  478. Registering precompiled user dll's ...
  479. Registered in 0.003295 seconds.
  480. Begin MonoManager ReloadAssembly
  481. Native extension for WindowsStandalone target not found
  482. Native extension for WebGL target not found
  483. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  484. Preloading 0 native plugins for Editor in 0.00 ms.
  485. Mono: successfully reloaded assembly
  486. - Completed reload, in 1.036 seconds
  487. Domain Reload Profiling:
  488. ReloadAssembly (1036ms)
  489. BeginReloadAssembly (111ms)
  490. ExecutionOrderSort (0ms)
  491. DisableScriptedObjects (6ms)
  492. BackupInstance (0ms)
  493. ReleaseScriptingObjects (0ms)
  494. CreateAndSetChildDomain (29ms)
  495. EndReloadAssembly (856ms)
  496. LoadAssemblies (95ms)
  497. RebuildTransferFunctionScriptingTraits (0ms)
  498. SetupTypeCache (266ms)
  499. ReleaseScriptCaches (1ms)
  500. RebuildScriptCaches (40ms)
  501. SetupLoadedEditorAssemblies (364ms)
  502. LogAssemblyErrors (0ms)
  503. InitializePlatformSupportModulesInManaged (6ms)
  504. SetLoadedEditorAssemblies (0ms)
  505. RefreshPlugins (1ms)
  506. BeforeProcessingInitializeOnLoad (96ms)
  507. ProcessInitializeOnLoadAttributes (245ms)
  508. ProcessInitializeOnLoadMethodAttributes (5ms)
  509. AfterProcessingInitializeOnLoad (10ms)
  510. EditorAssembliesLoaded (0ms)
  511. ExecutionOrderSort2 (0ms)
  512. AwakeInstancesAfterBackupRestoration (10ms)
  513. Platform modules already initialized, skipping
  514. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  515. Preloading 0 native plugins for Editor in 0.00 ms.
  516. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  517. System memory in use before: 170.0 MB.
  518. System memory in use after: 170.1 MB.
  519. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2608.
  520. Total: 2.474900 ms (FindLiveObjects: 0.175200 ms CreateObjectMapping: 0.066700 ms MarkObjects: 2.216700 ms DeleteObjects: 0.015200 ms)
  521. AssetImportParameters requested are different than current active one (requested -> active):
  522. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  523. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  524. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  525. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  526. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  527. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  528. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  529. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  530. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  531. ========================================================================
  532. Received Prepare
  533. Registering precompiled user dll's ...
  534. Registered in 0.003276 seconds.
  535. Begin MonoManager ReloadAssembly
  536. Native extension for WindowsStandalone target not found
  537. Native extension for WebGL target not found
  538. Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
  539. Preloading 0 native plugins for Editor in 0.00 ms.
  540. Mono: successfully reloaded assembly
  541. - Completed reload, in 1.039 seconds
  542. Domain Reload Profiling:
  543. ReloadAssembly (1039ms)
  544. BeginReloadAssembly (119ms)
  545. ExecutionOrderSort (0ms)
  546. DisableScriptedObjects (6ms)
  547. BackupInstance (0ms)
  548. ReleaseScriptingObjects (0ms)
  549. CreateAndSetChildDomain (29ms)
  550. EndReloadAssembly (854ms)
  551. LoadAssemblies (95ms)
  552. RebuildTransferFunctionScriptingTraits (0ms)
  553. SetupTypeCache (268ms)
  554. ReleaseScriptCaches (1ms)
  555. RebuildScriptCaches (39ms)
  556. SetupLoadedEditorAssemblies (360ms)
  557. LogAssemblyErrors (0ms)
  558. InitializePlatformSupportModulesInManaged (6ms)
  559. SetLoadedEditorAssemblies (0ms)
  560. RefreshPlugins (1ms)
  561. BeforeProcessingInitializeOnLoad (94ms)
  562. ProcessInitializeOnLoadAttributes (243ms)
  563. ProcessInitializeOnLoadMethodAttributes (5ms)
  564. AfterProcessingInitializeOnLoad (11ms)
  565. EditorAssembliesLoaded (0ms)
  566. ExecutionOrderSort2 (0ms)
  567. AwakeInstancesAfterBackupRestoration (10ms)
  568. Platform modules already initialized, skipping
  569. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  570. Preloading 0 native plugins for Editor in 0.00 ms.
  571. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  572. System memory in use before: 170.0 MB.
  573. System memory in use after: 170.2 MB.
  574. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2612.
  575. Total: 2.589600 ms (FindLiveObjects: 0.186700 ms CreateObjectMapping: 0.078800 ms MarkObjects: 2.308200 ms DeleteObjects: 0.014900 ms)
  576. AssetImportParameters requested are different than current active one (requested -> active):
  577. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  578. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  579. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  580. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  581. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  582. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  583. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  584. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  585. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  586. ========================================================================
  587. Received Prepare
  588. Registering precompiled user dll's ...
  589. Registered in 0.003217 seconds.
  590. Begin MonoManager ReloadAssembly
  591. Native extension for WindowsStandalone target not found
  592. Native extension for WebGL target not found
  593. Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
  594. Preloading 0 native plugins for Editor in 0.00 ms.
  595. Mono: successfully reloaded assembly
  596. - Completed reload, in 1.033 seconds
  597. Domain Reload Profiling:
  598. ReloadAssembly (1033ms)
  599. BeginReloadAssembly (116ms)
  600. ExecutionOrderSort (0ms)
  601. DisableScriptedObjects (6ms)
  602. BackupInstance (0ms)
  603. ReleaseScriptingObjects (0ms)
  604. CreateAndSetChildDomain (29ms)
  605. EndReloadAssembly (849ms)
  606. LoadAssemblies (94ms)
  607. RebuildTransferFunctionScriptingTraits (0ms)
  608. SetupTypeCache (266ms)
  609. ReleaseScriptCaches (1ms)
  610. RebuildScriptCaches (39ms)
  611. SetupLoadedEditorAssemblies (358ms)
  612. LogAssemblyErrors (0ms)
  613. InitializePlatformSupportModulesInManaged (6ms)
  614. SetLoadedEditorAssemblies (0ms)
  615. RefreshPlugins (1ms)
  616. BeforeProcessingInitializeOnLoad (96ms)
  617. ProcessInitializeOnLoadAttributes (241ms)
  618. ProcessInitializeOnLoadMethodAttributes (5ms)
  619. AfterProcessingInitializeOnLoad (10ms)
  620. EditorAssembliesLoaded (0ms)
  621. ExecutionOrderSort2 (0ms)
  622. AwakeInstancesAfterBackupRestoration (10ms)
  623. Platform modules already initialized, skipping
  624. Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
  625. Preloading 0 native plugins for Editor in 0.00 ms.
  626. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  627. System memory in use before: 170.0 MB.
  628. System memory in use after: 170.2 MB.
  629. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2616.
  630. Total: 2.559600 ms (FindLiveObjects: 0.176800 ms CreateObjectMapping: 0.074200 ms MarkObjects: 2.292000 ms DeleteObjects: 0.015900 ms)
  631. AssetImportParameters requested are different than current active one (requested -> active):
  632. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  633. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  634. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  635. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  636. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  637. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  638. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  639. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  640. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  641. ========================================================================
  642. Received Prepare
  643. Registering precompiled user dll's ...
  644. Registered in 0.003130 seconds.
  645. Begin MonoManager ReloadAssembly
  646. Native extension for WindowsStandalone target not found
  647. Native extension for WebGL target not found
  648. Refreshing native plugins compatible for Editor in 0.62 ms, found 3 plugins.
  649. Preloading 0 native plugins for Editor in 0.00 ms.
  650. Mono: successfully reloaded assembly
  651. - Completed reload, in 1.034 seconds
  652. Domain Reload Profiling:
  653. ReloadAssembly (1034ms)
  654. BeginReloadAssembly (121ms)
  655. ExecutionOrderSort (0ms)
  656. DisableScriptedObjects (6ms)
  657. BackupInstance (0ms)
  658. ReleaseScriptingObjects (0ms)
  659. CreateAndSetChildDomain (29ms)
  660. EndReloadAssembly (849ms)
  661. LoadAssemblies (96ms)
  662. RebuildTransferFunctionScriptingTraits (0ms)
  663. SetupTypeCache (264ms)
  664. ReleaseScriptCaches (1ms)
  665. RebuildScriptCaches (39ms)
  666. SetupLoadedEditorAssemblies (361ms)
  667. LogAssemblyErrors (0ms)
  668. InitializePlatformSupportModulesInManaged (6ms)
  669. SetLoadedEditorAssemblies (0ms)
  670. RefreshPlugins (1ms)
  671. BeforeProcessingInitializeOnLoad (94ms)
  672. ProcessInitializeOnLoadAttributes (245ms)
  673. ProcessInitializeOnLoadMethodAttributes (5ms)
  674. AfterProcessingInitializeOnLoad (11ms)
  675. EditorAssembliesLoaded (0ms)
  676. ExecutionOrderSort2 (0ms)
  677. AwakeInstancesAfterBackupRestoration (10ms)
  678. Platform modules already initialized, skipping
  679. Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
  680. Preloading 0 native plugins for Editor in 0.00 ms.
  681. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  682. System memory in use before: 170.1 MB.
  683. System memory in use after: 170.2 MB.
  684. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2620.
  685. Total: 2.404300 ms (FindLiveObjects: 0.174800 ms CreateObjectMapping: 0.071700 ms MarkObjects: 2.141600 ms DeleteObjects: 0.015300 ms)
  686. AssetImportParameters requested are different than current active one (requested -> active):
  687. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  688. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  689. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  690. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  691. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  692. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  693. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  694. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  695. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  696. ========================================================================
  697. Received Prepare
  698. Registering precompiled user dll's ...
  699. Registered in 0.003073 seconds.
  700. Begin MonoManager ReloadAssembly
  701. Native extension for WindowsStandalone target not found
  702. Native extension for WebGL target not found
  703. Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
  704. Preloading 0 native plugins for Editor in 0.00 ms.
  705. Mono: successfully reloaded assembly
  706. - Completed reload, in 1.050 seconds
  707. Domain Reload Profiling:
  708. ReloadAssembly (1050ms)
  709. BeginReloadAssembly (127ms)
  710. ExecutionOrderSort (0ms)
  711. DisableScriptedObjects (6ms)
  712. BackupInstance (0ms)
  713. ReleaseScriptingObjects (0ms)
  714. CreateAndSetChildDomain (28ms)
  715. EndReloadAssembly (859ms)
  716. LoadAssemblies (99ms)
  717. RebuildTransferFunctionScriptingTraits (0ms)
  718. SetupTypeCache (271ms)
  719. ReleaseScriptCaches (1ms)
  720. RebuildScriptCaches (40ms)
  721. SetupLoadedEditorAssemblies (362ms)
  722. LogAssemblyErrors (0ms)
  723. InitializePlatformSupportModulesInManaged (6ms)
  724. SetLoadedEditorAssemblies (0ms)
  725. RefreshPlugins (1ms)
  726. BeforeProcessingInitializeOnLoad (96ms)
  727. ProcessInitializeOnLoadAttributes (244ms)
  728. ProcessInitializeOnLoadMethodAttributes (5ms)
  729. AfterProcessingInitializeOnLoad (10ms)
  730. EditorAssembliesLoaded (0ms)
  731. ExecutionOrderSort2 (0ms)
  732. AwakeInstancesAfterBackupRestoration (9ms)
  733. Platform modules already initialized, skipping
  734. Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
  735. Preloading 0 native plugins for Editor in 0.00 ms.
  736. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  737. System memory in use before: 170.1 MB.
  738. System memory in use after: 170.2 MB.
  739. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2624.
  740. Total: 2.735000 ms (FindLiveObjects: 0.170700 ms CreateObjectMapping: 0.067700 ms MarkObjects: 2.478700 ms DeleteObjects: 0.016900 ms)
  741. AssetImportParameters requested are different than current active one (requested -> active):
  742. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  743. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  744. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  745. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  746. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  747. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  748. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  749. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  750. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  751. ========================================================================
  752. Received Prepare
  753. Registering precompiled user dll's ...
  754. Registered in 0.003041 seconds.
  755. Begin MonoManager ReloadAssembly
  756. Native extension for WindowsStandalone target not found
  757. Native extension for WebGL target not found
  758. Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
  759. Preloading 0 native plugins for Editor in 0.00 ms.
  760. Mono: successfully reloaded assembly
  761. - Completed reload, in 1.052 seconds
  762. Domain Reload Profiling:
  763. ReloadAssembly (1052ms)
  764. BeginReloadAssembly (118ms)
  765. ExecutionOrderSort (0ms)
  766. DisableScriptedObjects (6ms)
  767. BackupInstance (0ms)
  768. ReleaseScriptingObjects (0ms)
  769. CreateAndSetChildDomain (29ms)
  770. EndReloadAssembly (866ms)
  771. LoadAssemblies (98ms)
  772. RebuildTransferFunctionScriptingTraits (0ms)
  773. SetupTypeCache (271ms)
  774. ReleaseScriptCaches (1ms)
  775. RebuildScriptCaches (40ms)
  776. SetupLoadedEditorAssemblies (362ms)
  777. LogAssemblyErrors (0ms)
  778. InitializePlatformSupportModulesInManaged (6ms)
  779. SetLoadedEditorAssemblies (0ms)
  780. RefreshPlugins (1ms)
  781. BeforeProcessingInitializeOnLoad (95ms)
  782. ProcessInitializeOnLoadAttributes (244ms)
  783. ProcessInitializeOnLoadMethodAttributes (5ms)
  784. AfterProcessingInitializeOnLoad (11ms)
  785. EditorAssembliesLoaded (0ms)
  786. ExecutionOrderSort2 (0ms)
  787. AwakeInstancesAfterBackupRestoration (10ms)
  788. Platform modules already initialized, skipping
  789. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  790. Preloading 0 native plugins for Editor in 0.00 ms.
  791. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  792. System memory in use before: 170.1 MB.
  793. System memory in use after: 170.2 MB.
  794. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2628.
  795. Total: 2.519600 ms (FindLiveObjects: 0.179600 ms CreateObjectMapping: 0.070700 ms MarkObjects: 2.251000 ms DeleteObjects: 0.017500 ms)
  796. AssetImportParameters requested are different than current active one (requested -> active):
  797. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  798. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  799. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  800. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  801. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  802. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  803. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  804. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  805. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  806. ========================================================================
  807. Received Prepare
  808. Registering precompiled user dll's ...
  809. Registered in 0.002948 seconds.
  810. Begin MonoManager ReloadAssembly
  811. Native extension for WindowsStandalone target not found
  812. Native extension for WebGL target not found
  813. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  814. Preloading 0 native plugins for Editor in 0.00 ms.
  815. Mono: successfully reloaded assembly
  816. - Completed reload, in 1.042 seconds
  817. Domain Reload Profiling:
  818. ReloadAssembly (1042ms)
  819. BeginReloadAssembly (119ms)
  820. ExecutionOrderSort (0ms)
  821. DisableScriptedObjects (6ms)
  822. BackupInstance (0ms)
  823. ReleaseScriptingObjects (0ms)
  824. CreateAndSetChildDomain (30ms)
  825. EndReloadAssembly (857ms)
  826. LoadAssemblies (95ms)
  827. RebuildTransferFunctionScriptingTraits (0ms)
  828. SetupTypeCache (269ms)
  829. ReleaseScriptCaches (1ms)
  830. RebuildScriptCaches (40ms)
  831. SetupLoadedEditorAssemblies (361ms)
  832. LogAssemblyErrors (0ms)
  833. InitializePlatformSupportModulesInManaged (6ms)
  834. SetLoadedEditorAssemblies (0ms)
  835. RefreshPlugins (1ms)
  836. BeforeProcessingInitializeOnLoad (92ms)
  837. ProcessInitializeOnLoadAttributes (247ms)
  838. ProcessInitializeOnLoadMethodAttributes (5ms)
  839. AfterProcessingInitializeOnLoad (10ms)
  840. EditorAssembliesLoaded (0ms)
  841. ExecutionOrderSort2 (0ms)
  842. AwakeInstancesAfterBackupRestoration (10ms)
  843. Platform modules already initialized, skipping
  844. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  845. Preloading 0 native plugins for Editor in 0.00 ms.
  846. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  847. System memory in use before: 170.1 MB.
  848. System memory in use after: 170.2 MB.
  849. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2632.
  850. Total: 2.655900 ms (FindLiveObjects: 0.202500 ms CreateObjectMapping: 0.085200 ms MarkObjects: 2.350800 ms DeleteObjects: 0.016200 ms)
  851. AssetImportParameters requested are different than current active one (requested -> active):
  852. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  853. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  854. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  855. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  856. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  857. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  858. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  859. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  860. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  861. ========================================================================
  862. Received Prepare
  863. Registering precompiled user dll's ...
  864. Registered in 0.003144 seconds.
  865. Begin MonoManager ReloadAssembly
  866. Native extension for WindowsStandalone target not found
  867. Native extension for WebGL target not found
  868. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  869. Preloading 0 native plugins for Editor in 0.00 ms.
  870. Mono: successfully reloaded assembly
  871. - Completed reload, in 1.034 seconds
  872. Domain Reload Profiling:
  873. ReloadAssembly (1034ms)
  874. BeginReloadAssembly (109ms)
  875. ExecutionOrderSort (0ms)
  876. DisableScriptedObjects (6ms)
  877. BackupInstance (0ms)
  878. ReleaseScriptingObjects (0ms)
  879. CreateAndSetChildDomain (28ms)
  880. EndReloadAssembly (859ms)
  881. LoadAssemblies (94ms)
  882. RebuildTransferFunctionScriptingTraits (0ms)
  883. SetupTypeCache (268ms)
  884. ReleaseScriptCaches (1ms)
  885. RebuildScriptCaches (39ms)
  886. SetupLoadedEditorAssemblies (362ms)
  887. LogAssemblyErrors (0ms)
  888. InitializePlatformSupportModulesInManaged (6ms)
  889. SetLoadedEditorAssemblies (0ms)
  890. RefreshPlugins (0ms)
  891. BeforeProcessingInitializeOnLoad (93ms)
  892. ProcessInitializeOnLoadAttributes (246ms)
  893. ProcessInitializeOnLoadMethodAttributes (5ms)
  894. AfterProcessingInitializeOnLoad (10ms)
  895. EditorAssembliesLoaded (0ms)
  896. ExecutionOrderSort2 (0ms)
  897. AwakeInstancesAfterBackupRestoration (10ms)
  898. Platform modules already initialized, skipping
  899. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  900. Preloading 0 native plugins for Editor in 0.00 ms.
  901. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  902. System memory in use before: 170.1 MB.
  903. System memory in use after: 170.2 MB.
  904. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2636.
  905. Total: 2.420400 ms (FindLiveObjects: 0.188700 ms CreateObjectMapping: 0.076800 ms MarkObjects: 2.138400 ms DeleteObjects: 0.015500 ms)
  906. AssetImportParameters requested are different than current active one (requested -> active):
  907. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  908. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  909. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  910. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  911. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  912. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  913. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  914. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  915. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  916. ========================================================================
  917. Received Prepare
  918. Registering precompiled user dll's ...
  919. Registered in 0.002971 seconds.
  920. Begin MonoManager ReloadAssembly
  921. Native extension for WindowsStandalone target not found
  922. Native extension for WebGL target not found
  923. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  924. Preloading 0 native plugins for Editor in 0.00 ms.
  925. Mono: successfully reloaded assembly
  926. - Completed reload, in 1.040 seconds
  927. Domain Reload Profiling:
  928. ReloadAssembly (1041ms)
  929. BeginReloadAssembly (118ms)
  930. ExecutionOrderSort (0ms)
  931. DisableScriptedObjects (6ms)
  932. BackupInstance (0ms)
  933. ReleaseScriptingObjects (0ms)
  934. CreateAndSetChildDomain (30ms)
  935. EndReloadAssembly (855ms)
  936. LoadAssemblies (94ms)
  937. RebuildTransferFunctionScriptingTraits (0ms)
  938. SetupTypeCache (265ms)
  939. ReleaseScriptCaches (1ms)
  940. RebuildScriptCaches (42ms)
  941. SetupLoadedEditorAssemblies (359ms)
  942. LogAssemblyErrors (0ms)
  943. InitializePlatformSupportModulesInManaged (6ms)
  944. SetLoadedEditorAssemblies (0ms)
  945. RefreshPlugins (1ms)
  946. BeforeProcessingInitializeOnLoad (95ms)
  947. ProcessInitializeOnLoadAttributes (242ms)
  948. ProcessInitializeOnLoadMethodAttributes (5ms)
  949. AfterProcessingInitializeOnLoad (10ms)
  950. EditorAssembliesLoaded (0ms)
  951. ExecutionOrderSort2 (0ms)
  952. AwakeInstancesAfterBackupRestoration (10ms)
  953. Platform modules already initialized, skipping
  954. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  955. Preloading 0 native plugins for Editor in 0.00 ms.
  956. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  957. System memory in use before: 170.1 MB.
  958. System memory in use after: 170.2 MB.
  959. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2640.
  960. Total: 2.605800 ms (FindLiveObjects: 0.179000 ms CreateObjectMapping: 0.072300 ms MarkObjects: 2.338100 ms DeleteObjects: 0.015500 ms)
  961. AssetImportParameters requested are different than current active one (requested -> active):
  962. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  963. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  964. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  965. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  966. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  967. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  968. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  969. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  970. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  971. ========================================================================
  972. Received Prepare
  973. Registering precompiled user dll's ...
  974. Registered in 0.002989 seconds.
  975. Begin MonoManager ReloadAssembly
  976. Native extension for WindowsStandalone target not found
  977. Native extension for WebGL target not found
  978. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  979. Preloading 0 native plugins for Editor in 0.00 ms.
  980. Mono: successfully reloaded assembly
  981. - Completed reload, in 1.050 seconds
  982. Domain Reload Profiling:
  983. ReloadAssembly (1050ms)
  984. BeginReloadAssembly (123ms)
  985. ExecutionOrderSort (0ms)
  986. DisableScriptedObjects (6ms)
  987. BackupInstance (0ms)
  988. ReleaseScriptingObjects (0ms)
  989. CreateAndSetChildDomain (30ms)
  990. EndReloadAssembly (861ms)
  991. LoadAssemblies (97ms)
  992. RebuildTransferFunctionScriptingTraits (0ms)
  993. SetupTypeCache (266ms)
  994. ReleaseScriptCaches (1ms)
  995. RebuildScriptCaches (40ms)
  996. SetupLoadedEditorAssemblies (363ms)
  997. LogAssemblyErrors (0ms)
  998. InitializePlatformSupportModulesInManaged (7ms)
  999. SetLoadedEditorAssemblies (0ms)
  1000. RefreshPlugins (1ms)
  1001. BeforeProcessingInitializeOnLoad (96ms)
  1002. ProcessInitializeOnLoadAttributes (244ms)
  1003. ProcessInitializeOnLoadMethodAttributes (5ms)
  1004. AfterProcessingInitializeOnLoad (10ms)
  1005. EditorAssembliesLoaded (0ms)
  1006. ExecutionOrderSort2 (0ms)
  1007. AwakeInstancesAfterBackupRestoration (10ms)
  1008. Platform modules already initialized, skipping
  1009. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  1010. Preloading 0 native plugins for Editor in 0.00 ms.
  1011. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  1012. System memory in use before: 170.1 MB.
  1013. System memory in use after: 170.2 MB.
  1014. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2644.
  1015. Total: 2.490800 ms (FindLiveObjects: 0.173500 ms CreateObjectMapping: 0.070300 ms MarkObjects: 2.231000 ms DeleteObjects: 0.014800 ms)
  1016. AssetImportParameters requested are different than current active one (requested -> active):
  1017. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1018. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1019. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1020. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1021. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1022. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1023. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1024. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1025. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1026. ========================================================================
  1027. Received Prepare
  1028. Registering precompiled user dll's ...
  1029. Registered in 0.003800 seconds.
  1030. Begin MonoManager ReloadAssembly
  1031. Native extension for WindowsStandalone target not found
  1032. Native extension for WebGL target not found
  1033. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  1034. Preloading 0 native plugins for Editor in 0.00 ms.
  1035. Mono: successfully reloaded assembly
  1036. - Completed reload, in 1.060 seconds
  1037. Domain Reload Profiling:
  1038. ReloadAssembly (1060ms)
  1039. BeginReloadAssembly (128ms)
  1040. ExecutionOrderSort (0ms)
  1041. DisableScriptedObjects (6ms)
  1042. BackupInstance (0ms)
  1043. ReleaseScriptingObjects (0ms)
  1044. CreateAndSetChildDomain (33ms)
  1045. EndReloadAssembly (866ms)
  1046. LoadAssemblies (96ms)
  1047. RebuildTransferFunctionScriptingTraits (0ms)
  1048. SetupTypeCache (272ms)
  1049. ReleaseScriptCaches (1ms)
  1050. RebuildScriptCaches (40ms)
  1051. SetupLoadedEditorAssemblies (363ms)
  1052. LogAssemblyErrors (0ms)
  1053. InitializePlatformSupportModulesInManaged (6ms)
  1054. SetLoadedEditorAssemblies (0ms)
  1055. RefreshPlugins (1ms)
  1056. BeforeProcessingInitializeOnLoad (93ms)
  1057. ProcessInitializeOnLoadAttributes (247ms)
  1058. ProcessInitializeOnLoadMethodAttributes (5ms)
  1059. AfterProcessingInitializeOnLoad (11ms)
  1060. EditorAssembliesLoaded (0ms)
  1061. ExecutionOrderSort2 (0ms)
  1062. AwakeInstancesAfterBackupRestoration (10ms)
  1063. Platform modules already initialized, skipping
  1064. Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
  1065. Preloading 0 native plugins for Editor in 0.00 ms.
  1066. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  1067. System memory in use before: 170.1 MB.
  1068. System memory in use after: 170.2 MB.
  1069. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2648.
  1070. Total: 2.537700 ms (FindLiveObjects: 0.182800 ms CreateObjectMapping: 0.074100 ms MarkObjects: 2.264500 ms DeleteObjects: 0.015400 ms)
  1071. AssetImportParameters requested are different than current active one (requested -> active):
  1072. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1073. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1074. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1075. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1076. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1077. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1078. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1079. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1080. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1081. ========================================================================
  1082. Received Prepare
  1083. Registering precompiled user dll's ...
  1084. Registered in 0.003060 seconds.
  1085. Begin MonoManager ReloadAssembly
  1086. Native extension for WindowsStandalone target not found
  1087. Native extension for WebGL target not found
  1088. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  1089. Preloading 0 native plugins for Editor in 0.00 ms.
  1090. Mono: successfully reloaded assembly
  1091. - Completed reload, in 1.038 seconds
  1092. Domain Reload Profiling:
  1093. ReloadAssembly (1039ms)
  1094. BeginReloadAssembly (115ms)
  1095. ExecutionOrderSort (0ms)
  1096. DisableScriptedObjects (6ms)
  1097. BackupInstance (0ms)
  1098. ReleaseScriptingObjects (0ms)
  1099. CreateAndSetChildDomain (29ms)
  1100. EndReloadAssembly (858ms)
  1101. LoadAssemblies (93ms)
  1102. RebuildTransferFunctionScriptingTraits (0ms)
  1103. SetupTypeCache (270ms)
  1104. ReleaseScriptCaches (1ms)
  1105. RebuildScriptCaches (39ms)
  1106. SetupLoadedEditorAssemblies (361ms)
  1107. LogAssemblyErrors (0ms)
  1108. InitializePlatformSupportModulesInManaged (6ms)
  1109. SetLoadedEditorAssemblies (0ms)
  1110. RefreshPlugins (0ms)
  1111. BeforeProcessingInitializeOnLoad (95ms)
  1112. ProcessInitializeOnLoadAttributes (243ms)
  1113. ProcessInitializeOnLoadMethodAttributes (5ms)
  1114. AfterProcessingInitializeOnLoad (11ms)
  1115. EditorAssembliesLoaded (0ms)
  1116. ExecutionOrderSort2 (0ms)
  1117. AwakeInstancesAfterBackupRestoration (10ms)
  1118. Platform modules already initialized, skipping
  1119. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  1120. Preloading 0 native plugins for Editor in 0.00 ms.
  1121. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  1122. System memory in use before: 170.1 MB.
  1123. System memory in use after: 170.2 MB.
  1124. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2652.
  1125. Total: 2.547300 ms (FindLiveObjects: 0.182600 ms CreateObjectMapping: 0.071900 ms MarkObjects: 2.276100 ms DeleteObjects: 0.015900 ms)
  1126. AssetImportParameters requested are different than current active one (requested -> active):
  1127. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1128. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1129. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1130. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1131. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1132. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1133. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1134. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1135. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1136. ========================================================================
  1137. Received Prepare
  1138. Registering precompiled user dll's ...
  1139. Registered in 0.003025 seconds.
  1140. Begin MonoManager ReloadAssembly
  1141. Native extension for WindowsStandalone target not found
  1142. Native extension for WebGL target not found
  1143. Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
  1144. Preloading 0 native plugins for Editor in 0.00 ms.
  1145. Mono: successfully reloaded assembly
  1146. - Completed reload, in 1.045 seconds
  1147. Domain Reload Profiling:
  1148. ReloadAssembly (1045ms)
  1149. BeginReloadAssembly (115ms)
  1150. ExecutionOrderSort (0ms)
  1151. DisableScriptedObjects (6ms)
  1152. BackupInstance (0ms)
  1153. ReleaseScriptingObjects (0ms)
  1154. CreateAndSetChildDomain (29ms)
  1155. EndReloadAssembly (863ms)
  1156. LoadAssemblies (93ms)
  1157. RebuildTransferFunctionScriptingTraits (0ms)
  1158. SetupTypeCache (270ms)
  1159. ReleaseScriptCaches (1ms)
  1160. RebuildScriptCaches (40ms)
  1161. SetupLoadedEditorAssemblies (367ms)
  1162. LogAssemblyErrors (0ms)
  1163. InitializePlatformSupportModulesInManaged (6ms)
  1164. SetLoadedEditorAssemblies (0ms)
  1165. RefreshPlugins (1ms)
  1166. BeforeProcessingInitializeOnLoad (102ms)
  1167. ProcessInitializeOnLoadAttributes (242ms)
  1168. ProcessInitializeOnLoadMethodAttributes (5ms)
  1169. AfterProcessingInitializeOnLoad (10ms)
  1170. EditorAssembliesLoaded (0ms)
  1171. ExecutionOrderSort2 (0ms)
  1172. AwakeInstancesAfterBackupRestoration (10ms)
  1173. Platform modules already initialized, skipping
  1174. Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
  1175. Preloading 0 native plugins for Editor in 0.00 ms.
  1176. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  1177. System memory in use before: 170.1 MB.
  1178. System memory in use after: 170.3 MB.
  1179. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2656.
  1180. Total: 2.539500 ms (FindLiveObjects: 0.181700 ms CreateObjectMapping: 0.074800 ms MarkObjects: 2.267600 ms DeleteObjects: 0.014600 ms)
  1181. AssetImportParameters requested are different than current active one (requested -> active):
  1182. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1183. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1184. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1185. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1186. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1187. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1188. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1189. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1190. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1191. ========================================================================
  1192. Received Prepare
  1193. Registering precompiled user dll's ...
  1194. Registered in 0.003226 seconds.
  1195. Begin MonoManager ReloadAssembly
  1196. Native extension for WindowsStandalone target not found
  1197. Native extension for WebGL target not found
  1198. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  1199. Preloading 0 native plugins for Editor in 0.00 ms.
  1200. Mono: successfully reloaded assembly
  1201. - Completed reload, in 1.032 seconds
  1202. Domain Reload Profiling:
  1203. ReloadAssembly (1032ms)
  1204. BeginReloadAssembly (114ms)
  1205. ExecutionOrderSort (0ms)
  1206. DisableScriptedObjects (6ms)
  1207. BackupInstance (0ms)
  1208. ReleaseScriptingObjects (0ms)
  1209. CreateAndSetChildDomain (29ms)
  1210. EndReloadAssembly (853ms)
  1211. LoadAssemblies (92ms)
  1212. RebuildTransferFunctionScriptingTraits (0ms)
  1213. SetupTypeCache (266ms)
  1214. ReleaseScriptCaches (1ms)
  1215. RebuildScriptCaches (40ms)
  1216. SetupLoadedEditorAssemblies (361ms)
  1217. LogAssemblyErrors (0ms)
  1218. InitializePlatformSupportModulesInManaged (6ms)
  1219. SetLoadedEditorAssemblies (0ms)
  1220. RefreshPlugins (0ms)
  1221. BeforeProcessingInitializeOnLoad (96ms)
  1222. ProcessInitializeOnLoadAttributes (244ms)
  1223. ProcessInitializeOnLoadMethodAttributes (5ms)
  1224. AfterProcessingInitializeOnLoad (10ms)
  1225. EditorAssembliesLoaded (0ms)
  1226. ExecutionOrderSort2 (0ms)
  1227. AwakeInstancesAfterBackupRestoration (10ms)
  1228. Platform modules already initialized, skipping
  1229. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  1230. Preloading 0 native plugins for Editor in 0.00 ms.
  1231. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  1232. System memory in use before: 170.1 MB.
  1233. System memory in use after: 170.3 MB.
  1234. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2660.
  1235. Total: 2.681000 ms (FindLiveObjects: 0.202500 ms CreateObjectMapping: 0.078900 ms MarkObjects: 2.381300 ms DeleteObjects: 0.017400 ms)
  1236. AssetImportParameters requested are different than current active one (requested -> active):
  1237. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1238. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1239. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1240. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1241. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1242. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1243. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1244. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1245. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1246. ========================================================================
  1247. Received Prepare
  1248. Registering precompiled user dll's ...
  1249. Registered in 0.003058 seconds.
  1250. Begin MonoManager ReloadAssembly
  1251. Native extension for WindowsStandalone target not found
  1252. Native extension for WebGL target not found
  1253. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  1254. Preloading 0 native plugins for Editor in 0.00 ms.
  1255. Mono: successfully reloaded assembly
  1256. - Completed reload, in 1.034 seconds
  1257. Domain Reload Profiling:
  1258. ReloadAssembly (1034ms)
  1259. BeginReloadAssembly (111ms)
  1260. ExecutionOrderSort (0ms)
  1261. DisableScriptedObjects (6ms)
  1262. BackupInstance (0ms)
  1263. ReleaseScriptingObjects (0ms)
  1264. CreateAndSetChildDomain (29ms)
  1265. EndReloadAssembly (855ms)
  1266. LoadAssemblies (92ms)
  1267. RebuildTransferFunctionScriptingTraits (0ms)
  1268. SetupTypeCache (268ms)
  1269. ReleaseScriptCaches (1ms)
  1270. RebuildScriptCaches (41ms)
  1271. SetupLoadedEditorAssemblies (358ms)
  1272. LogAssemblyErrors (0ms)
  1273. InitializePlatformSupportModulesInManaged (6ms)
  1274. SetLoadedEditorAssemblies (0ms)
  1275. RefreshPlugins (1ms)
  1276. BeforeProcessingInitializeOnLoad (95ms)
  1277. ProcessInitializeOnLoadAttributes (241ms)
  1278. ProcessInitializeOnLoadMethodAttributes (5ms)
  1279. AfterProcessingInitializeOnLoad (10ms)
  1280. EditorAssembliesLoaded (0ms)
  1281. ExecutionOrderSort2 (0ms)
  1282. AwakeInstancesAfterBackupRestoration (10ms)
  1283. Platform modules already initialized, skipping
  1284. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  1285. Preloading 0 native plugins for Editor in 0.00 ms.
  1286. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  1287. System memory in use before: 170.2 MB.
  1288. System memory in use after: 170.3 MB.
  1289. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2664.
  1290. Total: 2.603200 ms (FindLiveObjects: 0.185600 ms CreateObjectMapping: 0.074200 ms MarkObjects: 2.325900 ms DeleteObjects: 0.016700 ms)
  1291. AssetImportParameters requested are different than current active one (requested -> active):
  1292. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1293. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1294. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1295. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1296. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1297. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1298. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1299. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1300. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1301. ========================================================================
  1302. Received Prepare
  1303. Registering precompiled user dll's ...
  1304. Registered in 0.002983 seconds.
  1305. Begin MonoManager ReloadAssembly
  1306. Native extension for WindowsStandalone target not found
  1307. Native extension for WebGL target not found
  1308. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  1309. Preloading 0 native plugins for Editor in 0.00 ms.
  1310. Mono: successfully reloaded assembly
  1311. - Completed reload, in 1.053 seconds
  1312. Domain Reload Profiling:
  1313. ReloadAssembly (1053ms)
  1314. BeginReloadAssembly (120ms)
  1315. ExecutionOrderSort (0ms)
  1316. DisableScriptedObjects (6ms)
  1317. BackupInstance (0ms)
  1318. ReleaseScriptingObjects (0ms)
  1319. CreateAndSetChildDomain (30ms)
  1320. EndReloadAssembly (866ms)
  1321. LoadAssemblies (92ms)
  1322. RebuildTransferFunctionScriptingTraits (0ms)
  1323. SetupTypeCache (272ms)
  1324. ReleaseScriptCaches (1ms)
  1325. RebuildScriptCaches (43ms)
  1326. SetupLoadedEditorAssemblies (364ms)
  1327. LogAssemblyErrors (0ms)
  1328. InitializePlatformSupportModulesInManaged (6ms)
  1329. SetLoadedEditorAssemblies (0ms)
  1330. RefreshPlugins (0ms)
  1331. BeforeProcessingInitializeOnLoad (98ms)
  1332. ProcessInitializeOnLoadAttributes (244ms)
  1333. ProcessInitializeOnLoadMethodAttributes (5ms)
  1334. AfterProcessingInitializeOnLoad (10ms)
  1335. EditorAssembliesLoaded (0ms)
  1336. ExecutionOrderSort2 (0ms)
  1337. AwakeInstancesAfterBackupRestoration (10ms)
  1338. Platform modules already initialized, skipping
  1339. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  1340. Preloading 0 native plugins for Editor in 0.00 ms.
  1341. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  1342. System memory in use before: 170.2 MB.
  1343. System memory in use after: 170.3 MB.
  1344. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2668.
  1345. Total: 2.881300 ms (FindLiveObjects: 0.177800 ms CreateObjectMapping: 0.075300 ms MarkObjects: 2.608000 ms DeleteObjects: 0.019200 ms)
  1346. AssetImportParameters requested are different than current active one (requested -> active):
  1347. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1348. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1349. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1350. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1351. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1352. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1353. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1354. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1355. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1356. ========================================================================
  1357. Received Prepare
  1358. Registering precompiled user dll's ...
  1359. Registered in 0.003144 seconds.
  1360. Begin MonoManager ReloadAssembly
  1361. Native extension for WindowsStandalone target not found
  1362. Native extension for WebGL target not found
  1363. Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
  1364. Preloading 0 native plugins for Editor in 0.00 ms.
  1365. Mono: successfully reloaded assembly
  1366. - Completed reload, in 1.157 seconds
  1367. Domain Reload Profiling:
  1368. ReloadAssembly (1158ms)
  1369. BeginReloadAssembly (133ms)
  1370. ExecutionOrderSort (0ms)
  1371. DisableScriptedObjects (6ms)
  1372. BackupInstance (0ms)
  1373. ReleaseScriptingObjects (0ms)
  1374. CreateAndSetChildDomain (32ms)
  1375. EndReloadAssembly (952ms)
  1376. LoadAssemblies (105ms)
  1377. RebuildTransferFunctionScriptingTraits (0ms)
  1378. SetupTypeCache (304ms)
  1379. ReleaseScriptCaches (1ms)
  1380. RebuildScriptCaches (46ms)
  1381. SetupLoadedEditorAssemblies (396ms)
  1382. LogAssemblyErrors (0ms)
  1383. InitializePlatformSupportModulesInManaged (7ms)
  1384. SetLoadedEditorAssemblies (0ms)
  1385. RefreshPlugins (1ms)
  1386. BeforeProcessingInitializeOnLoad (109ms)
  1387. ProcessInitializeOnLoadAttributes (264ms)
  1388. ProcessInitializeOnLoadMethodAttributes (5ms)
  1389. AfterProcessingInitializeOnLoad (10ms)
  1390. EditorAssembliesLoaded (0ms)
  1391. ExecutionOrderSort2 (0ms)
  1392. AwakeInstancesAfterBackupRestoration (10ms)
  1393. Platform modules already initialized, skipping
  1394. Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
  1395. Preloading 0 native plugins for Editor in 0.00 ms.
  1396. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  1397. System memory in use before: 170.2 MB.
  1398. System memory in use after: 170.3 MB.
  1399. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2672.
  1400. Total: 2.523800 ms (FindLiveObjects: 0.182300 ms CreateObjectMapping: 0.072500 ms MarkObjects: 2.253200 ms DeleteObjects: 0.014900 ms)
  1401. AssetImportParameters requested are different than current active one (requested -> active):
  1402. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1403. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1404. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1405. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1406. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1407. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1408. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1409. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1410. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1411. ========================================================================
  1412. Received Prepare
  1413. Registering precompiled user dll's ...
  1414. Registered in 0.003140 seconds.
  1415. Begin MonoManager ReloadAssembly
  1416. Native extension for WindowsStandalone target not found
  1417. Native extension for WebGL target not found
  1418. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  1419. Preloading 0 native plugins for Editor in 0.00 ms.
  1420. Mono: successfully reloaded assembly
  1421. - Completed reload, in 1.046 seconds
  1422. Domain Reload Profiling:
  1423. ReloadAssembly (1046ms)
  1424. BeginReloadAssembly (123ms)
  1425. ExecutionOrderSort (0ms)
  1426. DisableScriptedObjects (6ms)
  1427. BackupInstance (0ms)
  1428. ReleaseScriptingObjects (0ms)
  1429. CreateAndSetChildDomain (30ms)
  1430. EndReloadAssembly (857ms)
  1431. LoadAssemblies (93ms)
  1432. RebuildTransferFunctionScriptingTraits (0ms)
  1433. SetupTypeCache (266ms)
  1434. ReleaseScriptCaches (1ms)
  1435. RebuildScriptCaches (39ms)
  1436. SetupLoadedEditorAssemblies (362ms)
  1437. LogAssemblyErrors (0ms)
  1438. InitializePlatformSupportModulesInManaged (6ms)
  1439. SetLoadedEditorAssemblies (0ms)
  1440. RefreshPlugins (0ms)
  1441. BeforeProcessingInitializeOnLoad (94ms)
  1442. ProcessInitializeOnLoadAttributes (245ms)
  1443. ProcessInitializeOnLoadMethodAttributes (6ms)
  1444. AfterProcessingInitializeOnLoad (10ms)
  1445. EditorAssembliesLoaded (0ms)
  1446. ExecutionOrderSort2 (0ms)
  1447. AwakeInstancesAfterBackupRestoration (10ms)
  1448. Platform modules already initialized, skipping
  1449. Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
  1450. Preloading 0 native plugins for Editor in 0.00 ms.
  1451. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  1452. System memory in use before: 170.2 MB.
  1453. System memory in use after: 170.3 MB.
  1454. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2676.
  1455. Total: 2.606800 ms (FindLiveObjects: 0.222500 ms CreateObjectMapping: 0.092100 ms MarkObjects: 2.275800 ms DeleteObjects: 0.015400 ms)
  1456. AssetImportParameters requested are different than current active one (requested -> active):
  1457. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1458. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1459. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1460. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1461. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1462. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1463. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1464. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1465. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1466. ========================================================================
  1467. Received Prepare
  1468. Registering precompiled user dll's ...
  1469. Registered in 0.003395 seconds.
  1470. Begin MonoManager ReloadAssembly
  1471. Native extension for WindowsStandalone target not found
  1472. Native extension for WebGL target not found
  1473. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  1474. Preloading 0 native plugins for Editor in 0.00 ms.
  1475. Mono: successfully reloaded assembly
  1476. - Completed reload, in 1.100 seconds
  1477. Domain Reload Profiling:
  1478. ReloadAssembly (1100ms)
  1479. BeginReloadAssembly (131ms)
  1480. ExecutionOrderSort (0ms)
  1481. DisableScriptedObjects (6ms)
  1482. BackupInstance (0ms)
  1483. ReleaseScriptingObjects (0ms)
  1484. CreateAndSetChildDomain (32ms)
  1485. EndReloadAssembly (897ms)
  1486. LoadAssemblies (102ms)
  1487. RebuildTransferFunctionScriptingTraits (0ms)
  1488. SetupTypeCache (292ms)
  1489. ReleaseScriptCaches (1ms)
  1490. RebuildScriptCaches (44ms)
  1491. SetupLoadedEditorAssemblies (365ms)
  1492. LogAssemblyErrors (0ms)
  1493. InitializePlatformSupportModulesInManaged (6ms)
  1494. SetLoadedEditorAssemblies (0ms)
  1495. RefreshPlugins (1ms)
  1496. BeforeProcessingInitializeOnLoad (94ms)
  1497. ProcessInitializeOnLoadAttributes (249ms)
  1498. ProcessInitializeOnLoadMethodAttributes (5ms)
  1499. AfterProcessingInitializeOnLoad (10ms)
  1500. EditorAssembliesLoaded (0ms)
  1501. ExecutionOrderSort2 (0ms)
  1502. AwakeInstancesAfterBackupRestoration (10ms)
  1503. Platform modules already initialized, skipping
  1504. Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins.
  1505. Preloading 0 native plugins for Editor in 0.00 ms.
  1506. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  1507. System memory in use before: 170.2 MB.
  1508. System memory in use after: 170.3 MB.
  1509. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2680.
  1510. Total: 2.656000 ms (FindLiveObjects: 0.234400 ms CreateObjectMapping: 0.137500 ms MarkObjects: 2.261500 ms DeleteObjects: 0.021600 ms)
  1511. AssetImportParameters requested are different than current active one (requested -> active):
  1512. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1513. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1514. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1515. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1516. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1517. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1518. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1519. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1520. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1521. ========================================================================
  1522. Received Prepare
  1523. Registering precompiled user dll's ...
  1524. Registered in 0.002988 seconds.
  1525. Begin MonoManager ReloadAssembly
  1526. Native extension for WindowsStandalone target not found
  1527. Native extension for WebGL target not found
  1528. Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
  1529. Preloading 0 native plugins for Editor in 0.00 ms.
  1530. Mono: successfully reloaded assembly
  1531. - Completed reload, in 1.033 seconds
  1532. Domain Reload Profiling:
  1533. ReloadAssembly (1033ms)
  1534. BeginReloadAssembly (110ms)
  1535. ExecutionOrderSort (0ms)
  1536. DisableScriptedObjects (6ms)
  1537. BackupInstance (0ms)
  1538. ReleaseScriptingObjects (0ms)
  1539. CreateAndSetChildDomain (29ms)
  1540. EndReloadAssembly (857ms)
  1541. LoadAssemblies (92ms)
  1542. RebuildTransferFunctionScriptingTraits (0ms)
  1543. SetupTypeCache (271ms)
  1544. ReleaseScriptCaches (1ms)
  1545. RebuildScriptCaches (40ms)
  1546. SetupLoadedEditorAssemblies (359ms)
  1547. LogAssemblyErrors (0ms)
  1548. InitializePlatformSupportModulesInManaged (6ms)
  1549. SetLoadedEditorAssemblies (0ms)
  1550. RefreshPlugins (1ms)
  1551. BeforeProcessingInitializeOnLoad (96ms)
  1552. ProcessInitializeOnLoadAttributes (241ms)
  1553. ProcessInitializeOnLoadMethodAttributes (5ms)
  1554. AfterProcessingInitializeOnLoad (10ms)
  1555. EditorAssembliesLoaded (0ms)
  1556. ExecutionOrderSort2 (0ms)
  1557. AwakeInstancesAfterBackupRestoration (10ms)
  1558. Platform modules already initialized, skipping
  1559. Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
  1560. Preloading 0 native plugins for Editor in 0.00 ms.
  1561. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  1562. System memory in use before: 170.2 MB.
  1563. System memory in use after: 170.3 MB.
  1564. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2684.
  1565. Total: 2.555500 ms (FindLiveObjects: 0.195100 ms CreateObjectMapping: 0.079500 ms MarkObjects: 2.264400 ms DeleteObjects: 0.015600 ms)
  1566. AssetImportParameters requested are different than current active one (requested -> active):
  1567. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1568. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1569. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1570. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1571. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1572. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1573. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1574. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1575. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1576. ========================================================================
  1577. Received Prepare
  1578. Registering precompiled user dll's ...
  1579. Registered in 0.003403 seconds.
  1580. Begin MonoManager ReloadAssembly
  1581. Native extension for WindowsStandalone target not found
  1582. Native extension for WebGL target not found
  1583. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  1584. Preloading 0 native plugins for Editor in 0.00 ms.
  1585. Mono: successfully reloaded assembly
  1586. - Completed reload, in 1.062 seconds
  1587. Domain Reload Profiling:
  1588. ReloadAssembly (1063ms)
  1589. BeginReloadAssembly (134ms)
  1590. ExecutionOrderSort (0ms)
  1591. DisableScriptedObjects (6ms)
  1592. BackupInstance (0ms)
  1593. ReleaseScriptingObjects (0ms)
  1594. CreateAndSetChildDomain (34ms)
  1595. EndReloadAssembly (857ms)
  1596. LoadAssemblies (99ms)
  1597. RebuildTransferFunctionScriptingTraits (0ms)
  1598. SetupTypeCache (268ms)
  1599. ReleaseScriptCaches (1ms)
  1600. RebuildScriptCaches (40ms)
  1601. SetupLoadedEditorAssemblies (360ms)
  1602. LogAssemblyErrors (0ms)
  1603. InitializePlatformSupportModulesInManaged (6ms)
  1604. SetLoadedEditorAssemblies (0ms)
  1605. RefreshPlugins (1ms)
  1606. BeforeProcessingInitializeOnLoad (93ms)
  1607. ProcessInitializeOnLoadAttributes (245ms)
  1608. ProcessInitializeOnLoadMethodAttributes (5ms)
  1609. AfterProcessingInitializeOnLoad (10ms)
  1610. EditorAssembliesLoaded (0ms)
  1611. ExecutionOrderSort2 (0ms)
  1612. AwakeInstancesAfterBackupRestoration (10ms)
  1613. Platform modules already initialized, skipping
  1614. Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
  1615. Preloading 0 native plugins for Editor in 0.00 ms.
  1616. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  1617. System memory in use before: 170.2 MB.
  1618. System memory in use after: 170.3 MB.
  1619. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2688.
  1620. Total: 2.781100 ms (FindLiveObjects: 0.202500 ms CreateObjectMapping: 0.082100 ms MarkObjects: 2.466800 ms DeleteObjects: 0.028300 ms)
  1621. AssetImportParameters requested are different than current active one (requested -> active):
  1622. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1623. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1624. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1625. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1626. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1627. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1628. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1629. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1630. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1631. ========================================================================
  1632. Received Import Request.
  1633. Time since last request: 235717.401867 seconds.
  1634. path: Assets/ToneTuneToolkit/Scripts/Other/JsonConstructer.cs
  1635. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1636. Start importing Assets/ToneTuneToolkit/Scripts/Other/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9be13e02717634323eeeff7deb9d891') in 0.004056 seconds
  1637. Import took 0.007086 seconds .
  1638. ========================================================================
  1639. Received Import Request.
  1640. Time since last request: 0.024816 seconds.
  1641. path: Assets/ToneTuneToolkit/Scripts/Other/JsonConstructer.cs
  1642. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1643. Start importing Assets/ToneTuneToolkit/Scripts/Other/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9be13e02717634323eeeff7deb9d891') in 0.001860 seconds
  1644. Import took 0.004852 seconds .
  1645. ========================================================================
  1646. Received Import Request.
  1647. Time since last request: 0.715280 seconds.
  1648. path: Assets/ToneTuneToolkit/Scripts/Other/KeyPressSimulator.cs
  1649. artifactKey: Guid(35089fe4cbd9e1a4c8a6970073eb3457) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1650. Start importing Assets/ToneTuneToolkit/Scripts/Other/KeyPressSimulator.cs using Guid(35089fe4cbd9e1a4c8a6970073eb3457) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ce82e45d54bd5f10778b6e74d32b8d7c') in 0.001660 seconds
  1651. Import took 0.016536 seconds .
  1652. ========================================================================
  1653. Received Import Request.
  1654. Time since last request: 0.919923 seconds.
  1655. path: Assets/ToneTuneToolkit/Scripts/Other/CMDLauncher.cs
  1656. artifactKey: Guid(cf927de47002b864f982e8f9b6933e2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1657. Start importing Assets/ToneTuneToolkit/Scripts/Other/CMDLauncher.cs using Guid(cf927de47002b864f982e8f9b6933e2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2a296c1bd108db867a3de5d9826bc171') in 0.001805 seconds
  1658. Import took 0.004758 seconds .
  1659. ========================================================================
  1660. Received Prepare
  1661. Registering precompiled user dll's ...
  1662. Registered in 0.003031 seconds.
  1663. Begin MonoManager ReloadAssembly
  1664. Native extension for WindowsStandalone target not found
  1665. Native extension for WebGL target not found
  1666. Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins.
  1667. Preloading 0 native plugins for Editor in 0.00 ms.
  1668. Mono: successfully reloaded assembly
  1669. - Completed reload, in 1.079 seconds
  1670. Domain Reload Profiling:
  1671. ReloadAssembly (1080ms)
  1672. BeginReloadAssembly (137ms)
  1673. ExecutionOrderSort (0ms)
  1674. DisableScriptedObjects (20ms)
  1675. BackupInstance (0ms)
  1676. ReleaseScriptingObjects (0ms)
  1677. CreateAndSetChildDomain (30ms)
  1678. EndReloadAssembly (876ms)
  1679. LoadAssemblies (98ms)
  1680. RebuildTransferFunctionScriptingTraits (0ms)
  1681. SetupTypeCache (269ms)
  1682. ReleaseScriptCaches (1ms)
  1683. RebuildScriptCaches (41ms)
  1684. SetupLoadedEditorAssemblies (374ms)
  1685. LogAssemblyErrors (0ms)
  1686. InitializePlatformSupportModulesInManaged (6ms)
  1687. SetLoadedEditorAssemblies (0ms)
  1688. RefreshPlugins (1ms)
  1689. BeforeProcessingInitializeOnLoad (96ms)
  1690. ProcessInitializeOnLoadAttributes (254ms)
  1691. ProcessInitializeOnLoadMethodAttributes (5ms)
  1692. AfterProcessingInitializeOnLoad (12ms)
  1693. EditorAssembliesLoaded (0ms)
  1694. ExecutionOrderSort2 (0ms)
  1695. AwakeInstancesAfterBackupRestoration (10ms)
  1696. Platform modules already initialized, skipping
  1697. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  1698. Preloading 0 native plugins for Editor in 0.00 ms.
  1699. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  1700. System memory in use before: 170.2 MB.
  1701. System memory in use after: 170.3 MB.
  1702. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2692.
  1703. Total: 2.470600 ms (FindLiveObjects: 0.193800 ms CreateObjectMapping: 0.077600 ms MarkObjects: 2.181600 ms DeleteObjects: 0.016600 ms)
  1704. AssetImportParameters requested are different than current active one (requested -> active):
  1705. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1706. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1707. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1708. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1709. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1710. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1711. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1712. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1713. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1714. ========================================================================
  1715. Received Import Request.
  1716. Time since last request: 20.143535 seconds.
  1717. path: Assets/ToneTuneToolkit/Scripts/Common/TextLoader.cs
  1718. artifactKey: Guid(843e20a04875557409f742f2d4b071cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1719. Start importing Assets/ToneTuneToolkit/Scripts/Common/TextLoader.cs using Guid(843e20a04875557409f742f2d4b071cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b527d73ced0739f696bbad7ca1fd402e') in 0.004266 seconds
  1720. Import took 0.007351 seconds .
  1721. ========================================================================
  1722. Received Prepare
  1723. Registering precompiled user dll's ...
  1724. Registered in 0.003360 seconds.
  1725. Begin MonoManager ReloadAssembly
  1726. Native extension for WindowsStandalone target not found
  1727. Native extension for WebGL target not found
  1728. Refreshing native plugins compatible for Editor in 0.62 ms, found 3 plugins.
  1729. Preloading 0 native plugins for Editor in 0.00 ms.
  1730. Mono: successfully reloaded assembly
  1731. - Completed reload, in 1.043 seconds
  1732. Domain Reload Profiling:
  1733. ReloadAssembly (1043ms)
  1734. BeginReloadAssembly (121ms)
  1735. ExecutionOrderSort (0ms)
  1736. DisableScriptedObjects (6ms)
  1737. BackupInstance (0ms)
  1738. ReleaseScriptingObjects (0ms)
  1739. CreateAndSetChildDomain (30ms)
  1740. EndReloadAssembly (856ms)
  1741. LoadAssemblies (92ms)
  1742. RebuildTransferFunctionScriptingTraits (0ms)
  1743. SetupTypeCache (265ms)
  1744. ReleaseScriptCaches (1ms)
  1745. RebuildScriptCaches (41ms)
  1746. SetupLoadedEditorAssemblies (364ms)
  1747. LogAssemblyErrors (0ms)
  1748. InitializePlatformSupportModulesInManaged (6ms)
  1749. SetLoadedEditorAssemblies (0ms)
  1750. RefreshPlugins (1ms)
  1751. BeforeProcessingInitializeOnLoad (97ms)
  1752. ProcessInitializeOnLoadAttributes (245ms)
  1753. ProcessInitializeOnLoadMethodAttributes (5ms)
  1754. AfterProcessingInitializeOnLoad (11ms)
  1755. EditorAssembliesLoaded (0ms)
  1756. ExecutionOrderSort2 (0ms)
  1757. AwakeInstancesAfterBackupRestoration (10ms)
  1758. Platform modules already initialized, skipping
  1759. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  1760. Preloading 0 native plugins for Editor in 0.00 ms.
  1761. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  1762. System memory in use before: 170.2 MB.
  1763. System memory in use after: 170.3 MB.
  1764. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2696.
  1765. Total: 2.583400 ms (FindLiveObjects: 0.196400 ms CreateObjectMapping: 0.079300 ms MarkObjects: 2.291000 ms DeleteObjects: 0.016000 ms)
  1766. AssetImportParameters requested are different than current active one (requested -> active):
  1767. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1768. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1769. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1770. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1771. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1772. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1773. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1774. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1775. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1776. ========================================================================
  1777. Received Import Request.
  1778. Time since last request: 19.205174 seconds.
  1779. path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
  1780. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1781. Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1321bff650388cb4db6dab3f206bc89f') in 0.003740 seconds
  1782. Import took 0.006629 seconds .
  1783. ========================================================================
  1784. Received Prepare
  1785. Registering precompiled user dll's ...
  1786. Registered in 0.003120 seconds.
  1787. Begin MonoManager ReloadAssembly
  1788. Native extension for WindowsStandalone target not found
  1789. Native extension for WebGL target not found
  1790. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  1791. Preloading 0 native plugins for Editor in 0.00 ms.
  1792. Mono: successfully reloaded assembly
  1793. - Completed reload, in 1.043 seconds
  1794. Domain Reload Profiling:
  1795. ReloadAssembly (1043ms)
  1796. BeginReloadAssembly (122ms)
  1797. ExecutionOrderSort (0ms)
  1798. DisableScriptedObjects (6ms)
  1799. BackupInstance (0ms)
  1800. ReleaseScriptingObjects (0ms)
  1801. CreateAndSetChildDomain (29ms)
  1802. EndReloadAssembly (855ms)
  1803. LoadAssemblies (91ms)
  1804. RebuildTransferFunctionScriptingTraits (0ms)
  1805. SetupTypeCache (268ms)
  1806. ReleaseScriptCaches (1ms)
  1807. RebuildScriptCaches (39ms)
  1808. SetupLoadedEditorAssemblies (363ms)
  1809. LogAssemblyErrors (0ms)
  1810. InitializePlatformSupportModulesInManaged (6ms)
  1811. SetLoadedEditorAssemblies (0ms)
  1812. RefreshPlugins (1ms)
  1813. BeforeProcessingInitializeOnLoad (95ms)
  1814. ProcessInitializeOnLoadAttributes (244ms)
  1815. ProcessInitializeOnLoadMethodAttributes (5ms)
  1816. AfterProcessingInitializeOnLoad (12ms)
  1817. EditorAssembliesLoaded (0ms)
  1818. ExecutionOrderSort2 (0ms)
  1819. AwakeInstancesAfterBackupRestoration (10ms)
  1820. Platform modules already initialized, skipping
  1821. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  1822. Preloading 0 native plugins for Editor in 0.00 ms.
  1823. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  1824. System memory in use before: 170.2 MB.
  1825. System memory in use after: 170.4 MB.
  1826. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2700.
  1827. Total: 2.465500 ms (FindLiveObjects: 0.173500 ms CreateObjectMapping: 0.068500 ms MarkObjects: 2.207600 ms DeleteObjects: 0.015200 ms)
  1828. AssetImportParameters requested are different than current active one (requested -> active):
  1829. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1830. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1831. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1832. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1833. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1834. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1835. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1836. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1837. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1838. ========================================================================
  1839. Received Import Request.
  1840. Time since last request: 127.356946 seconds.
  1841. path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
  1842. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1843. Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '57b63a5d9077f72b646718a813b6f3cb') in 0.003934 seconds
  1844. Import took 0.019753 seconds .
  1845. ========================================================================
  1846. Received Import Request.
  1847. Time since last request: 0.061968 seconds.
  1848. path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
  1849. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1850. Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '57b63a5d9077f72b646718a813b6f3cb') in 0.001587 seconds
  1851. Import took 0.004635 seconds .
  1852. ========================================================================
  1853. Received Prepare
  1854. Registering precompiled user dll's ...
  1855. Registered in 0.003367 seconds.
  1856. Begin MonoManager ReloadAssembly
  1857. Native extension for WindowsStandalone target not found
  1858. Native extension for WebGL target not found
  1859. Refreshing native plugins compatible for Editor in 0.55 ms, found 3 plugins.
  1860. Preloading 0 native plugins for Editor in 0.00 ms.
  1861. Mono: successfully reloaded assembly
  1862. - Completed reload, in 1.036 seconds
  1863. Domain Reload Profiling:
  1864. ReloadAssembly (1036ms)
  1865. BeginReloadAssembly (114ms)
  1866. ExecutionOrderSort (0ms)
  1867. DisableScriptedObjects (6ms)
  1868. BackupInstance (0ms)
  1869. ReleaseScriptingObjects (0ms)
  1870. CreateAndSetChildDomain (28ms)
  1871. EndReloadAssembly (857ms)
  1872. LoadAssemblies (93ms)
  1873. RebuildTransferFunctionScriptingTraits (0ms)
  1874. SetupTypeCache (264ms)
  1875. ReleaseScriptCaches (1ms)
  1876. RebuildScriptCaches (40ms)
  1877. SetupLoadedEditorAssemblies (366ms)
  1878. LogAssemblyErrors (0ms)
  1879. InitializePlatformSupportModulesInManaged (7ms)
  1880. SetLoadedEditorAssemblies (0ms)
  1881. RefreshPlugins (1ms)
  1882. BeforeProcessingInitializeOnLoad (94ms)
  1883. ProcessInitializeOnLoadAttributes (249ms)
  1884. ProcessInitializeOnLoadMethodAttributes (5ms)
  1885. AfterProcessingInitializeOnLoad (11ms)
  1886. EditorAssembliesLoaded (0ms)
  1887. ExecutionOrderSort2 (0ms)
  1888. AwakeInstancesAfterBackupRestoration (10ms)
  1889. Platform modules already initialized, skipping
  1890. Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
  1891. Preloading 0 native plugins for Editor in 0.00 ms.
  1892. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  1893. System memory in use before: 170.3 MB.
  1894. System memory in use after: 170.4 MB.
  1895. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2704.
  1896. Total: 2.595500 ms (FindLiveObjects: 0.198100 ms CreateObjectMapping: 0.069700 ms MarkObjects: 2.311800 ms DeleteObjects: 0.015000 ms)
  1897. AssetImportParameters requested are different than current active one (requested -> active):
  1898. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1899. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1900. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1901. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1902. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1903. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1904. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1905. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1906. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1907. ========================================================================
  1908. Received Prepare
  1909. Registering precompiled user dll's ...
  1910. Registered in 0.002942 seconds.
  1911. Begin MonoManager ReloadAssembly
  1912. Native extension for WindowsStandalone target not found
  1913. Native extension for WebGL target not found
  1914. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  1915. Preloading 0 native plugins for Editor in 0.00 ms.
  1916. Mono: successfully reloaded assembly
  1917. - Completed reload, in 1.035 seconds
  1918. Domain Reload Profiling:
  1919. ReloadAssembly (1035ms)
  1920. BeginReloadAssembly (106ms)
  1921. ExecutionOrderSort (0ms)
  1922. DisableScriptedObjects (6ms)
  1923. BackupInstance (0ms)
  1924. ReleaseScriptingObjects (0ms)
  1925. CreateAndSetChildDomain (28ms)
  1926. EndReloadAssembly (864ms)
  1927. LoadAssemblies (91ms)
  1928. RebuildTransferFunctionScriptingTraits (0ms)
  1929. SetupTypeCache (268ms)
  1930. ReleaseScriptCaches (1ms)
  1931. RebuildScriptCaches (41ms)
  1932. SetupLoadedEditorAssemblies (370ms)
  1933. LogAssemblyErrors (0ms)
  1934. InitializePlatformSupportModulesInManaged (6ms)
  1935. SetLoadedEditorAssemblies (0ms)
  1936. RefreshPlugins (0ms)
  1937. BeforeProcessingInitializeOnLoad (94ms)
  1938. ProcessInitializeOnLoadAttributes (255ms)
  1939. ProcessInitializeOnLoadMethodAttributes (5ms)
  1940. AfterProcessingInitializeOnLoad (10ms)
  1941. EditorAssembliesLoaded (0ms)
  1942. ExecutionOrderSort2 (0ms)
  1943. AwakeInstancesAfterBackupRestoration (10ms)
  1944. Platform modules already initialized, skipping
  1945. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  1946. Preloading 0 native plugins for Editor in 0.00 ms.
  1947. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  1948. System memory in use before: 170.3 MB.
  1949. System memory in use after: 170.4 MB.
  1950. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2708.
  1951. Total: 2.545200 ms (FindLiveObjects: 0.196100 ms CreateObjectMapping: 0.074800 ms MarkObjects: 2.258400 ms DeleteObjects: 0.014900 ms)
  1952. AssetImportParameters requested are different than current active one (requested -> active):
  1953. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1954. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1955. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1956. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1957. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1958. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1959. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1960. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1961. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1962. ========================================================================
  1963. Received Import Request.
  1964. Time since last request: 5506.785464 seconds.
  1965. path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
  1966. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1967. Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fb942cb6b9a72c10703b2c8e4110b0d2') in 0.003850 seconds
  1968. Import took 0.017346 seconds .
  1969. ========================================================================
  1970. Received Prepare
  1971. Registering precompiled user dll's ...
  1972. Registered in 0.002965 seconds.
  1973. Begin MonoManager ReloadAssembly
  1974. Native extension for WindowsStandalone target not found
  1975. Native extension for WebGL target not found
  1976. Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins.
  1977. Preloading 0 native plugins for Editor in 0.00 ms.
  1978. Mono: successfully reloaded assembly
  1979. - Completed reload, in 1.036 seconds
  1980. Domain Reload Profiling:
  1981. ReloadAssembly (1036ms)
  1982. BeginReloadAssembly (110ms)
  1983. ExecutionOrderSort (0ms)
  1984. DisableScriptedObjects (6ms)
  1985. BackupInstance (0ms)
  1986. ReleaseScriptingObjects (0ms)
  1987. CreateAndSetChildDomain (29ms)
  1988. EndReloadAssembly (860ms)
  1989. LoadAssemblies (93ms)
  1990. RebuildTransferFunctionScriptingTraits (0ms)
  1991. SetupTypeCache (270ms)
  1992. ReleaseScriptCaches (1ms)
  1993. RebuildScriptCaches (41ms)
  1994. SetupLoadedEditorAssemblies (362ms)
  1995. LogAssemblyErrors (0ms)
  1996. InitializePlatformSupportModulesInManaged (6ms)
  1997. SetLoadedEditorAssemblies (0ms)
  1998. RefreshPlugins (1ms)
  1999. BeforeProcessingInitializeOnLoad (94ms)
  2000. ProcessInitializeOnLoadAttributes (245ms)
  2001. ProcessInitializeOnLoadMethodAttributes (5ms)
  2002. AfterProcessingInitializeOnLoad (10ms)
  2003. EditorAssembliesLoaded (0ms)
  2004. ExecutionOrderSort2 (0ms)
  2005. AwakeInstancesAfterBackupRestoration (10ms)
  2006. Platform modules already initialized, skipping
  2007. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  2008. Preloading 0 native plugins for Editor in 0.00 ms.
  2009. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  2010. System memory in use before: 170.4 MB.
  2011. System memory in use after: 170.5 MB.
  2012. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2712.
  2013. Total: 2.633500 ms (FindLiveObjects: 0.212300 ms CreateObjectMapping: 0.080700 ms MarkObjects: 2.322200 ms DeleteObjects: 0.016900 ms)
  2014. AssetImportParameters requested are different than current active one (requested -> active):
  2015. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2016. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2017. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2018. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2019. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2020. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2021. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2022. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2023. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2024. ========================================================================
  2025. Received Import Request.
  2026. Time since last request: 191.294969 seconds.
  2027. path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
  2028. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2029. Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '902c0b74de2238e21488e5747ef0a930') in 0.003909 seconds
  2030. Import took 0.011364 seconds .
  2031. ========================================================================
  2032. Received Import Request.
  2033. Time since last request: 0.072041 seconds.
  2034. path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
  2035. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2036. Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '902c0b74de2238e21488e5747ef0a930') in 0.001543 seconds
  2037. Import took 0.005175 seconds .
  2038. ========================================================================
  2039. Received Prepare
  2040. Registering precompiled user dll's ...
  2041. Registered in 0.003068 seconds.
  2042. Begin MonoManager ReloadAssembly
  2043. Native extension for WindowsStandalone target not found
  2044. Native extension for WebGL target not found
  2045. Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
  2046. Preloading 0 native plugins for Editor in 0.00 ms.
  2047. Mono: successfully reloaded assembly
  2048. - Completed reload, in 1.063 seconds
  2049. Domain Reload Profiling:
  2050. ReloadAssembly (1063ms)
  2051. BeginReloadAssembly (128ms)
  2052. ExecutionOrderSort (0ms)
  2053. DisableScriptedObjects (6ms)
  2054. BackupInstance (0ms)
  2055. ReleaseScriptingObjects (0ms)
  2056. CreateAndSetChildDomain (32ms)
  2057. EndReloadAssembly (871ms)
  2058. LoadAssemblies (92ms)
  2059. RebuildTransferFunctionScriptingTraits (0ms)
  2060. SetupTypeCache (273ms)
  2061. ReleaseScriptCaches (1ms)
  2062. RebuildScriptCaches (41ms)
  2063. SetupLoadedEditorAssemblies (368ms)
  2064. LogAssemblyErrors (0ms)
  2065. InitializePlatformSupportModulesInManaged (6ms)
  2066. SetLoadedEditorAssemblies (0ms)
  2067. RefreshPlugins (1ms)
  2068. BeforeProcessingInitializeOnLoad (95ms)
  2069. ProcessInitializeOnLoadAttributes (250ms)
  2070. ProcessInitializeOnLoadMethodAttributes (5ms)
  2071. AfterProcessingInitializeOnLoad (11ms)
  2072. EditorAssembliesLoaded (0ms)
  2073. ExecutionOrderSort2 (0ms)
  2074. AwakeInstancesAfterBackupRestoration (10ms)
  2075. Platform modules already initialized, skipping
  2076. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  2077. Preloading 0 native plugins for Editor in 0.00 ms.
  2078. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  2079. System memory in use before: 170.4 MB.
  2080. System memory in use after: 170.5 MB.
  2081. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2716.
  2082. Total: 2.672800 ms (FindLiveObjects: 0.199200 ms CreateObjectMapping: 0.075400 ms MarkObjects: 2.381300 ms DeleteObjects: 0.015900 ms)
  2083. AssetImportParameters requested are different than current active one (requested -> active):
  2084. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2085. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2086. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2087. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2088. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2089. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2090. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2091. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2092. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2093. ========================================================================
  2094. Received Prepare
  2095. Registering precompiled user dll's ...
  2096. Registered in 0.003272 seconds.
  2097. Begin MonoManager ReloadAssembly
  2098. Native extension for WindowsStandalone target not found
  2099. Native extension for WebGL target not found
  2100. Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
  2101. Preloading 0 native plugins for Editor in 0.00 ms.
  2102. Mono: successfully reloaded assembly
  2103. - Completed reload, in 1.037 seconds
  2104. Domain Reload Profiling:
  2105. ReloadAssembly (1037ms)
  2106. BeginReloadAssembly (108ms)
  2107. ExecutionOrderSort (0ms)
  2108. DisableScriptedObjects (6ms)
  2109. BackupInstance (0ms)
  2110. ReleaseScriptingObjects (0ms)
  2111. CreateAndSetChildDomain (29ms)
  2112. EndReloadAssembly (863ms)
  2113. LoadAssemblies (92ms)
  2114. RebuildTransferFunctionScriptingTraits (0ms)
  2115. SetupTypeCache (268ms)
  2116. ReleaseScriptCaches (1ms)
  2117. RebuildScriptCaches (43ms)
  2118. SetupLoadedEditorAssemblies (364ms)
  2119. LogAssemblyErrors (0ms)
  2120. InitializePlatformSupportModulesInManaged (6ms)
  2121. SetLoadedEditorAssemblies (0ms)
  2122. RefreshPlugins (1ms)
  2123. BeforeProcessingInitializeOnLoad (96ms)
  2124. ProcessInitializeOnLoadAttributes (246ms)
  2125. ProcessInitializeOnLoadMethodAttributes (5ms)
  2126. AfterProcessingInitializeOnLoad (10ms)
  2127. EditorAssembliesLoaded (0ms)
  2128. ExecutionOrderSort2 (0ms)
  2129. AwakeInstancesAfterBackupRestoration (10ms)
  2130. Platform modules already initialized, skipping
  2131. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  2132. Preloading 0 native plugins for Editor in 0.00 ms.
  2133. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  2134. System memory in use before: 170.4 MB.
  2135. System memory in use after: 170.6 MB.
  2136. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2720.
  2137. Total: 2.606600 ms (FindLiveObjects: 0.216700 ms CreateObjectMapping: 0.085600 ms MarkObjects: 2.287900 ms DeleteObjects: 0.015500 ms)
  2138. AssetImportParameters requested are different than current active one (requested -> active):
  2139. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2140. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2141. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2142. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2143. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2144. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2145. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2146. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2147. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2148. ========================================================================
  2149. Received Import Request.
  2150. Time since last request: 26.377219 seconds.
  2151. path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
  2152. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2153. Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08909b34dc8ebf55814ea3a430e6a43c') in 0.003895 seconds
  2154. Import took 0.006946 seconds .
  2155. ========================================================================
  2156. Received Import Request.
  2157. Time since last request: 0.002130 seconds.
  2158. path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
  2159. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2160. Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08909b34dc8ebf55814ea3a430e6a43c') in 0.001593 seconds
  2161. Import took 0.004758 seconds .
  2162. ========================================================================
  2163. Received Prepare
  2164. Registering precompiled user dll's ...
  2165. Registered in 0.003286 seconds.
  2166. Begin MonoManager ReloadAssembly
  2167. Native extension for WindowsStandalone target not found
  2168. Native extension for WebGL target not found
  2169. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  2170. Preloading 0 native plugins for Editor in 0.00 ms.
  2171. Mono: successfully reloaded assembly
  2172. - Completed reload, in 1.056 seconds
  2173. Domain Reload Profiling:
  2174. ReloadAssembly (1056ms)
  2175. BeginReloadAssembly (114ms)
  2176. ExecutionOrderSort (0ms)
  2177. DisableScriptedObjects (6ms)
  2178. BackupInstance (0ms)
  2179. ReleaseScriptingObjects (0ms)
  2180. CreateAndSetChildDomain (29ms)
  2181. EndReloadAssembly (877ms)
  2182. LoadAssemblies (91ms)
  2183. RebuildTransferFunctionScriptingTraits (0ms)
  2184. SetupTypeCache (270ms)
  2185. ReleaseScriptCaches (1ms)
  2186. RebuildScriptCaches (42ms)
  2187. SetupLoadedEditorAssemblies (375ms)
  2188. LogAssemblyErrors (0ms)
  2189. InitializePlatformSupportModulesInManaged (6ms)
  2190. SetLoadedEditorAssemblies (0ms)
  2191. RefreshPlugins (0ms)
  2192. BeforeProcessingInitializeOnLoad (95ms)
  2193. ProcessInitializeOnLoadAttributes (258ms)
  2194. ProcessInitializeOnLoadMethodAttributes (5ms)
  2195. AfterProcessingInitializeOnLoad (10ms)
  2196. EditorAssembliesLoaded (0ms)
  2197. ExecutionOrderSort2 (0ms)
  2198. AwakeInstancesAfterBackupRestoration (11ms)
  2199. Platform modules already initialized, skipping
  2200. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  2201. Preloading 0 native plugins for Editor in 0.00 ms.
  2202. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  2203. System memory in use before: 170.4 MB.
  2204. System memory in use after: 170.6 MB.
  2205. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2724.
  2206. Total: 2.507500 ms (FindLiveObjects: 0.216700 ms CreateObjectMapping: 0.086200 ms MarkObjects: 2.188200 ms DeleteObjects: 0.015300 ms)
  2207. AssetImportParameters requested are different than current active one (requested -> active):
  2208. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2209. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2210. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2211. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2212. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2213. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2214. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2215. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2216. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2217. ========================================================================
  2218. Received Prepare
  2219. Registering precompiled user dll's ...
  2220. Registered in 0.003080 seconds.
  2221. Begin MonoManager ReloadAssembly
  2222. Native extension for WindowsStandalone target not found
  2223. Native extension for WebGL target not found
  2224. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  2225. Preloading 0 native plugins for Editor in 0.00 ms.
  2226. Mono: successfully reloaded assembly
  2227. - Completed reload, in 1.049 seconds
  2228. Domain Reload Profiling:
  2229. ReloadAssembly (1050ms)
  2230. BeginReloadAssembly (112ms)
  2231. ExecutionOrderSort (0ms)
  2232. DisableScriptedObjects (6ms)
  2233. BackupInstance (0ms)
  2234. ReleaseScriptingObjects (0ms)
  2235. CreateAndSetChildDomain (30ms)
  2236. EndReloadAssembly (872ms)
  2237. LoadAssemblies (93ms)
  2238. RebuildTransferFunctionScriptingTraits (0ms)
  2239. SetupTypeCache (276ms)
  2240. ReleaseScriptCaches (1ms)
  2241. RebuildScriptCaches (40ms)
  2242. SetupLoadedEditorAssemblies (368ms)
  2243. LogAssemblyErrors (0ms)
  2244. InitializePlatformSupportModulesInManaged (6ms)
  2245. SetLoadedEditorAssemblies (0ms)
  2246. RefreshPlugins (0ms)
  2247. BeforeProcessingInitializeOnLoad (98ms)
  2248. ProcessInitializeOnLoadAttributes (248ms)
  2249. ProcessInitializeOnLoadMethodAttributes (5ms)
  2250. AfterProcessingInitializeOnLoad (10ms)
  2251. EditorAssembliesLoaded (0ms)
  2252. ExecutionOrderSort2 (0ms)
  2253. AwakeInstancesAfterBackupRestoration (10ms)
  2254. Platform modules already initialized, skipping
  2255. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  2256. Preloading 0 native plugins for Editor in 0.00 ms.
  2257. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  2258. System memory in use before: 170.4 MB.
  2259. System memory in use after: 170.6 MB.
  2260. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2728.
  2261. Total: 2.640800 ms (FindLiveObjects: 0.198900 ms CreateObjectMapping: 0.077600 ms MarkObjects: 2.348200 ms DeleteObjects: 0.015100 ms)
  2262. AssetImportParameters requested are different than current active one (requested -> active):
  2263. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2264. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2265. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2266. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2267. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2268. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2269. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2270. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2271. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2272. ========================================================================
  2273. Received Import Request.
  2274. Time since last request: 62.623608 seconds.
  2275. path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
  2276. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2277. Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '98c07992a2198137f28dea40c14823b6') in 0.003780 seconds
  2278. Import took 0.006817 seconds .
  2279. ========================================================================
  2280. Received Prepare
  2281. Registering precompiled user dll's ...
  2282. Registered in 0.003165 seconds.
  2283. Begin MonoManager ReloadAssembly
  2284. Native extension for WindowsStandalone target not found
  2285. Native extension for WebGL target not found
  2286. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  2287. Preloading 0 native plugins for Editor in 0.00 ms.
  2288. Mono: successfully reloaded assembly
  2289. - Completed reload, in 1.029 seconds
  2290. Domain Reload Profiling:
  2291. ReloadAssembly (1029ms)
  2292. BeginReloadAssembly (109ms)
  2293. ExecutionOrderSort (0ms)
  2294. DisableScriptedObjects (6ms)
  2295. BackupInstance (0ms)
  2296. ReleaseScriptingObjects (0ms)
  2297. CreateAndSetChildDomain (29ms)
  2298. EndReloadAssembly (854ms)
  2299. LoadAssemblies (92ms)
  2300. RebuildTransferFunctionScriptingTraits (0ms)
  2301. SetupTypeCache (266ms)
  2302. ReleaseScriptCaches (1ms)
  2303. RebuildScriptCaches (41ms)
  2304. SetupLoadedEditorAssemblies (363ms)
  2305. LogAssemblyErrors (0ms)
  2306. InitializePlatformSupportModulesInManaged (6ms)
  2307. SetLoadedEditorAssemblies (0ms)
  2308. RefreshPlugins (1ms)
  2309. BeforeProcessingInitializeOnLoad (95ms)
  2310. ProcessInitializeOnLoadAttributes (246ms)
  2311. ProcessInitializeOnLoadMethodAttributes (5ms)
  2312. AfterProcessingInitializeOnLoad (10ms)
  2313. EditorAssembliesLoaded (0ms)
  2314. ExecutionOrderSort2 (0ms)
  2315. AwakeInstancesAfterBackupRestoration (10ms)
  2316. Platform modules already initialized, skipping
  2317. Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
  2318. Preloading 0 native plugins for Editor in 0.00 ms.
  2319. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  2320. System memory in use before: 170.4 MB.
  2321. System memory in use after: 170.6 MB.
  2322. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2732.
  2323. Total: 2.514800 ms (FindLiveObjects: 0.208000 ms CreateObjectMapping: 0.079900 ms MarkObjects: 2.211200 ms DeleteObjects: 0.015000 ms)
  2324. AssetImportParameters requested are different than current active one (requested -> active):
  2325. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2326. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2327. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2328. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2329. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2330. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2331. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2332. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2333. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2334. ========================================================================
  2335. Received Import Request.
  2336. Time since last request: 16.002314 seconds.
  2337. path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
  2338. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2339. Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '05404b71314120232698c64b89fd56aa') in 0.003901 seconds
  2340. Import took 0.017139 seconds .
  2341. ========================================================================
  2342. Received Import Request.
  2343. Time since last request: 0.066265 seconds.
  2344. path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
  2345. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2346. Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '05404b71314120232698c64b89fd56aa') in 0.001569 seconds
  2347. Import took 0.004656 seconds .
  2348. ========================================================================
  2349. Received Prepare
  2350. Registering precompiled user dll's ...
  2351. Registered in 0.002996 seconds.
  2352. Begin MonoManager ReloadAssembly
  2353. Native extension for WindowsStandalone target not found
  2354. Native extension for WebGL target not found
  2355. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  2356. Preloading 0 native plugins for Editor in 0.00 ms.
  2357. Mono: successfully reloaded assembly
  2358. - Completed reload, in 1.042 seconds
  2359. Domain Reload Profiling:
  2360. ReloadAssembly (1043ms)
  2361. BeginReloadAssembly (120ms)
  2362. ExecutionOrderSort (0ms)
  2363. DisableScriptedObjects (6ms)
  2364. BackupInstance (0ms)
  2365. ReleaseScriptingObjects (0ms)
  2366. CreateAndSetChildDomain (29ms)
  2367. EndReloadAssembly (857ms)
  2368. LoadAssemblies (95ms)
  2369. RebuildTransferFunctionScriptingTraits (0ms)
  2370. SetupTypeCache (269ms)
  2371. ReleaseScriptCaches (1ms)
  2372. RebuildScriptCaches (42ms)
  2373. SetupLoadedEditorAssemblies (359ms)
  2374. LogAssemblyErrors (0ms)
  2375. InitializePlatformSupportModulesInManaged (6ms)
  2376. SetLoadedEditorAssemblies (0ms)
  2377. RefreshPlugins (0ms)
  2378. BeforeProcessingInitializeOnLoad (95ms)
  2379. ProcessInitializeOnLoadAttributes (242ms)
  2380. ProcessInitializeOnLoadMethodAttributes (5ms)
  2381. AfterProcessingInitializeOnLoad (10ms)
  2382. EditorAssembliesLoaded (0ms)
  2383. ExecutionOrderSort2 (0ms)
  2384. AwakeInstancesAfterBackupRestoration (10ms)
  2385. Platform modules already initialized, skipping
  2386. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  2387. Preloading 0 native plugins for Editor in 0.00 ms.
  2388. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  2389. System memory in use before: 170.4 MB.
  2390. System memory in use after: 170.6 MB.
  2391. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2736.
  2392. Total: 2.534900 ms (FindLiveObjects: 0.206500 ms CreateObjectMapping: 0.079400 ms MarkObjects: 2.234200 ms DeleteObjects: 0.014100 ms)
  2393. AssetImportParameters requested are different than current active one (requested -> active):
  2394. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2395. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2396. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2397. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2398. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2399. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2400. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2401. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2402. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2403. ========================================================================
  2404. Received Import Request.
  2405. Time since last request: 10.746441 seconds.
  2406. path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
  2407. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2408. Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2e33e25d1c361abe5ff0b1d7bebf4153') in 0.003912 seconds
  2409. Import took 0.019481 seconds .
  2410. ========================================================================
  2411. Received Import Request.
  2412. Time since last request: 0.065146 seconds.
  2413. path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
  2414. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2415. Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2e33e25d1c361abe5ff0b1d7bebf4153') in 0.001584 seconds
  2416. Import took 0.004925 seconds .
  2417. ========================================================================
  2418. Received Prepare
  2419. Registering precompiled user dll's ...
  2420. Registered in 0.003151 seconds.
  2421. Begin MonoManager ReloadAssembly
  2422. Native extension for WindowsStandalone target not found
  2423. Native extension for WebGL target not found
  2424. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  2425. Preloading 0 native plugins for Editor in 0.00 ms.
  2426. Mono: successfully reloaded assembly
  2427. - Completed reload, in 1.055 seconds
  2428. Domain Reload Profiling:
  2429. ReloadAssembly (1056ms)
  2430. BeginReloadAssembly (116ms)
  2431. ExecutionOrderSort (0ms)
  2432. DisableScriptedObjects (6ms)
  2433. BackupInstance (0ms)
  2434. ReleaseScriptingObjects (0ms)
  2435. CreateAndSetChildDomain (30ms)
  2436. EndReloadAssembly (873ms)
  2437. LoadAssemblies (96ms)
  2438. RebuildTransferFunctionScriptingTraits (0ms)
  2439. SetupTypeCache (275ms)
  2440. ReleaseScriptCaches (1ms)
  2441. RebuildScriptCaches (40ms)
  2442. SetupLoadedEditorAssemblies (365ms)
  2443. LogAssemblyErrors (0ms)
  2444. InitializePlatformSupportModulesInManaged (6ms)
  2445. SetLoadedEditorAssemblies (0ms)
  2446. RefreshPlugins (0ms)
  2447. BeforeProcessingInitializeOnLoad (97ms)
  2448. ProcessInitializeOnLoadAttributes (246ms)
  2449. ProcessInitializeOnLoadMethodAttributes (5ms)
  2450. AfterProcessingInitializeOnLoad (10ms)
  2451. EditorAssembliesLoaded (0ms)
  2452. ExecutionOrderSort2 (0ms)
  2453. AwakeInstancesAfterBackupRestoration (10ms)
  2454. Platform modules already initialized, skipping
  2455. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  2456. Preloading 0 native plugins for Editor in 0.00 ms.
  2457. Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
  2458. System memory in use before: 170.4 MB.
  2459. System memory in use after: 170.7 MB.
  2460. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2740.
  2461. Total: 2.585200 ms (FindLiveObjects: 0.208400 ms CreateObjectMapping: 0.080700 ms MarkObjects: 2.280100 ms DeleteObjects: 0.015200 ms)
  2462. AssetImportParameters requested are different than current active one (requested -> active):
  2463. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2464. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2465. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2466. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2467. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2468. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2469. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2470. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2471. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2472. ========================================================================
  2473. Received Import Request.
  2474. Time since last request: 53.753576 seconds.
  2475. path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
  2476. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2477. Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f98236edd6057f45188f418de934a586') in 0.003778 seconds
  2478. Import took 0.006607 seconds .
  2479. ========================================================================
  2480. Received Import Request.
  2481. Time since last request: 129.009618 seconds.
  2482. path: Assets/Examples/017JsonConstructer/Scripts
  2483. artifactKey: Guid(4776f81a4a4649f4f921113470a20cd1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2484. Start importing Assets/Examples/017JsonConstructer/Scripts using Guid(4776f81a4a4649f4f921113470a20cd1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3638892a215b0fcd844275b320402729') in 0.001756 seconds
  2485. Import took 0.004967 seconds .
  2486. ========================================================================
  2487. Received Import Request.
  2488. Time since last request: 0.489118 seconds.
  2489. path: Assets/Examples/017JsonConstructer/Scripts/ExampleTestScript.cs
  2490. artifactKey: Guid(f61239b6ea10d974e96ef6b959aa92e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2491. Start importing Assets/Examples/017JsonConstructer/Scripts/ExampleTestScript.cs using Guid(f61239b6ea10d974e96ef6b959aa92e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c5d313b00562483d303e540a104a917c') in 0.001651 seconds
  2492. Import took 0.016623 seconds .
  2493. ========================================================================
  2494. Received Import Request.
  2495. Time since last request: 2.707570 seconds.
  2496. path: Assets/Examples/017JsonConstructer/Scripts/JC.cs
  2497. artifactKey: Guid(f61239b6ea10d974e96ef6b959aa92e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2498. Start importing Assets/Examples/017JsonConstructer/Scripts/JC.cs using Guid(f61239b6ea10d974e96ef6b959aa92e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0f9717f6a2387ae1dd1e3e042c2e3a9a') in 0.002139 seconds
  2499. Import took 0.005201 seconds .
  2500. ========================================================================
  2501. Received Import Request.
  2502. Time since last request: 1.216847 seconds.
  2503. path: Assets/Examples/017JsonConstructer/Scenes
  2504. artifactKey: Guid(7ef728cd07cc74a44be631f083d68b98) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2505. Start importing Assets/Examples/017JsonConstructer/Scenes using Guid(7ef728cd07cc74a44be631f083d68b98) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '61a3d95951395a5096fc5cd152e2e5a4') in 0.001985 seconds
  2506. Import took 0.015646 seconds .
  2507. ========================================================================
  2508. Received Import Request.
  2509. Time since last request: 0.291499 seconds.
  2510. path: Assets/Examples/017JsonConstructer/Scenes/Example.unity
  2511. artifactKey: Guid(5e370fd43ad04524c97fe593b9e0e372) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2512. Start importing Assets/Examples/017JsonConstructer/Scenes/Example.unity using Guid(5e370fd43ad04524c97fe593b9e0e372) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd6c2b389442012c51a58738a03bac9f7') in 0.052400 seconds
  2513. Import took 0.055638 seconds .
  2514. ========================================================================
  2515. Received Prepare
  2516. Registering precompiled user dll's ...
  2517. Registered in 0.003013 seconds.
  2518. Begin MonoManager ReloadAssembly
  2519. Native extension for WindowsStandalone target not found
  2520. Native extension for WebGL target not found
  2521. Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
  2522. Preloading 0 native plugins for Editor in 0.00 ms.
  2523. Mono: successfully reloaded assembly
  2524. - Completed reload, in 1.049 seconds
  2525. Domain Reload Profiling:
  2526. ReloadAssembly (1050ms)
  2527. BeginReloadAssembly (117ms)
  2528. ExecutionOrderSort (0ms)
  2529. DisableScriptedObjects (6ms)
  2530. BackupInstance (0ms)
  2531. ReleaseScriptingObjects (0ms)
  2532. CreateAndSetChildDomain (34ms)
  2533. EndReloadAssembly (867ms)
  2534. LoadAssemblies (96ms)
  2535. RebuildTransferFunctionScriptingTraits (0ms)
  2536. SetupTypeCache (271ms)
  2537. ReleaseScriptCaches (1ms)
  2538. RebuildScriptCaches (39ms)
  2539. SetupLoadedEditorAssemblies (365ms)
  2540. LogAssemblyErrors (0ms)
  2541. InitializePlatformSupportModulesInManaged (6ms)
  2542. SetLoadedEditorAssemblies (0ms)
  2543. RefreshPlugins (1ms)
  2544. BeforeProcessingInitializeOnLoad (97ms)
  2545. ProcessInitializeOnLoadAttributes (245ms)
  2546. ProcessInitializeOnLoadMethodAttributes (5ms)
  2547. AfterProcessingInitializeOnLoad (11ms)
  2548. EditorAssembliesLoaded (0ms)
  2549. ExecutionOrderSort2 (0ms)
  2550. AwakeInstancesAfterBackupRestoration (11ms)
  2551. Platform modules already initialized, skipping
  2552. Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
  2553. Preloading 0 native plugins for Editor in 0.00 ms.
  2554. Unloading 2117 Unused Serialized files (Serialized files now loaded: 0)
  2555. System memory in use before: 170.5 MB.
  2556. System memory in use after: 170.7 MB.
  2557. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2745.
  2558. Total: 2.661200 ms (FindLiveObjects: 0.206400 ms CreateObjectMapping: 0.082300 ms MarkObjects: 2.355900 ms DeleteObjects: 0.015700 ms)
  2559. AssetImportParameters requested are different than current active one (requested -> active):
  2560. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2561. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2562. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2563. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2564. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2565. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2566. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2567. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2568. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2569. ========================================================================
  2570. Received Prepare
  2571. Registering precompiled user dll's ...
  2572. Registered in 0.002966 seconds.
  2573. Begin MonoManager ReloadAssembly
  2574. Native extension for WindowsStandalone target not found
  2575. Native extension for WebGL target not found
  2576. Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
  2577. Preloading 0 native plugins for Editor in 0.00 ms.
  2578. Mono: successfully reloaded assembly
  2579. - Completed reload, in 1.063 seconds
  2580. Domain Reload Profiling:
  2581. ReloadAssembly (1063ms)
  2582. BeginReloadAssembly (122ms)
  2583. ExecutionOrderSort (0ms)
  2584. DisableScriptedObjects (6ms)
  2585. BackupInstance (0ms)
  2586. ReleaseScriptingObjects (0ms)
  2587. CreateAndSetChildDomain (31ms)
  2588. EndReloadAssembly (876ms)
  2589. LoadAssemblies (99ms)
  2590. RebuildTransferFunctionScriptingTraits (0ms)
  2591. SetupTypeCache (267ms)
  2592. ReleaseScriptCaches (1ms)
  2593. RebuildScriptCaches (42ms)
  2594. SetupLoadedEditorAssemblies (372ms)
  2595. LogAssemblyErrors (0ms)
  2596. InitializePlatformSupportModulesInManaged (6ms)
  2597. SetLoadedEditorAssemblies (0ms)
  2598. RefreshPlugins (1ms)
  2599. BeforeProcessingInitializeOnLoad (103ms)
  2600. ProcessInitializeOnLoadAttributes (246ms)
  2601. ProcessInitializeOnLoadMethodAttributes (5ms)
  2602. AfterProcessingInitializeOnLoad (11ms)
  2603. EditorAssembliesLoaded (0ms)
  2604. ExecutionOrderSort2 (0ms)
  2605. AwakeInstancesAfterBackupRestoration (10ms)
  2606. Platform modules already initialized, skipping
  2607. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  2608. Preloading 0 native plugins for Editor in 0.00 ms.
  2609. Unloading 2117 Unused Serialized files (Serialized files now loaded: 0)
  2610. System memory in use before: 170.5 MB.
  2611. System memory in use after: 170.7 MB.
  2612. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2749.
  2613. Total: 2.801600 ms (FindLiveObjects: 0.229300 ms CreateObjectMapping: 0.098200 ms MarkObjects: 2.454700 ms DeleteObjects: 0.018200 ms)
  2614. AssetImportParameters requested are different than current active one (requested -> active):
  2615. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2616. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2617. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2618. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2619. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2620. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2621. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2622. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2623. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2624. ========================================================================
  2625. Received Prepare
  2626. Registering precompiled user dll's ...
  2627. Registered in 0.003318 seconds.
  2628. Begin MonoManager ReloadAssembly
  2629. Native extension for WindowsStandalone target not found
  2630. Native extension for WebGL target not found
  2631. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  2632. Preloading 0 native plugins for Editor in 0.00 ms.
  2633. Mono: successfully reloaded assembly
  2634. - Completed reload, in 1.047 seconds
  2635. Domain Reload Profiling:
  2636. ReloadAssembly (1047ms)
  2637. BeginReloadAssembly (110ms)
  2638. ExecutionOrderSort (0ms)
  2639. DisableScriptedObjects (6ms)
  2640. BackupInstance (0ms)
  2641. ReleaseScriptingObjects (0ms)
  2642. CreateAndSetChildDomain (30ms)
  2643. EndReloadAssembly (874ms)
  2644. LoadAssemblies (96ms)
  2645. RebuildTransferFunctionScriptingTraits (0ms)
  2646. SetupTypeCache (287ms)
  2647. ReleaseScriptCaches (1ms)
  2648. RebuildScriptCaches (40ms)
  2649. SetupLoadedEditorAssemblies (358ms)
  2650. LogAssemblyErrors (0ms)
  2651. InitializePlatformSupportModulesInManaged (6ms)
  2652. SetLoadedEditorAssemblies (0ms)
  2653. RefreshPlugins (0ms)
  2654. BeforeProcessingInitializeOnLoad (93ms)
  2655. ProcessInitializeOnLoadAttributes (242ms)
  2656. ProcessInitializeOnLoadMethodAttributes (5ms)
  2657. AfterProcessingInitializeOnLoad (11ms)
  2658. EditorAssembliesLoaded (0ms)
  2659. ExecutionOrderSort2 (0ms)
  2660. AwakeInstancesAfterBackupRestoration (10ms)
  2661. Platform modules already initialized, skipping
  2662. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  2663. Preloading 0 native plugins for Editor in 0.00 ms.
  2664. Unloading 2117 Unused Serialized files (Serialized files now loaded: 0)
  2665. System memory in use before: 170.5 MB.
  2666. System memory in use after: 170.7 MB.
  2667. Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2753.
  2668. Total: 2.793300 ms (FindLiveObjects: 0.202200 ms CreateObjectMapping: 0.077700 ms MarkObjects: 2.494900 ms DeleteObjects: 0.017600 ms)
  2669. AssetImportParameters requested are different than current active one (requested -> active):
  2670. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2671. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2672. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2673. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2674. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2675. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2676. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2677. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2678. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2679. ========================================================================
  2680. Received Import Request.
  2681. Time since last request: 951.425391 seconds.
  2682. path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
  2683. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2684. Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a377804621c53b49853e58fd44a0be1c') in 0.003984 seconds
  2685. Import took 0.018669 seconds .
  2686. ========================================================================
  2687. Received Import Request.
  2688. Time since last request: 0.014146 seconds.
  2689. path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
  2690. artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2691. Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a377804621c53b49853e58fd44a0be1c') in 0.001688 seconds
  2692. Import took 0.004953 seconds .
  2693. ========================================================================
  2694. Received Import Request.
  2695. Time since last request: 152.833520 seconds.
  2696. path: Assets/PDFs/017.pdf
  2697. artifactKey: Guid(8084ee8b42178fa42948e51fb4b468c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2698. Start importing Assets/PDFs/017.pdf using Guid(8084ee8b42178fa42948e51fb4b468c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5b48ffe95e8d36e757145e1cb5293bc6') in 0.020976 seconds
  2699. Import took 0.037304 seconds .
  2700. ========================================================================
  2701. Received Import Request.
  2702. Time since last request: 0.895631 seconds.
  2703. path: Assets/PDFs/018.pdf
  2704. artifactKey: Guid(3b9cfd7c05abb214cbd036df7f3cab56) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2705. Start importing Assets/PDFs/018.pdf using Guid(3b9cfd7c05abb214cbd036df7f3cab56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a29591824d3d25ccd671cc53c0039c69') in 0.001941 seconds
  2706. Import took 0.008748 seconds .
  2707. ========================================================================
  2708. Received Import Request.
  2709. Time since last request: 0.000928 seconds.
  2710. path: Assets/PDFs/018.pdf
  2711. artifactKey: Guid(3b9cfd7c05abb214cbd036df7f3cab56) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2712. Start importing Assets/PDFs/018.pdf using Guid(3b9cfd7c05abb214cbd036df7f3cab56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a29591824d3d25ccd671cc53c0039c69') in 0.001518 seconds
  2713. Import took 0.004567 seconds .
  2714. ========================================================================
  2715. Received Import Request.
  2716. Time since last request: 1.210121 seconds.
  2717. path: Assets/PDFs/014.pdf
  2718. artifactKey: Guid(171002eb164e5214eaa073170882e0a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2719. Start importing Assets/PDFs/014.pdf using Guid(171002eb164e5214eaa073170882e0a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '22a98d318af81b86bdadc4eb1448c236') in 0.002364 seconds
  2720. Import took 0.006303 seconds .
  2721. ========================================================================
  2722. Received Import Request.
  2723. Time since last request: 0.482444 seconds.
  2724. path: Assets/PDFs/015.pdf
  2725. artifactKey: Guid(34e554e4c0ab27f459003031370b6acc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2726. Start importing Assets/PDFs/015.pdf using Guid(34e554e4c0ab27f459003031370b6acc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1d6e90b9601d9218e86205e7ee4937ad') in 0.001663 seconds
  2727. Import took 0.018289 seconds .
  2728. AssetImportWorkerClient::OnTransportError - code=2 error=End of file