AssetImportWorker0-prev.log 227 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572
  1. Using pre-set license
  2. Built from '2020.3/china_unity/release' branch; Version is '2020.3.26f1c1 (cf0e0a163043) revision 13569546'; Using compiler version '192528614'; Build Type 'Release'
  3. OS: 'Windows 10 (10.0.18363) 64bit Professional' Language: 'zh' Physical Memory: 8135 MB
  4. BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
  5. COMMAND LINE ARGUMENTS:
  6. C:\Program Files\Unity\Hub\Editor\2020.3.26f1c1\Editor\Unity.exe
  7. -adb2
  8. -batchMode
  9. -noUpm
  10. -name
  11. AssetImportWorker0
  12. -projectPath
  13. F:/cocorobo/cocorobo-unity
  14. -logFile
  15. Logs/AssetImportWorker0.log
  16. -srvPort
  17. 53690
  18. Successfully changed project path to: F:/cocorobo/cocorobo-unity
  19. F:/cocorobo/cocorobo-unity
  20. Using Asset Import Pipeline V2.
  21. AS: AutoStreaming module initializing.Refreshing native plugins compatible for Editor in 81.52 ms, found 2 plugins.
  22. Preloading 0 native plugins for Editor in 0.00 ms.
  23. Initialize engine version: 2020.3.26f1c1 (cf0e0a163043)
  24. [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.26f1c1/Editor/Data/Resources/UnitySubsystems
  25. [Subsystems] Discovering subsystems at path F:/cocorobo/cocorobo-unity/Assets
  26. GfxDevice: creating device client; threaded=0
  27. Direct3D:
  28. Version: Direct3D 11.0 [level 11.1]
  29. Renderer: NVIDIA GeForce GTX 1050 (ID=0x1c81)
  30. Vendor:
  31. VRAM: 1977 MB
  32. Driver: 27.21.14.5671
  33. Initialize mono
  34. Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.26f1c1/Editor/Data/Managed'
  35. Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.26f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
  36. Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.26f1c1/Editor/Data/MonoBleedingEdge/etc'
  37. Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56808
  38. Begin MonoManager ReloadAssembly
  39. Registering precompiled unity dll's ...
  40. Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.26f1c1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll
  41. Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.26f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
  42. Registered in 0.012684 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 58.32 ms, found 2 plugins.
  46. Preloading 0 native plugins for Editor in 0.00 ms.
  47. Mono: successfully reloaded assembly
  48. - Completed reload, in 1.072 seconds
  49. Domain Reload Profiling:
  50. ReloadAssembly (1072ms)
  51. BeginReloadAssembly (147ms)
  52. ExecutionOrderSort (0ms)
  53. DisableScriptedObjects (0ms)
  54. BackupInstance (0ms)
  55. ReleaseScriptingObjects (0ms)
  56. CreateAndSetChildDomain (1ms)
  57. EndReloadAssembly (752ms)
  58. LoadAssemblies (133ms)
  59. RebuildTransferFunctionScriptingTraits (0ms)
  60. SetupTypeCache (243ms)
  61. ReleaseScriptCaches (0ms)
  62. RebuildScriptCaches (49ms)
  63. SetupLoadedEditorAssemblies (260ms)
  64. LogAssemblyErrors (0ms)
  65. InitializePlatformSupportModulesInManaged (10ms)
  66. SetLoadedEditorAssemblies (0ms)
  67. RefreshPlugins (58ms)
  68. BeforeProcessingInitializeOnLoad (13ms)
  69. ProcessInitializeOnLoadAttributes (131ms)
  70. ProcessInitializeOnLoadMethodAttributes (47ms)
  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.009181 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 1.07 ms, found 2 plugins.
  82. Preloading 0 native plugins for Editor in 0.00 ms.
  83. Mono: successfully reloaded assembly
  84. - Completed reload, in 4.015 seconds
  85. Domain Reload Profiling:
  86. ReloadAssembly (4016ms)
  87. BeginReloadAssembly (399ms)
  88. ExecutionOrderSort (0ms)
  89. DisableScriptedObjects (9ms)
  90. BackupInstance (0ms)
  91. ReleaseScriptingObjects (0ms)
  92. CreateAndSetChildDomain (38ms)
  93. EndReloadAssembly (3417ms)
  94. LoadAssemblies (242ms)
  95. RebuildTransferFunctionScriptingTraits (0ms)
  96. SetupTypeCache (740ms)
  97. ReleaseScriptCaches (0ms)
  98. RebuildScriptCaches (102ms)
  99. SetupLoadedEditorAssemblies (2114ms)
  100. LogAssemblyErrors (0ms)
  101. InitializePlatformSupportModulesInManaged (19ms)
  102. SetLoadedEditorAssemblies (3ms)
  103. RefreshPlugins (1ms)
  104. BeforeProcessingInitializeOnLoad (1395ms)
  105. ProcessInitializeOnLoadAttributes (561ms)
  106. ProcessInitializeOnLoadMethodAttributes (30ms)
  107. AfterProcessingInitializeOnLoad (104ms)
  108. EditorAssembliesLoaded (1ms)
  109. ExecutionOrderSort2 (0ms)
  110. AwakeInstancesAfterBackupRestoration (13ms)
  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.17 seconds
  115. Refreshing native plugins compatible for Editor in 0.71 ms, found 2 plugins.
  116. Preloading 0 native plugins for Editor in 0.00 ms.
  117. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  118. System memory in use before: 71.6 MB.
  119. System memory in use after: 71.7 MB.
  120. Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 1975.
  121. Total: 3.563100 ms (FindLiveObjects: 0.307100 ms CreateObjectMapping: 0.078700 ms MarkObjects: 3.142400 ms DeleteObjects: 0.032700 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/script/MoveCurtains.cs
  135. artifactKey: Guid(3454a08ce264e4d40a9eeb5ff0d3c49a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  136. Start importing Assets/script/MoveCurtains.cs using Guid(3454a08ce264e4d40a9eeb5ff0d3c49a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3f1747dfc7d89ed9c100156b7ffe0b6e') in 0.066676 seconds
  137. Import took 0.081311 seconds .
  138. ========================================================================
  139. Received Prepare
  140. Registering precompiled user dll's ...
  141. Registered in 0.007820 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.69 ms, found 2 plugins.
  146. Preloading 0 native plugins for Editor in 0.00 ms.
  147. Mono: successfully reloaded assembly
  148. - Completed reload, in 1.762 seconds
  149. Domain Reload Profiling:
  150. ReloadAssembly (1764ms)
  151. BeginReloadAssembly (214ms)
  152. ExecutionOrderSort (0ms)
  153. DisableScriptedObjects (8ms)
  154. BackupInstance (0ms)
  155. ReleaseScriptingObjects (0ms)
  156. CreateAndSetChildDomain (47ms)
  157. EndReloadAssembly (1411ms)
  158. LoadAssemblies (182ms)
  159. RebuildTransferFunctionScriptingTraits (0ms)
  160. SetupTypeCache (421ms)
  161. ReleaseScriptCaches (1ms)
  162. RebuildScriptCaches (59ms)
  163. SetupLoadedEditorAssemblies (630ms)
  164. LogAssemblyErrors (0ms)
  165. InitializePlatformSupportModulesInManaged (10ms)
  166. SetLoadedEditorAssemblies (1ms)
  167. RefreshPlugins (1ms)
  168. BeforeProcessingInitializeOnLoad (138ms)
  169. ProcessInitializeOnLoadAttributes (420ms)
  170. ProcessInitializeOnLoadMethodAttributes (14ms)
  171. AfterProcessingInitializeOnLoad (45ms)
  172. EditorAssembliesLoaded (0ms)
  173. ExecutionOrderSort2 (0ms)
  174. AwakeInstancesAfterBackupRestoration (10ms)
  175. Platform modules already initialized, skipping
  176. Refreshing native plugins compatible for Editor in 0.62 ms, found 2 plugins.
  177. Preloading 0 native plugins for Editor in 0.00 ms.
  178. Unloading 1526 Unused Serialized files (Serialized files now loaded: 0)
  179. System memory in use before: 71.4 MB.
  180. System memory in use after: 71.5 MB.
  181. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1977.
  182. Total: 3.506700 ms (FindLiveObjects: 0.176600 ms CreateObjectMapping: 0.076000 ms MarkObjects: 3.209400 ms DeleteObjects: 0.042700 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 Prepare
  195. Registering precompiled user dll's ...
  196. Registered in 0.008635 seconds.
  197. Begin MonoManager ReloadAssembly
  198. Native extension for WindowsStandalone target not found
  199. Native extension for WebGL target not found
  200. Refreshing native plugins compatible for Editor in 0.68 ms, found 2 plugins.
  201. Preloading 0 native plugins for Editor in 0.00 ms.
  202. Mono: successfully reloaded assembly
  203. - Completed reload, in 1.848 seconds
  204. Domain Reload Profiling:
  205. ReloadAssembly (1848ms)
  206. BeginReloadAssembly (266ms)
  207. ExecutionOrderSort (0ms)
  208. DisableScriptedObjects (9ms)
  209. BackupInstance (0ms)
  210. ReleaseScriptingObjects (0ms)
  211. CreateAndSetChildDomain (52ms)
  212. EndReloadAssembly (1402ms)
  213. LoadAssemblies (224ms)
  214. RebuildTransferFunctionScriptingTraits (0ms)
  215. SetupTypeCache (484ms)
  216. ReleaseScriptCaches (1ms)
  217. RebuildScriptCaches (63ms)
  218. SetupLoadedEditorAssemblies (534ms)
  219. LogAssemblyErrors (0ms)
  220. InitializePlatformSupportModulesInManaged (11ms)
  221. SetLoadedEditorAssemblies (1ms)
  222. RefreshPlugins (1ms)
  223. BeforeProcessingInitializeOnLoad (123ms)
  224. ProcessInitializeOnLoadAttributes (335ms)
  225. ProcessInitializeOnLoadMethodAttributes (15ms)
  226. AfterProcessingInitializeOnLoad (48ms)
  227. EditorAssembliesLoaded (0ms)
  228. ExecutionOrderSort2 (0ms)
  229. AwakeInstancesAfterBackupRestoration (11ms)
  230. Platform modules already initialized, skipping
  231. Refreshing native plugins compatible for Editor in 0.69 ms, found 2 plugins.
  232. Preloading 0 native plugins for Editor in 0.00 ms.
  233. Unloading 1526 Unused Serialized files (Serialized files now loaded: 0)
  234. System memory in use before: 71.4 MB.
  235. System memory in use after: 71.6 MB.
  236. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1979.
  237. Total: 4.194900 ms (FindLiveObjects: 0.171500 ms CreateObjectMapping: 0.074000 ms MarkObjects: 3.921000 ms DeleteObjects: 0.026400 ms)
  238. AssetImportParameters requested are different than current active one (requested -> active):
  239. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  240. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  241. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  242. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  243. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  244. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  245. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  246. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  247. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  248. ========================================================================
  249. Received Import Request.
  250. Time since last request: 575.517890 seconds.
  251. path: Assets/Scenes/door.unity
  252. artifactKey: Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  253. Start importing Assets/Scenes/door.unity using Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '22097685d78d1bc5fc7736567e4cc87f') in 0.041755 seconds
  254. Import took 0.068749 seconds .
  255. ========================================================================
  256. Received Prepare
  257. Registering precompiled user dll's ...
  258. Registered in 0.012786 seconds.
  259. Begin MonoManager ReloadAssembly
  260. Native extension for WindowsStandalone target not found
  261. Native extension for WebGL target not found
  262. Refreshing native plugins compatible for Editor in 0.65 ms, found 2 plugins.
  263. Preloading 0 native plugins for Editor in 0.00 ms.
  264. Mono: successfully reloaded assembly
  265. - Completed reload, in 1.675 seconds
  266. Domain Reload Profiling:
  267. ReloadAssembly (1676ms)
  268. BeginReloadAssembly (216ms)
  269. ExecutionOrderSort (0ms)
  270. DisableScriptedObjects (7ms)
  271. BackupInstance (0ms)
  272. ReleaseScriptingObjects (0ms)
  273. CreateAndSetChildDomain (45ms)
  274. EndReloadAssembly (1307ms)
  275. LoadAssemblies (197ms)
  276. RebuildTransferFunctionScriptingTraits (0ms)
  277. SetupTypeCache (434ms)
  278. ReleaseScriptCaches (1ms)
  279. RebuildScriptCaches (59ms)
  280. SetupLoadedEditorAssemblies (501ms)
  281. LogAssemblyErrors (0ms)
  282. InitializePlatformSupportModulesInManaged (10ms)
  283. SetLoadedEditorAssemblies (1ms)
  284. RefreshPlugins (1ms)
  285. BeforeProcessingInitializeOnLoad (114ms)
  286. ProcessInitializeOnLoadAttributes (314ms)
  287. ProcessInitializeOnLoadMethodAttributes (14ms)
  288. AfterProcessingInitializeOnLoad (45ms)
  289. EditorAssembliesLoaded (0ms)
  290. ExecutionOrderSort2 (0ms)
  291. AwakeInstancesAfterBackupRestoration (10ms)
  292. Platform modules already initialized, skipping
  293. Refreshing native plugins compatible for Editor in 0.69 ms, found 2 plugins.
  294. Preloading 0 native plugins for Editor in 0.00 ms.
  295. Unloading 1526 Unused Serialized files (Serialized files now loaded: 0)
  296. System memory in use before: 71.5 MB.
  297. System memory in use after: 71.6 MB.
  298. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1981.
  299. Total: 4.360400 ms (FindLiveObjects: 0.168100 ms CreateObjectMapping: 0.076700 ms MarkObjects: 4.086700 ms DeleteObjects: 0.026800 ms)
  300. AssetImportParameters requested are different than current active one (requested -> active):
  301. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  302. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  303. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  304. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  305. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  306. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  307. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  308. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  309. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  310. ========================================================================
  311. Received Prepare
  312. Refreshing native plugins compatible for Editor in 6.26 ms, found 2 plugins.
  313. Preloading 0 native plugins for Editor in 0.00 ms.
  314. Unloading 12 Unused Serialized files (Serialized files now loaded: 0)
  315. System memory in use before: 41.5 MB.
  316. System memory in use after: 41.6 MB.
  317. Unloading 12 unused Assets to reduce memory usage. Loaded Objects now: 1981.
  318. Total: 4.219000 ms (FindLiveObjects: 0.203600 ms CreateObjectMapping: 0.079100 ms MarkObjects: 3.907300 ms DeleteObjects: 0.026900 ms)
  319. AssetImportParameters requested are different than current active one (requested -> active):
  320. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  321. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  322. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  323. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  324. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  325. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  326. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  327. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  328. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  329. ========================================================================
  330. Received Prepare
  331. Registering precompiled user dll's ...
  332. Registered in 0.187230 seconds.
  333. Begin MonoManager ReloadAssembly
  334. Native extension for WindowsStandalone target not found
  335. Native extension for WebGL target not found
  336. Refreshing native plugins compatible for Editor in 0.75 ms, found 2 plugins.
  337. Preloading 0 native plugins for Editor in 0.00 ms.
  338. Mono: successfully reloaded assembly
  339. - Completed reload, in 1.715 seconds
  340. Domain Reload Profiling:
  341. ReloadAssembly (1716ms)
  342. BeginReloadAssembly (264ms)
  343. ExecutionOrderSort (0ms)
  344. DisableScriptedObjects (10ms)
  345. BackupInstance (0ms)
  346. ReleaseScriptingObjects (0ms)
  347. CreateAndSetChildDomain (48ms)
  348. EndReloadAssembly (1294ms)
  349. LoadAssemblies (231ms)
  350. RebuildTransferFunctionScriptingTraits (0ms)
  351. SetupTypeCache (421ms)
  352. ReleaseScriptCaches (1ms)
  353. RebuildScriptCaches (60ms)
  354. SetupLoadedEditorAssemblies (502ms)
  355. LogAssemblyErrors (0ms)
  356. InitializePlatformSupportModulesInManaged (10ms)
  357. SetLoadedEditorAssemblies (1ms)
  358. RefreshPlugins (1ms)
  359. BeforeProcessingInitializeOnLoad (117ms)
  360. ProcessInitializeOnLoadAttributes (312ms)
  361. ProcessInitializeOnLoadMethodAttributes (15ms)
  362. AfterProcessingInitializeOnLoad (46ms)
  363. EditorAssembliesLoaded (0ms)
  364. ExecutionOrderSort2 (0ms)
  365. AwakeInstancesAfterBackupRestoration (11ms)
  366. Platform modules already initialized, skipping
  367. Refreshing native plugins compatible for Editor in 1.29 ms, found 2 plugins.
  368. Preloading 0 native plugins for Editor in 0.00 ms.
  369. Unloading 1526 Unused Serialized files (Serialized files now loaded: 0)
  370. System memory in use before: 71.5 MB.
  371. System memory in use after: 71.6 MB.
  372. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1983.
  373. Total: 7.974100 ms (FindLiveObjects: 0.280100 ms CreateObjectMapping: 0.264000 ms MarkObjects: 7.393300 ms DeleteObjects: 0.034000 ms)
  374. AssetImportParameters requested are different than current active one (requested -> active):
  375. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  376. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  377. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  378. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  379. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  380. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  381. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  382. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  383. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  384. ========================================================================
  385. Received Prepare
  386. Registering precompiled user dll's ...
  387. Registered in 0.016123 seconds.
  388. Begin MonoManager ReloadAssembly
  389. Native extension for WindowsStandalone target not found
  390. Native extension for WebGL target not found
  391. Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins.
  392. Preloading 0 native plugins for Editor in 0.00 ms.
  393. Mono: successfully reloaded assembly
  394. - Completed reload, in 3.348 seconds
  395. Domain Reload Profiling:
  396. ReloadAssembly (3349ms)
  397. BeginReloadAssembly (253ms)
  398. ExecutionOrderSort (0ms)
  399. DisableScriptedObjects (8ms)
  400. BackupInstance (0ms)
  401. ReleaseScriptingObjects (0ms)
  402. CreateAndSetChildDomain (52ms)
  403. EndReloadAssembly (2909ms)
  404. LoadAssemblies (237ms)
  405. RebuildTransferFunctionScriptingTraits (0ms)
  406. SetupTypeCache (1074ms)
  407. ReleaseScriptCaches (2ms)
  408. RebuildScriptCaches (151ms)
  409. SetupLoadedEditorAssemblies (944ms)
  410. LogAssemblyErrors (0ms)
  411. InitializePlatformSupportModulesInManaged (19ms)
  412. SetLoadedEditorAssemblies (1ms)
  413. RefreshPlugins (1ms)
  414. BeforeProcessingInitializeOnLoad (286ms)
  415. ProcessInitializeOnLoadAttributes (545ms)
  416. ProcessInitializeOnLoadMethodAttributes (23ms)
  417. AfterProcessingInitializeOnLoad (69ms)
  418. EditorAssembliesLoaded (1ms)
  419. ExecutionOrderSort2 (0ms)
  420. AwakeInstancesAfterBackupRestoration (16ms)
  421. Platform modules already initialized, skipping
  422. Refreshing native plugins compatible for Editor in 0.88 ms, found 2 plugins.
  423. Preloading 0 native plugins for Editor in 0.00 ms.
  424. Unloading 1526 Unused Serialized files (Serialized files now loaded: 0)
  425. System memory in use before: 71.5 MB.
  426. System memory in use after: 71.6 MB.
  427. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1985.
  428. Total: 4.527100 ms (FindLiveObjects: 0.317200 ms CreateObjectMapping: 0.102500 ms MarkObjects: 4.076400 ms DeleteObjects: 0.029100 ms)
  429. AssetImportParameters requested are different than current active one (requested -> active):
  430. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  431. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  432. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  433. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  434. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  435. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  436. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  437. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  438. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  439. ========================================================================
  440. Received Prepare
  441. Registering precompiled user dll's ...
  442. Registered in 0.012465 seconds.
  443. Begin MonoManager ReloadAssembly
  444. Native extension for WindowsStandalone target not found
  445. Native extension for WebGL target not found
  446. Refreshing native plugins compatible for Editor in 1.01 ms, found 2 plugins.
  447. Preloading 0 native plugins for Editor in 0.00 ms.
  448. Mono: successfully reloaded assembly
  449. - Completed reload, in 1.830 seconds
  450. Domain Reload Profiling:
  451. ReloadAssembly (1830ms)
  452. BeginReloadAssembly (237ms)
  453. ExecutionOrderSort (0ms)
  454. DisableScriptedObjects (8ms)
  455. BackupInstance (0ms)
  456. ReleaseScriptingObjects (0ms)
  457. CreateAndSetChildDomain (42ms)
  458. EndReloadAssembly (1414ms)
  459. LoadAssemblies (222ms)
  460. RebuildTransferFunctionScriptingTraits (0ms)
  461. SetupTypeCache (495ms)
  462. ReleaseScriptCaches (1ms)
  463. RebuildScriptCaches (59ms)
  464. SetupLoadedEditorAssemblies (522ms)
  465. LogAssemblyErrors (0ms)
  466. InitializePlatformSupportModulesInManaged (14ms)
  467. SetLoadedEditorAssemblies (1ms)
  468. RefreshPlugins (1ms)
  469. BeforeProcessingInitializeOnLoad (123ms)
  470. ProcessInitializeOnLoadAttributes (321ms)
  471. ProcessInitializeOnLoadMethodAttributes (15ms)
  472. AfterProcessingInitializeOnLoad (46ms)
  473. EditorAssembliesLoaded (0ms)
  474. ExecutionOrderSort2 (0ms)
  475. AwakeInstancesAfterBackupRestoration (11ms)
  476. Platform modules already initialized, skipping
  477. Refreshing native plugins compatible for Editor in 0.64 ms, found 2 plugins.
  478. Preloading 0 native plugins for Editor in 0.00 ms.
  479. Unloading 1526 Unused Serialized files (Serialized files now loaded: 0)
  480. System memory in use before: 71.5 MB.
  481. System memory in use after: 71.6 MB.
  482. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1987.
  483. Total: 3.936500 ms (FindLiveObjects: 0.163500 ms CreateObjectMapping: 0.113600 ms MarkObjects: 3.630700 ms DeleteObjects: 0.026800 ms)
  484. AssetImportParameters requested are different than current active one (requested -> active):
  485. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  486. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  487. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  488. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  489. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  490. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  491. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  492. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  493. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  494. ========================================================================
  495. Received Import Request.
  496. Time since last request: 643.940141 seconds.
  497. path: Assets/Plugins
  498. artifactKey: Guid(c16db02b17672284ab79b3062eb1d975) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  499. Start importing Assets/Plugins using Guid(c16db02b17672284ab79b3062eb1d975) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '16668a184d56199465671ec17270fded') in 0.036403 seconds
  500. Import took 0.084232 seconds .
  501. ========================================================================
  502. Received Import Request.
  503. Time since last request: 74.217172 seconds.
  504. path: Assets/Plugins/open.jslib
  505. artifactKey: Guid(b46852b14cdb74641a9098c91d19b35b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  506. Start importing Assets/Plugins/open.jslib using Guid(b46852b14cdb74641a9098c91d19b35b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'efe70f152efd2efe9cc9ce53f3517164') in 0.055656 seconds
  507. Import took 0.083558 seconds .
  508. ========================================================================
  509. Received Import Request.
  510. Time since last request: 29.068944 seconds.
  511. path: Assets/Plugins/open.jslib
  512. artifactKey: Guid(b46852b14cdb74641a9098c91d19b35b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  513. Start importing Assets/Plugins/open.jslib using Guid(b46852b14cdb74641a9098c91d19b35b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '59f908c472f4a0e906348c996bb92ca3') in 0.008641 seconds
  514. Import took 0.028556 seconds .
  515. ========================================================================
  516. Received Import Request.
  517. Time since last request: 395.258568 seconds.
  518. path: Assets/Plugins/open.jslib
  519. artifactKey: Guid(b46852b14cdb74641a9098c91d19b35b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  520. Start importing Assets/Plugins/open.jslib using Guid(b46852b14cdb74641a9098c91d19b35b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ad1dc341c547a5cdfb53a56eb728a525') in 0.005984 seconds
  521. Import took 0.028631 seconds .
  522. ========================================================================
  523. Received Import Request.
  524. Time since last request: 1.577037 seconds.
  525. path: Assets/Plugins/jslib.jslib
  526. artifactKey: Guid(b46852b14cdb74641a9098c91d19b35b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  527. Start importing Assets/Plugins/jslib.jslib using Guid(b46852b14cdb74641a9098c91d19b35b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a3a903066aa4ab40c61317fd6b67b763') in 0.006160 seconds
  528. Import took 0.020902 seconds .
  529. ========================================================================
  530. Received Import Request.
  531. Time since last request: 572.608682 seconds.
  532. path: Assets/Plugins/js.js
  533. artifactKey: Guid(347ef259bddab7d4887d5e5032f01774) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  534. Start importing Assets/Plugins/js.js using Guid(347ef259bddab7d4887d5e5032f01774) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6e0b583e902c0b556b8d131d994184a4') in 0.024930 seconds
  535. Import took 0.049238 seconds .
  536. ========================================================================
  537. Received Import Request.
  538. Time since last request: 3.628978 seconds.
  539. path: Assets/Plugins/test1.js
  540. artifactKey: Guid(347ef259bddab7d4887d5e5032f01774) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  541. Start importing Assets/Plugins/test1.js using Guid(347ef259bddab7d4887d5e5032f01774) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ec2840f9af5cdde7963b68f92985924') in 0.027326 seconds
  542. Import took 0.055336 seconds .
  543. ========================================================================
  544. Received Prepare
  545. Registering precompiled user dll's ...
  546. Registered in 0.008745 seconds.
  547. Begin MonoManager ReloadAssembly
  548. Native extension for WindowsStandalone target not found
  549. Native extension for WebGL target not found
  550. Refreshing native plugins compatible for Editor in 0.67 ms, found 2 plugins.
  551. Preloading 0 native plugins for Editor in 0.00 ms.
  552. Mono: successfully reloaded assembly
  553. - Completed reload, in 1.723 seconds
  554. Domain Reload Profiling:
  555. ReloadAssembly (1724ms)
  556. BeginReloadAssembly (272ms)
  557. ExecutionOrderSort (0ms)
  558. DisableScriptedObjects (8ms)
  559. BackupInstance (0ms)
  560. ReleaseScriptingObjects (0ms)
  561. CreateAndSetChildDomain (53ms)
  562. EndReloadAssembly (1289ms)
  563. LoadAssemblies (230ms)
  564. RebuildTransferFunctionScriptingTraits (0ms)
  565. SetupTypeCache (420ms)
  566. ReleaseScriptCaches (1ms)
  567. RebuildScriptCaches (61ms)
  568. SetupLoadedEditorAssemblies (500ms)
  569. LogAssemblyErrors (0ms)
  570. InitializePlatformSupportModulesInManaged (10ms)
  571. SetLoadedEditorAssemblies (1ms)
  572. RefreshPlugins (1ms)
  573. BeforeProcessingInitializeOnLoad (118ms)
  574. ProcessInitializeOnLoadAttributes (307ms)
  575. ProcessInitializeOnLoadMethodAttributes (16ms)
  576. AfterProcessingInitializeOnLoad (48ms)
  577. EditorAssembliesLoaded (0ms)
  578. ExecutionOrderSort2 (0ms)
  579. AwakeInstancesAfterBackupRestoration (11ms)
  580. Platform modules already initialized, skipping
  581. Refreshing native plugins compatible for Editor in 0.65 ms, found 2 plugins.
  582. Preloading 0 native plugins for Editor in 0.00 ms.
  583. Unloading 1526 Unused Serialized files (Serialized files now loaded: 0)
  584. System memory in use before: 71.5 MB.
  585. System memory in use after: 71.6 MB.
  586. Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1989.
  587. Total: 3.645300 ms (FindLiveObjects: 0.166500 ms CreateObjectMapping: 0.074100 ms MarkObjects: 3.375100 ms DeleteObjects: 0.027300 ms)
  588. AssetImportParameters requested are different than current active one (requested -> active):
  589. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  590. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  591. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  592. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  593. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  594. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  595. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  596. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  597. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  598. ========================================================================
  599. Received Import Request.
  600. Time since last request: 415.288356 seconds.
  601. path: Assets/Plugins/test1.js
  602. artifactKey: Guid(347ef259bddab7d4887d5e5032f01774) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  603. Start importing Assets/Plugins/test1.js using Guid(347ef259bddab7d4887d5e5032f01774) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '336041fc85f5fa90e0d20c193a3a5923') in 0.428485 seconds
  604. Import took 0.649703 seconds .
  605. ========================================================================
  606. Received Import Request.
  607. Time since last request: 9.142075 seconds.
  608. path: Assets/Plugins/jsTest.js
  609. artifactKey: Guid(347ef259bddab7d4887d5e5032f01774) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  610. Start importing Assets/Plugins/jsTest.js using Guid(347ef259bddab7d4887d5e5032f01774) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c133c7dcb570181d7d948f44df8ef321') in 0.117679 seconds
  611. Import took 0.134959 seconds .
  612. ========================================================================
  613. Received Import Request.
  614. Time since last request: 103.460036 seconds.
  615. path: Assets/Standard Assets
  616. artifactKey: Guid(60f822fa6f97da545bedf082bebe5d14) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  617. Start importing Assets/Standard Assets using Guid(60f822fa6f97da545bedf082bebe5d14) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'add0040a6652e83f281c7feb6796dd49') in 0.013094 seconds
  618. Import took 0.018271 seconds .
  619. ========================================================================
  620. Received Import Request.
  621. Time since last request: 7.296449 seconds.
  622. path: Assets/Standard Assets/New Physics Material 2D.physicsMaterial2D
  623. artifactKey: Guid(a6cab9f54a4f6e849b191f4a341173d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  624. Start importing Assets/Standard Assets/New Physics Material 2D.physicsMaterial2D using Guid(a6cab9f54a4f6e849b191f4a341173d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b4d3816fede9e60e623ffbd01c1f620c') in 0.020103 seconds
  625. Import took 0.025302 seconds .
  626. ========================================================================
  627. Received Prepare
  628. Registering precompiled user dll's ...
  629. Registered in 0.077217 seconds.
  630. Begin MonoManager ReloadAssembly
  631. Native extension for WindowsStandalone target not found
  632. Native extension for WebGL target not found
  633. Refreshing native plugins compatible for Editor in 4.34 ms, found 10 plugins.
  634. Preloading 0 native plugins for Editor in 0.00 ms.
  635. Mono: successfully reloaded assembly
  636. - Completed reload, in 5.351 seconds
  637. Domain Reload Profiling:
  638. ReloadAssembly (5386ms)
  639. BeginReloadAssembly (1661ms)
  640. ExecutionOrderSort (0ms)
  641. DisableScriptedObjects (192ms)
  642. BackupInstance (0ms)
  643. ReleaseScriptingObjects (7ms)
  644. CreateAndSetChildDomain (697ms)
  645. EndReloadAssembly (3423ms)
  646. LoadAssemblies (662ms)
  647. RebuildTransferFunctionScriptingTraits (1ms)
  648. SetupTypeCache (1423ms)
  649. ReleaseScriptCaches (2ms)
  650. RebuildScriptCaches (208ms)
  651. SetupLoadedEditorAssemblies (1000ms)
  652. LogAssemblyErrors (0ms)
  653. InitializePlatformSupportModulesInManaged (16ms)
  654. SetLoadedEditorAssemblies (5ms)
  655. RefreshPlugins (4ms)
  656. BeforeProcessingInitializeOnLoad (210ms)
  657. ProcessInitializeOnLoadAttributes (672ms)
  658. ProcessInitializeOnLoadMethodAttributes (30ms)
  659. AfterProcessingInitializeOnLoad (62ms)
  660. EditorAssembliesLoaded (1ms)
  661. ExecutionOrderSort2 (0ms)
  662. AwakeInstancesAfterBackupRestoration (14ms)
  663. Platform modules already initialized, skipping
  664. Refreshing native plugins compatible for Editor in 0.95 ms, found 10 plugins.
  665. Preloading 0 native plugins for Editor in 0.00 ms.
  666. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  667. System memory in use before: 74.6 MB.
  668. System memory in use after: 73.9 MB.
  669. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2030.
  670. Total: 43.841700 ms (FindLiveObjects: 1.681800 ms CreateObjectMapping: 0.220000 ms MarkObjects: 24.389300 ms DeleteObjects: 17.547700 ms)
  671. AssetImportParameters requested are different than current active one (requested -> active):
  672. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  673. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  674. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  675. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  676. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  677. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  678. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  679. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  680. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  681. ========================================================================
  682. Received Import Request.
  683. Time since last request: 4631.780363 seconds.
  684. path: Assets/Scenes/broser.unity
  685. artifactKey: Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  686. Start importing Assets/Scenes/broser.unity using Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7d1545ba5b88312c85f8700c3fa76b4b') in 0.253404 seconds
  687. Import took 0.291027 seconds .
  688. ========================================================================
  689. Received Import Request.
  690. Time since last request: 18.995584 seconds.
  691. path: Assets/Scenes/Browser.unity
  692. artifactKey: Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  693. Start importing Assets/Scenes/Browser.unity using Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4ec3ffbca13301b48a34fc400263e8a8') in 0.047343 seconds
  694. Import took 0.055576 seconds .
  695. ========================================================================
  696. Received Import Request.
  697. Time since last request: 106.374966 seconds.
  698. path: Packages/com.unity.collab-proxy/Editor/Collaborate/Assets/Icons/added-file-dark.png
  699. artifactKey: Guid(1a4f52b613391cd449af3ad2e44affeb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  700. Start importing Packages/com.unity.collab-proxy/Editor/Collaborate/Assets/Icons/added-file-dark.png using Guid(1a4f52b613391cd449af3ad2e44affeb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '79d334044c3707fdd2bca96c12a45f96') in 1.077935 seconds
  701. Import took 1.148079 seconds .
  702. ========================================================================
  703. Received Import Request.
  704. Time since last request: 0.004803 seconds.
  705. path: Packages/com.unity.collab-proxy/Editor/Collaborate/Assets/Icons/added-file-dark@2x.png
  706. artifactKey: Guid(c223e0c507e2c6549a2cb97441b62cbe) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  707. Start importing Packages/com.unity.collab-proxy/Editor/Collaborate/Assets/Icons/added-file-dark@2x.png using Guid(c223e0c507e2c6549a2cb97441b62cbe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '081a04d6f7bcdc4f149293f296615bc7') in 0.067517 seconds
  708. Import took 0.097256 seconds .
  709. ========================================================================
  710. Received Import Request.
  711. Time since last request: 0.001205 seconds.
  712. path: Packages/com.unity.collab-proxy/Editor/Collaborate/Assets/Icons/added-file-light@2x.png
  713. artifactKey: Guid(ec2e3aa6d0ab8ce4eac29b56d65d61d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  714. Start importing Packages/com.unity.collab-proxy/Editor/Collaborate/Assets/Icons/added-file-light@2x.png using Guid(ec2e3aa6d0ab8ce4eac29b56d65d61d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4aae284ca4d5a70a2021098fef036d38') in 0.064628 seconds
  715. Import took 0.079498 seconds .
  716. ========================================================================
  717. Received Import Request.
  718. Time since last request: 0.000376 seconds.
  719. path: Packages/com.unity.collab-proxy/Editor/Collaborate/Assets/Icons/added-file-light.png
  720. artifactKey: Guid(397fff6c3885f8343bb65714f0064b5d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  721. Start importing Packages/com.unity.collab-proxy/Editor/Collaborate/Assets/Icons/added-file-light.png using Guid(397fff6c3885f8343bb65714f0064b5d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5f9febb79d2aa35878df6008b1b80516') in 0.063518 seconds
  722. Import took 0.074259 seconds .
  723. ========================================================================
  724. Received Prepare
  725. Registering precompiled user dll's ...
  726. Registered in 0.018705 seconds.
  727. Begin MonoManager ReloadAssembly
  728. Native extension for WindowsStandalone target not found
  729. Native extension for WebGL target not found
  730. Refreshing native plugins compatible for Editor in 0.99 ms, found 10 plugins.
  731. Preloading 0 native plugins for Editor in 0.00 ms.
  732. Mono: successfully reloaded assembly
  733. - Completed reload, in 3.699 seconds
  734. Domain Reload Profiling:
  735. ReloadAssembly (3700ms)
  736. BeginReloadAssembly (326ms)
  737. ExecutionOrderSort (0ms)
  738. DisableScriptedObjects (13ms)
  739. BackupInstance (0ms)
  740. ReleaseScriptingObjects (0ms)
  741. CreateAndSetChildDomain (106ms)
  742. EndReloadAssembly (3177ms)
  743. LoadAssemblies (240ms)
  744. RebuildTransferFunctionScriptingTraits (0ms)
  745. SetupTypeCache (673ms)
  746. ReleaseScriptCaches (1ms)
  747. RebuildScriptCaches (77ms)
  748. SetupLoadedEditorAssemblies (2021ms)
  749. LogAssemblyErrors (0ms)
  750. InitializePlatformSupportModulesInManaged (167ms)
  751. SetLoadedEditorAssemblies (1ms)
  752. RefreshPlugins (1ms)
  753. BeforeProcessingInitializeOnLoad (650ms)
  754. ProcessInitializeOnLoadAttributes (1115ms)
  755. ProcessInitializeOnLoadMethodAttributes (17ms)
  756. AfterProcessingInitializeOnLoad (69ms)
  757. EditorAssembliesLoaded (1ms)
  758. ExecutionOrderSort2 (0ms)
  759. AwakeInstancesAfterBackupRestoration (12ms)
  760. Platform modules already initialized, skipping
  761. Refreshing native plugins compatible for Editor in 1.12 ms, found 10 plugins.
  762. Preloading 0 native plugins for Editor in 0.00 ms.
  763. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  764. System memory in use before: 74.6 MB.
  765. System memory in use after: 73.9 MB.
  766. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2035.
  767. Total: 6.946300 ms (FindLiveObjects: 0.678200 ms CreateObjectMapping: 0.736100 ms MarkObjects: 4.363100 ms DeleteObjects: 1.165900 ms)
  768. AssetImportParameters requested are different than current active one (requested -> active):
  769. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  770. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  771. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  772. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  773. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  774. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  775. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  776. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  777. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  778. ========================================================================
  779. Received Prepare
  780. Registering precompiled user dll's ...
  781. Registered in 0.084375 seconds.
  782. Begin MonoManager ReloadAssembly
  783. Native extension for WindowsStandalone target not found
  784. Native extension for WebGL target not found
  785. Refreshing native plugins compatible for Editor in 1.99 ms, found 10 plugins.
  786. Preloading 0 native plugins for Editor in 0.00 ms.
  787. Mono: successfully reloaded assembly
  788. - Completed reload, in 8.432 seconds
  789. Domain Reload Profiling:
  790. ReloadAssembly (8433ms)
  791. BeginReloadAssembly (4906ms)
  792. ExecutionOrderSort (0ms)
  793. DisableScriptedObjects (26ms)
  794. BackupInstance (0ms)
  795. ReleaseScriptingObjects (0ms)
  796. CreateAndSetChildDomain (1641ms)
  797. EndReloadAssembly (3197ms)
  798. LoadAssemblies (3187ms)
  799. RebuildTransferFunctionScriptingTraits (0ms)
  800. SetupTypeCache (1131ms)
  801. ReleaseScriptCaches (2ms)
  802. RebuildScriptCaches (134ms)
  803. SetupLoadedEditorAssemblies (1256ms)
  804. LogAssemblyErrors (0ms)
  805. InitializePlatformSupportModulesInManaged (22ms)
  806. SetLoadedEditorAssemblies (1ms)
  807. RefreshPlugins (3ms)
  808. BeforeProcessingInitializeOnLoad (240ms)
  809. ProcessInitializeOnLoadAttributes (833ms)
  810. ProcessInitializeOnLoadMethodAttributes (36ms)
  811. AfterProcessingInitializeOnLoad (121ms)
  812. EditorAssembliesLoaded (0ms)
  813. ExecutionOrderSort2 (0ms)
  814. AwakeInstancesAfterBackupRestoration (19ms)
  815. Platform modules already initialized, skipping
  816. Refreshing native plugins compatible for Editor in 1.16 ms, found 10 plugins.
  817. Preloading 0 native plugins for Editor in 0.00 ms.
  818. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  819. System memory in use before: 74.6 MB.
  820. System memory in use after: 73.9 MB.
  821. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2037.
  822. Total: 9.861300 ms (FindLiveObjects: 0.284900 ms CreateObjectMapping: 0.106700 ms MarkObjects: 7.414300 ms DeleteObjects: 2.052500 ms)
  823. AssetImportParameters requested are different than current active one (requested -> active):
  824. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  825. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  826. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  827. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  828. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  829. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  830. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  831. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  832. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  833. ========================================================================
  834. Received Prepare
  835. Registering precompiled user dll's ...
  836. Registered in 0.013475 seconds.
  837. Begin MonoManager ReloadAssembly
  838. Native extension for WindowsStandalone target not found
  839. Native extension for WebGL target not found
  840. Refreshing native plugins compatible for Editor in 1.35 ms, found 10 plugins.
  841. Preloading 0 native plugins for Editor in 0.00 ms.
  842. Mono: successfully reloaded assembly
  843. - Completed reload, in 2.967 seconds
  844. Domain Reload Profiling:
  845. ReloadAssembly (2970ms)
  846. BeginReloadAssembly (819ms)
  847. ExecutionOrderSort (0ms)
  848. DisableScriptedObjects (25ms)
  849. BackupInstance (0ms)
  850. ReleaseScriptingObjects (0ms)
  851. CreateAndSetChildDomain (409ms)
  852. EndReloadAssembly (1969ms)
  853. LoadAssemblies (286ms)
  854. RebuildTransferFunctionScriptingTraits (0ms)
  855. SetupTypeCache (696ms)
  856. ReleaseScriptCaches (2ms)
  857. RebuildScriptCaches (66ms)
  858. SetupLoadedEditorAssemblies (781ms)
  859. LogAssemblyErrors (0ms)
  860. InitializePlatformSupportModulesInManaged (16ms)
  861. SetLoadedEditorAssemblies (1ms)
  862. RefreshPlugins (2ms)
  863. BeforeProcessingInitializeOnLoad (165ms)
  864. ProcessInitializeOnLoadAttributes (521ms)
  865. ProcessInitializeOnLoadMethodAttributes (18ms)
  866. AfterProcessingInitializeOnLoad (57ms)
  867. EditorAssembliesLoaded (0ms)
  868. ExecutionOrderSort2 (0ms)
  869. AwakeInstancesAfterBackupRestoration (14ms)
  870. Platform modules already initialized, skipping
  871. Refreshing native plugins compatible for Editor in 1.68 ms, found 10 plugins.
  872. Preloading 0 native plugins for Editor in 0.00 ms.
  873. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  874. System memory in use before: 74.5 MB.
  875. System memory in use after: 73.9 MB.
  876. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2039.
  877. Total: 19.111700 ms (FindLiveObjects: 0.397300 ms CreateObjectMapping: 0.140300 ms MarkObjects: 4.906800 ms DeleteObjects: 13.664600 ms)
  878. AssetImportParameters requested are different than current active one (requested -> active):
  879. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  880. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  881. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  882. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  883. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  884. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  885. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  886. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  887. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  888. ========================================================================
  889. Received Prepare
  890. Registering precompiled user dll's ...
  891. Registered in 0.021931 seconds.
  892. Begin MonoManager ReloadAssembly
  893. Native extension for WindowsStandalone target not found
  894. Native extension for WebGL target not found
  895. Refreshing native plugins compatible for Editor in 2.31 ms, found 10 plugins.
  896. Preloading 0 native plugins for Editor in 0.00 ms.
  897. Mono: successfully reloaded assembly
  898. - Completed reload, in 2.475 seconds
  899. Domain Reload Profiling:
  900. ReloadAssembly (2475ms)
  901. BeginReloadAssembly (258ms)
  902. ExecutionOrderSort (0ms)
  903. DisableScriptedObjects (9ms)
  904. BackupInstance (0ms)
  905. ReleaseScriptingObjects (0ms)
  906. CreateAndSetChildDomain (51ms)
  907. EndReloadAssembly (2044ms)
  908. LoadAssemblies (239ms)
  909. RebuildTransferFunctionScriptingTraits (0ms)
  910. SetupTypeCache (610ms)
  911. ReleaseScriptCaches (1ms)
  912. RebuildScriptCaches (96ms)
  913. SetupLoadedEditorAssemblies (803ms)
  914. LogAssemblyErrors (0ms)
  915. InitializePlatformSupportModulesInManaged (13ms)
  916. SetLoadedEditorAssemblies (1ms)
  917. RefreshPlugins (2ms)
  918. BeforeProcessingInitializeOnLoad (160ms)
  919. ProcessInitializeOnLoadAttributes (515ms)
  920. ProcessInitializeOnLoadMethodAttributes (27ms)
  921. AfterProcessingInitializeOnLoad (84ms)
  922. EditorAssembliesLoaded (1ms)
  923. ExecutionOrderSort2 (0ms)
  924. AwakeInstancesAfterBackupRestoration (19ms)
  925. Platform modules already initialized, skipping
  926. Refreshing native plugins compatible for Editor in 1.25 ms, found 10 plugins.
  927. Preloading 0 native plugins for Editor in 0.00 ms.
  928. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  929. System memory in use before: 74.5 MB.
  930. System memory in use after: 73.9 MB.
  931. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2041.
  932. Total: 7.278500 ms (FindLiveObjects: 0.375900 ms CreateObjectMapping: 0.705900 ms MarkObjects: 4.732700 ms DeleteObjects: 1.460800 ms)
  933. AssetImportParameters requested are different than current active one (requested -> active):
  934. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  935. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  936. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  937. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  938. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  939. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  940. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  941. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  942. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  943. ========================================================================
  944. Received Prepare
  945. Registering precompiled user dll's ...
  946. Registered in 0.016117 seconds.
  947. Begin MonoManager ReloadAssembly
  948. Native extension for WindowsStandalone target not found
  949. Native extension for WebGL target not found
  950. Refreshing native plugins compatible for Editor in 0.94 ms, found 10 plugins.
  951. Preloading 0 native plugins for Editor in 0.00 ms.
  952. Mono: successfully reloaded assembly
  953. - Completed reload, in 2.313 seconds
  954. Domain Reload Profiling:
  955. ReloadAssembly (2314ms)
  956. BeginReloadAssembly (454ms)
  957. ExecutionOrderSort (0ms)
  958. DisableScriptedObjects (16ms)
  959. BackupInstance (0ms)
  960. ReleaseScriptingObjects (0ms)
  961. CreateAndSetChildDomain (89ms)
  962. EndReloadAssembly (1657ms)
  963. LoadAssemblies (356ms)
  964. RebuildTransferFunctionScriptingTraits (0ms)
  965. SetupTypeCache (551ms)
  966. ReleaseScriptCaches (1ms)
  967. RebuildScriptCaches (77ms)
  968. SetupLoadedEditorAssemblies (629ms)
  969. LogAssemblyErrors (0ms)
  970. InitializePlatformSupportModulesInManaged (12ms)
  971. SetLoadedEditorAssemblies (1ms)
  972. RefreshPlugins (1ms)
  973. BeforeProcessingInitializeOnLoad (142ms)
  974. ProcessInitializeOnLoadAttributes (400ms)
  975. ProcessInitializeOnLoadMethodAttributes (17ms)
  976. AfterProcessingInitializeOnLoad (56ms)
  977. EditorAssembliesLoaded (0ms)
  978. ExecutionOrderSort2 (0ms)
  979. AwakeInstancesAfterBackupRestoration (12ms)
  980. Platform modules already initialized, skipping
  981. Refreshing native plugins compatible for Editor in 1.53 ms, found 10 plugins.
  982. Preloading 0 native plugins for Editor in 0.00 ms.
  983. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  984. System memory in use before: 74.5 MB.
  985. System memory in use after: 73.9 MB.
  986. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2043.
  987. Total: 5.593300 ms (FindLiveObjects: 0.177100 ms CreateObjectMapping: 0.079300 ms MarkObjects: 4.423700 ms DeleteObjects: 0.911300 ms)
  988. AssetImportParameters requested are different than current active one (requested -> active):
  989. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  990. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  991. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  992. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  993. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  994. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  995. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  996. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  997. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  998. ========================================================================
  999. Received Prepare
  1000. Registering precompiled user dll's ...
  1001. Registered in 0.021672 seconds.
  1002. Begin MonoManager ReloadAssembly
  1003. Native extension for WindowsStandalone target not found
  1004. Native extension for WebGL target not found
  1005. Refreshing native plugins compatible for Editor in 1.20 ms, found 10 plugins.
  1006. Preloading 0 native plugins for Editor in 0.00 ms.
  1007. Mono: successfully reloaded assembly
  1008. - Completed reload, in 2.222 seconds
  1009. Domain Reload Profiling:
  1010. ReloadAssembly (2223ms)
  1011. BeginReloadAssembly (242ms)
  1012. ExecutionOrderSort (0ms)
  1013. DisableScriptedObjects (8ms)
  1014. BackupInstance (0ms)
  1015. ReleaseScriptingObjects (0ms)
  1016. CreateAndSetChildDomain (49ms)
  1017. EndReloadAssembly (1810ms)
  1018. LoadAssemblies (220ms)
  1019. RebuildTransferFunctionScriptingTraits (0ms)
  1020. SetupTypeCache (517ms)
  1021. ReleaseScriptCaches (1ms)
  1022. RebuildScriptCaches (71ms)
  1023. SetupLoadedEditorAssemblies (802ms)
  1024. LogAssemblyErrors (0ms)
  1025. InitializePlatformSupportModulesInManaged (13ms)
  1026. SetLoadedEditorAssemblies (1ms)
  1027. RefreshPlugins (1ms)
  1028. BeforeProcessingInitializeOnLoad (230ms)
  1029. ProcessInitializeOnLoadAttributes (474ms)
  1030. ProcessInitializeOnLoadMethodAttributes (24ms)
  1031. AfterProcessingInitializeOnLoad (58ms)
  1032. EditorAssembliesLoaded (0ms)
  1033. ExecutionOrderSort2 (0ms)
  1034. AwakeInstancesAfterBackupRestoration (14ms)
  1035. Platform modules already initialized, skipping
  1036. Refreshing native plugins compatible for Editor in 1.33 ms, found 10 plugins.
  1037. Preloading 0 native plugins for Editor in 0.00 ms.
  1038. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  1039. System memory in use before: 74.6 MB.
  1040. System memory in use after: 73.9 MB.
  1041. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2045.
  1042. Total: 6.554900 ms (FindLiveObjects: 0.224500 ms CreateObjectMapping: 0.083900 ms MarkObjects: 5.015100 ms DeleteObjects: 1.229100 ms)
  1043. AssetImportParameters requested are different than current active one (requested -> active):
  1044. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1045. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1046. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1047. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1048. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1049. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1050. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1051. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1052. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1053. ========================================================================
  1054. Received Import Request.
  1055. Time since last request: 455.228576 seconds.
  1056. path: Assets/Scenes/Browser.unity
  1057. artifactKey: Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1058. Start importing Assets/Scenes/Browser.unity using Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1387748fad8573e51ebeb0f0fd4d3275') in 0.040797 seconds
  1059. Import took 0.045952 seconds .
  1060. ========================================================================
  1061. Received Prepare
  1062. Registering precompiled user dll's ...
  1063. Registered in 0.018091 seconds.
  1064. Begin MonoManager ReloadAssembly
  1065. Native extension for WindowsStandalone target not found
  1066. Native extension for WebGL target not found
  1067. Refreshing native plugins compatible for Editor in 0.95 ms, found 10 plugins.
  1068. Preloading 0 native plugins for Editor in 0.00 ms.
  1069. Mono: successfully reloaded assembly
  1070. - Completed reload, in 4.231 seconds
  1071. Domain Reload Profiling:
  1072. ReloadAssembly (4232ms)
  1073. BeginReloadAssembly (896ms)
  1074. ExecutionOrderSort (0ms)
  1075. DisableScriptedObjects (24ms)
  1076. BackupInstance (0ms)
  1077. ReleaseScriptingObjects (0ms)
  1078. CreateAndSetChildDomain (79ms)
  1079. EndReloadAssembly (2493ms)
  1080. LoadAssemblies (993ms)
  1081. RebuildTransferFunctionScriptingTraits (0ms)
  1082. SetupTypeCache (918ms)
  1083. ReleaseScriptCaches (1ms)
  1084. RebuildScriptCaches (143ms)
  1085. SetupLoadedEditorAssemblies (698ms)
  1086. LogAssemblyErrors (0ms)
  1087. InitializePlatformSupportModulesInManaged (12ms)
  1088. SetLoadedEditorAssemblies (1ms)
  1089. RefreshPlugins (1ms)
  1090. BeforeProcessingInitializeOnLoad (158ms)
  1091. ProcessInitializeOnLoadAttributes (442ms)
  1092. ProcessInitializeOnLoadMethodAttributes (18ms)
  1093. AfterProcessingInitializeOnLoad (66ms)
  1094. EditorAssembliesLoaded (0ms)
  1095. ExecutionOrderSort2 (0ms)
  1096. AwakeInstancesAfterBackupRestoration (15ms)
  1097. Platform modules already initialized, skipping
  1098. Refreshing native plugins compatible for Editor in 1.29 ms, found 10 plugins.
  1099. Preloading 0 native plugins for Editor in 0.00 ms.
  1100. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  1101. System memory in use before: 74.5 MB.
  1102. System memory in use after: 73.9 MB.
  1103. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2047.
  1104. Total: 5.169300 ms (FindLiveObjects: 0.294500 ms CreateObjectMapping: 0.110500 ms MarkObjects: 3.704100 ms DeleteObjects: 1.057600 ms)
  1105. AssetImportParameters requested are different than current active one (requested -> active):
  1106. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1107. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1108. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1109. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1110. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1111. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1112. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1113. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1114. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1115. ========================================================================
  1116. Received Import Request.
  1117. Time since last request: 90.090645 seconds.
  1118. path: Assets/panel/function_panel.prefab
  1119. artifactKey: Guid(cd5aa43332fdbf343b1c1e0fcd7f13f0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1120. Start importing Assets/panel/function_panel.prefab using Guid(cd5aa43332fdbf343b1c1e0fcd7f13f0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '19f5e32717a58072ef33448fba648f76') in 0.433964 seconds
  1121. Import took 0.444246 seconds .
  1122. ========================================================================
  1123. Received Import Request.
  1124. Time since last request: 10.707239 seconds.
  1125. path: Assets/Scenes/police.unity
  1126. artifactKey: Guid(3fd15f8ecbaaeee458776b87f509b0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1127. Start importing Assets/Scenes/police.unity using Guid(3fd15f8ecbaaeee458776b87f509b0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38f5d08a5fd8f848e5275e07cc795431') in 0.030197 seconds
  1128. Import took 0.048879 seconds .
  1129. ========================================================================
  1130. Received Import Request.
  1131. Time since last request: 4.299015 seconds.
  1132. path: Assets/Scenes/curtains.unity
  1133. artifactKey: Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1134. Start importing Assets/Scenes/curtains.unity using Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e3d4dc15a72c2ead5c9a4623257c35b3') in 0.080606 seconds
  1135. Import took 0.097024 seconds .
  1136. ========================================================================
  1137. Received Import Request.
  1138. Time since last request: 0.519848 seconds.
  1139. path: Assets/Scenes/Browser.unity
  1140. artifactKey: Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1141. Start importing Assets/Scenes/Browser.unity using Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08c1424b52ab730f6cfbff809451396d') in 0.189034 seconds
  1142. Import took 0.218838 seconds .
  1143. ========================================================================
  1144. Received Import Request.
  1145. Time since last request: 63.680755 seconds.
  1146. path: Assets/Scenes/Browser.unity
  1147. artifactKey: Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1148. Start importing Assets/Scenes/Browser.unity using Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ba4efa6ab7548dcdebbc19ec39ff1bad') in 0.017071 seconds
  1149. Import took 0.030183 seconds .
  1150. ========================================================================
  1151. Received Prepare
  1152. Registering precompiled user dll's ...
  1153. Registered in 0.027175 seconds.
  1154. Begin MonoManager ReloadAssembly
  1155. Native extension for WindowsStandalone target not found
  1156. Native extension for WebGL target not found
  1157. Refreshing native plugins compatible for Editor in 1.04 ms, found 10 plugins.
  1158. Preloading 0 native plugins for Editor in 0.00 ms.
  1159. Mono: successfully reloaded assembly
  1160. - Completed reload, in 3.666 seconds
  1161. Domain Reload Profiling:
  1162. ReloadAssembly (3666ms)
  1163. BeginReloadAssembly (288ms)
  1164. ExecutionOrderSort (0ms)
  1165. DisableScriptedObjects (9ms)
  1166. BackupInstance (0ms)
  1167. ReleaseScriptingObjects (0ms)
  1168. CreateAndSetChildDomain (65ms)
  1169. EndReloadAssembly (3208ms)
  1170. LoadAssemblies (680ms)
  1171. RebuildTransferFunctionScriptingTraits (0ms)
  1172. SetupTypeCache (1170ms)
  1173. ReleaseScriptCaches (1ms)
  1174. RebuildScriptCaches (87ms)
  1175. SetupLoadedEditorAssemblies (798ms)
  1176. LogAssemblyErrors (0ms)
  1177. InitializePlatformSupportModulesInManaged (18ms)
  1178. SetLoadedEditorAssemblies (2ms)
  1179. RefreshPlugins (1ms)
  1180. BeforeProcessingInitializeOnLoad (170ms)
  1181. ProcessInitializeOnLoadAttributes (522ms)
  1182. ProcessInitializeOnLoadMethodAttributes (22ms)
  1183. AfterProcessingInitializeOnLoad (63ms)
  1184. EditorAssembliesLoaded (1ms)
  1185. ExecutionOrderSort2 (0ms)
  1186. AwakeInstancesAfterBackupRestoration (16ms)
  1187. Platform modules already initialized, skipping
  1188. Refreshing native plugins compatible for Editor in 1.90 ms, found 10 plugins.
  1189. Preloading 0 native plugins for Editor in 0.00 ms.
  1190. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  1191. System memory in use before: 74.6 MB.
  1192. System memory in use after: 73.9 MB.
  1193. Unloading 38 unused Assets to reduce memory usage. Loaded Objects now: 2049.
  1194. Total: 5.255600 ms (FindLiveObjects: 0.180900 ms CreateObjectMapping: 0.079500 ms MarkObjects: 3.851600 ms DeleteObjects: 1.140900 ms)
  1195. AssetImportParameters requested are different than current active one (requested -> active):
  1196. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1197. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1198. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1199. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1200. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1201. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1202. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1203. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1204. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1205. ========================================================================
  1206. Received Prepare
  1207. Registering precompiled user dll's ...
  1208. Registered in 0.229871 seconds.
  1209. Begin MonoManager ReloadAssembly
  1210. Native extension for WindowsStandalone target not found
  1211. Native extension for WebGL target not found
  1212. Refreshing native plugins compatible for Editor in 1.61 ms, found 10 plugins.
  1213. Preloading 0 native plugins for Editor in 0.00 ms.
  1214. Mono: successfully reloaded assembly
  1215. - Completed reload, in 6.461 seconds
  1216. Domain Reload Profiling:
  1217. ReloadAssembly (6462ms)
  1218. BeginReloadAssembly (676ms)
  1219. ExecutionOrderSort (0ms)
  1220. DisableScriptedObjects (19ms)
  1221. BackupInstance (0ms)
  1222. ReleaseScriptingObjects (0ms)
  1223. CreateAndSetChildDomain (130ms)
  1224. EndReloadAssembly (5064ms)
  1225. LoadAssemblies (704ms)
  1226. RebuildTransferFunctionScriptingTraits (25ms)
  1227. SetupTypeCache (1495ms)
  1228. ReleaseScriptCaches (1ms)
  1229. RebuildScriptCaches (143ms)
  1230. SetupLoadedEditorAssemblies (2385ms)
  1231. LogAssemblyErrors (0ms)
  1232. InitializePlatformSupportModulesInManaged (29ms)
  1233. SetLoadedEditorAssemblies (1ms)
  1234. RefreshPlugins (2ms)
  1235. BeforeProcessingInitializeOnLoad (391ms)
  1236. ProcessInitializeOnLoadAttributes (1869ms)
  1237. ProcessInitializeOnLoadMethodAttributes (31ms)
  1238. AfterProcessingInitializeOnLoad (61ms)
  1239. EditorAssembliesLoaded (1ms)
  1240. ExecutionOrderSort2 (0ms)
  1241. AwakeInstancesAfterBackupRestoration (12ms)
  1242. Platform modules already initialized, skipping
  1243. Refreshing native plugins compatible for Editor in 1.53 ms, found 10 plugins.
  1244. Preloading 0 native plugins for Editor in 0.00 ms.
  1245. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  1246. System memory in use before: 74.6 MB.
  1247. System memory in use after: 73.9 MB.
  1248. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2051.
  1249. Total: 5.206100 ms (FindLiveObjects: 0.309100 ms CreateObjectMapping: 0.104600 ms MarkObjects: 3.853300 ms DeleteObjects: 0.936300 ms)
  1250. AssetImportParameters requested are different than current active one (requested -> active):
  1251. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1252. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1253. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1254. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1255. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1256. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1257. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1258. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1259. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1260. ========================================================================
  1261. Received Prepare
  1262. Registering precompiled user dll's ...
  1263. Registered in 0.024044 seconds.
  1264. Begin MonoManager ReloadAssembly
  1265. Native extension for WindowsStandalone target not found
  1266. Native extension for WebGL target not found
  1267. Refreshing native plugins compatible for Editor in 3.58 ms, found 10 plugins.
  1268. Preloading 0 native plugins for Editor in 0.00 ms.
  1269. Mono: successfully reloaded assembly
  1270. - Completed reload, in 3.084 seconds
  1271. Domain Reload Profiling:
  1272. ReloadAssembly (3085ms)
  1273. BeginReloadAssembly (260ms)
  1274. ExecutionOrderSort (0ms)
  1275. DisableScriptedObjects (9ms)
  1276. BackupInstance (0ms)
  1277. ReleaseScriptingObjects (0ms)
  1278. CreateAndSetChildDomain (55ms)
  1279. EndReloadAssembly (2660ms)
  1280. LoadAssemblies (366ms)
  1281. RebuildTransferFunctionScriptingTraits (0ms)
  1282. SetupTypeCache (763ms)
  1283. ReleaseScriptCaches (1ms)
  1284. RebuildScriptCaches (125ms)
  1285. SetupLoadedEditorAssemblies (1111ms)
  1286. LogAssemblyErrors (0ms)
  1287. InitializePlatformSupportModulesInManaged (41ms)
  1288. SetLoadedEditorAssemblies (5ms)
  1289. RefreshPlugins (4ms)
  1290. BeforeProcessingInitializeOnLoad (375ms)
  1291. ProcessInitializeOnLoadAttributes (614ms)
  1292. ProcessInitializeOnLoadMethodAttributes (18ms)
  1293. AfterProcessingInitializeOnLoad (55ms)
  1294. EditorAssembliesLoaded (0ms)
  1295. ExecutionOrderSort2 (0ms)
  1296. AwakeInstancesAfterBackupRestoration (16ms)
  1297. Platform modules already initialized, skipping
  1298. Refreshing native plugins compatible for Editor in 7.50 ms, found 10 plugins.
  1299. Preloading 0 native plugins for Editor in 0.00 ms.
  1300. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  1301. System memory in use before: 74.5 MB.
  1302. System memory in use after: 73.9 MB.
  1303. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2053.
  1304. Total: 41.348900 ms (FindLiveObjects: 5.555700 ms CreateObjectMapping: 0.204000 ms MarkObjects: 27.569700 ms DeleteObjects: 8.016100 ms)
  1305. AssetImportParameters requested are different than current active one (requested -> active):
  1306. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1307. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1308. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1309. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1310. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1311. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1312. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1313. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1314. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1315. ========================================================================
  1316. Received Prepare
  1317. Registering precompiled user dll's ...
  1318. Registered in 0.029680 seconds.
  1319. Begin MonoManager ReloadAssembly
  1320. Native extension for WindowsStandalone target not found
  1321. Native extension for WebGL target not found
  1322. Refreshing native plugins compatible for Editor in 1.18 ms, found 10 plugins.
  1323. Preloading 0 native plugins for Editor in 0.00 ms.
  1324. Mono: successfully reloaded assembly
  1325. - Completed reload, in 2.034 seconds
  1326. Domain Reload Profiling:
  1327. ReloadAssembly (2034ms)
  1328. BeginReloadAssembly (247ms)
  1329. ExecutionOrderSort (0ms)
  1330. DisableScriptedObjects (7ms)
  1331. BackupInstance (0ms)
  1332. ReleaseScriptingObjects (0ms)
  1333. CreateAndSetChildDomain (52ms)
  1334. EndReloadAssembly (1620ms)
  1335. LoadAssemblies (228ms)
  1336. RebuildTransferFunctionScriptingTraits (0ms)
  1337. SetupTypeCache (492ms)
  1338. ReleaseScriptCaches (1ms)
  1339. RebuildScriptCaches (67ms)
  1340. SetupLoadedEditorAssemblies (707ms)
  1341. LogAssemblyErrors (0ms)
  1342. InitializePlatformSupportModulesInManaged (18ms)
  1343. SetLoadedEditorAssemblies (1ms)
  1344. RefreshPlugins (1ms)
  1345. BeforeProcessingInitializeOnLoad (141ms)
  1346. ProcessInitializeOnLoadAttributes (468ms)
  1347. ProcessInitializeOnLoadMethodAttributes (20ms)
  1348. AfterProcessingInitializeOnLoad (58ms)
  1349. EditorAssembliesLoaded (0ms)
  1350. ExecutionOrderSort2 (0ms)
  1351. AwakeInstancesAfterBackupRestoration (12ms)
  1352. Platform modules already initialized, skipping
  1353. Refreshing native plugins compatible for Editor in 0.94 ms, found 10 plugins.
  1354. Preloading 0 native plugins for Editor in 0.00 ms.
  1355. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  1356. System memory in use before: 74.5 MB.
  1357. System memory in use after: 73.9 MB.
  1358. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2055.
  1359. Total: 4.596500 ms (FindLiveObjects: 0.189200 ms CreateObjectMapping: 0.094200 ms MarkObjects: 3.373700 ms DeleteObjects: 0.937400 ms)
  1360. AssetImportParameters requested are different than current active one (requested -> active):
  1361. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1362. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1363. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1364. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1365. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1366. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1367. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1368. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1369. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1370. ========================================================================
  1371. Received Prepare
  1372. Registering precompiled user dll's ...
  1373. Registered in 0.015149 seconds.
  1374. Begin MonoManager ReloadAssembly
  1375. Native extension for WindowsStandalone target not found
  1376. Native extension for WebGL target not found
  1377. Refreshing native plugins compatible for Editor in 1.47 ms, found 10 plugins.
  1378. Preloading 0 native plugins for Editor in 0.00 ms.
  1379. Mono: successfully reloaded assembly
  1380. - Completed reload, in 2.903 seconds
  1381. Domain Reload Profiling:
  1382. ReloadAssembly (2904ms)
  1383. BeginReloadAssembly (355ms)
  1384. ExecutionOrderSort (0ms)
  1385. DisableScriptedObjects (21ms)
  1386. BackupInstance (0ms)
  1387. ReleaseScriptingObjects (0ms)
  1388. CreateAndSetChildDomain (68ms)
  1389. EndReloadAssembly (2365ms)
  1390. LoadAssemblies (272ms)
  1391. RebuildTransferFunctionScriptingTraits (0ms)
  1392. SetupTypeCache (574ms)
  1393. ReleaseScriptCaches (1ms)
  1394. RebuildScriptCaches (122ms)
  1395. SetupLoadedEditorAssemblies (1084ms)
  1396. LogAssemblyErrors (0ms)
  1397. InitializePlatformSupportModulesInManaged (19ms)
  1398. SetLoadedEditorAssemblies (1ms)
  1399. RefreshPlugins (2ms)
  1400. BeforeProcessingInitializeOnLoad (305ms)
  1401. ProcessInitializeOnLoadAttributes (663ms)
  1402. ProcessInitializeOnLoadMethodAttributes (24ms)
  1403. AfterProcessingInitializeOnLoad (70ms)
  1404. EditorAssembliesLoaded (0ms)
  1405. ExecutionOrderSort2 (0ms)
  1406. AwakeInstancesAfterBackupRestoration (14ms)
  1407. Platform modules already initialized, skipping
  1408. Refreshing native plugins compatible for Editor in 0.96 ms, found 10 plugins.
  1409. Preloading 0 native plugins for Editor in 0.00 ms.
  1410. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  1411. System memory in use before: 74.6 MB.
  1412. System memory in use after: 73.9 MB.
  1413. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2057.
  1414. Total: 5.084300 ms (FindLiveObjects: 0.192700 ms CreateObjectMapping: 0.078800 ms MarkObjects: 3.764500 ms DeleteObjects: 1.045800 ms)
  1415. AssetImportParameters requested are different than current active one (requested -> active):
  1416. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1417. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1418. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1419. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1420. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1421. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1422. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1423. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1424. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1425. ========================================================================
  1426. Received Prepare
  1427. Registering precompiled user dll's ...
  1428. Registered in 0.027609 seconds.
  1429. Begin MonoManager ReloadAssembly
  1430. Native extension for WindowsStandalone target not found
  1431. Native extension for WebGL target not found
  1432. Refreshing native plugins compatible for Editor in 1.67 ms, found 10 plugins.
  1433. Preloading 0 native plugins for Editor in 0.00 ms.
  1434. Mono: successfully reloaded assembly
  1435. - Completed reload, in 2.989 seconds
  1436. Domain Reload Profiling:
  1437. ReloadAssembly (2990ms)
  1438. BeginReloadAssembly (424ms)
  1439. ExecutionOrderSort (0ms)
  1440. DisableScriptedObjects (12ms)
  1441. BackupInstance (0ms)
  1442. ReleaseScriptingObjects (0ms)
  1443. CreateAndSetChildDomain (91ms)
  1444. EndReloadAssembly (2210ms)
  1445. LoadAssemblies (494ms)
  1446. RebuildTransferFunctionScriptingTraits (0ms)
  1447. SetupTypeCache (791ms)
  1448. ReleaseScriptCaches (1ms)
  1449. RebuildScriptCaches (82ms)
  1450. SetupLoadedEditorAssemblies (701ms)
  1451. LogAssemblyErrors (0ms)
  1452. InitializePlatformSupportModulesInManaged (17ms)
  1453. SetLoadedEditorAssemblies (2ms)
  1454. RefreshPlugins (2ms)
  1455. BeforeProcessingInitializeOnLoad (159ms)
  1456. ProcessInitializeOnLoadAttributes (444ms)
  1457. ProcessInitializeOnLoadMethodAttributes (17ms)
  1458. AfterProcessingInitializeOnLoad (59ms)
  1459. EditorAssembliesLoaded (0ms)
  1460. ExecutionOrderSort2 (0ms)
  1461. AwakeInstancesAfterBackupRestoration (11ms)
  1462. Platform modules already initialized, skipping
  1463. Refreshing native plugins compatible for Editor in 1.13 ms, found 10 plugins.
  1464. Preloading 0 native plugins for Editor in 0.00 ms.
  1465. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  1466. System memory in use before: 74.5 MB.
  1467. System memory in use after: 73.9 MB.
  1468. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2059.
  1469. Total: 11.527500 ms (FindLiveObjects: 1.598600 ms CreateObjectMapping: 0.127800 ms MarkObjects: 8.830100 ms DeleteObjects: 0.967600 ms)
  1470. AssetImportParameters requested are different than current active one (requested -> active):
  1471. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1472. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1473. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1474. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1475. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1476. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1477. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1478. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1479. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1480. ========================================================================
  1481. Received Prepare
  1482. Registering precompiled user dll's ...
  1483. Registered in 0.656960 seconds.
  1484. Begin MonoManager ReloadAssembly
  1485. Native extension for WindowsStandalone target not found
  1486. Native extension for WebGL target not found
  1487. Refreshing native plugins compatible for Editor in 3.67 ms, found 10 plugins.
  1488. Preloading 0 native plugins for Editor in 0.00 ms.
  1489. Mono: successfully reloaded assembly
  1490. - Completed reload, in 2.932 seconds
  1491. Domain Reload Profiling:
  1492. ReloadAssembly (2933ms)
  1493. BeginReloadAssembly (340ms)
  1494. ExecutionOrderSort (0ms)
  1495. DisableScriptedObjects (9ms)
  1496. BackupInstance (0ms)
  1497. ReleaseScriptingObjects (0ms)
  1498. CreateAndSetChildDomain (67ms)
  1499. EndReloadAssembly (2354ms)
  1500. LoadAssemblies (303ms)
  1501. RebuildTransferFunctionScriptingTraits (0ms)
  1502. SetupTypeCache (591ms)
  1503. ReleaseScriptCaches (2ms)
  1504. RebuildScriptCaches (105ms)
  1505. SetupLoadedEditorAssemblies (1177ms)
  1506. LogAssemblyErrors (0ms)
  1507. InitializePlatformSupportModulesInManaged (21ms)
  1508. SetLoadedEditorAssemblies (1ms)
  1509. RefreshPlugins (4ms)
  1510. BeforeProcessingInitializeOnLoad (210ms)
  1511. ProcessInitializeOnLoadAttributes (807ms)
  1512. ProcessInitializeOnLoadMethodAttributes (37ms)
  1513. AfterProcessingInitializeOnLoad (97ms)
  1514. EditorAssembliesLoaded (0ms)
  1515. ExecutionOrderSort2 (0ms)
  1516. AwakeInstancesAfterBackupRestoration (19ms)
  1517. Platform modules already initialized, skipping
  1518. Refreshing native plugins compatible for Editor in 0.96 ms, found 10 plugins.
  1519. Preloading 0 native plugins for Editor in 0.00 ms.
  1520. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  1521. System memory in use before: 74.6 MB.
  1522. System memory in use after: 73.9 MB.
  1523. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2061.
  1524. Total: 14.049100 ms (FindLiveObjects: 0.277500 ms CreateObjectMapping: 1.366800 ms MarkObjects: 6.811500 ms DeleteObjects: 5.590700 ms)
  1525. AssetImportParameters requested are different than current active one (requested -> active):
  1526. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1527. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1528. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1529. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1530. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1531. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1532. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1533. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1534. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1535. ========================================================================
  1536. Received Prepare
  1537. Refreshing native plugins compatible for Editor in 36.23 ms, found 10 plugins.
  1538. Preloading 0 native plugins for Editor in 0.00 ms.
  1539. Unloading 34 Unused Serialized files (Serialized files now loaded: 0)
  1540. System memory in use before: 43.9 MB.
  1541. System memory in use after: 43.2 MB.
  1542. Unloading 34 unused Assets to reduce memory usage. Loaded Objects now: 2061.
  1543. Total: 4.625700 ms (FindLiveObjects: 0.207800 ms CreateObjectMapping: 0.086200 ms MarkObjects: 3.255900 ms DeleteObjects: 1.074100 ms)
  1544. AssetImportParameters requested are different than current active one (requested -> active):
  1545. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1546. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1547. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1548. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1549. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1550. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1551. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1552. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1553. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1554. ========================================================================
  1555. Received Prepare
  1556. Refreshing native plugins compatible for Editor in 31.48 ms, found 10 plugins.
  1557. Preloading 0 native plugins for Editor in 0.00 ms.
  1558. Unloading 34 Unused Serialized files (Serialized files now loaded: 0)
  1559. System memory in use before: 43.9 MB.
  1560. System memory in use after: 43.2 MB.
  1561. Unloading 34 unused Assets to reduce memory usage. Loaded Objects now: 2061.
  1562. Total: 6.469200 ms (FindLiveObjects: 0.301500 ms CreateObjectMapping: 0.102100 ms MarkObjects: 4.977800 ms DeleteObjects: 1.085200 ms)
  1563. AssetImportParameters requested are different than current active one (requested -> active):
  1564. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1565. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1566. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1567. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1568. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1569. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1570. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1571. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1572. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1573. ========================================================================
  1574. Received Prepare
  1575. Refreshing native plugins compatible for Editor in 34.94 ms, found 10 plugins.
  1576. Preloading 0 native plugins for Editor in 0.00 ms.
  1577. Unloading 34 Unused Serialized files (Serialized files now loaded: 0)
  1578. System memory in use before: 43.9 MB.
  1579. System memory in use after: 43.2 MB.
  1580. Unloading 34 unused Assets to reduce memory usage. Loaded Objects now: 2061.
  1581. Total: 7.926900 ms (FindLiveObjects: 0.196300 ms CreateObjectMapping: 0.162600 ms MarkObjects: 6.029700 ms DeleteObjects: 1.536200 ms)
  1582. AssetImportParameters requested are different than current active one (requested -> active):
  1583. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1584. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1585. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1586. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1587. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1588. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1589. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1590. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1591. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1592. ========================================================================
  1593. Received Prepare
  1594. Refreshing native plugins compatible for Editor in 43.09 ms, found 10 plugins.
  1595. Preloading 0 native plugins for Editor in 0.00 ms.
  1596. Unloading 34 Unused Serialized files (Serialized files now loaded: 0)
  1597. System memory in use before: 43.9 MB.
  1598. System memory in use after: 43.2 MB.
  1599. Unloading 34 unused Assets to reduce memory usage. Loaded Objects now: 2061.
  1600. Total: 7.567600 ms (FindLiveObjects: 0.320600 ms CreateObjectMapping: 0.090000 ms MarkObjects: 5.738100 ms DeleteObjects: 1.416000 ms)
  1601. AssetImportParameters requested are different than current active one (requested -> active):
  1602. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1603. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1604. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1605. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1606. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1607. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1608. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1609. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1610. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1611. ========================================================================
  1612. Received Prepare
  1613. Registering precompiled user dll's ...
  1614. Registered in 0.045519 seconds.
  1615. Begin MonoManager ReloadAssembly
  1616. Native extension for WindowsStandalone target not found
  1617. Native extension for WebGL target not found
  1618. Refreshing native plugins compatible for Editor in 1.26 ms, found 10 plugins.
  1619. Preloading 0 native plugins for Editor in 0.00 ms.
  1620. Mono: successfully reloaded assembly
  1621. - Completed reload, in 6.225 seconds
  1622. Domain Reload Profiling:
  1623. ReloadAssembly (6227ms)
  1624. BeginReloadAssembly (926ms)
  1625. ExecutionOrderSort (0ms)
  1626. DisableScriptedObjects (27ms)
  1627. BackupInstance (0ms)
  1628. ReleaseScriptingObjects (0ms)
  1629. CreateAndSetChildDomain (188ms)
  1630. EndReloadAssembly (3807ms)
  1631. LoadAssemblies (780ms)
  1632. RebuildTransferFunctionScriptingTraits (0ms)
  1633. SetupTypeCache (1186ms)
  1634. ReleaseScriptCaches (2ms)
  1635. RebuildScriptCaches (133ms)
  1636. SetupLoadedEditorAssemblies (1351ms)
  1637. LogAssemblyErrors (0ms)
  1638. InitializePlatformSupportModulesInManaged (26ms)
  1639. SetLoadedEditorAssemblies (1ms)
  1640. RefreshPlugins (2ms)
  1641. BeforeProcessingInitializeOnLoad (290ms)
  1642. ProcessInitializeOnLoadAttributes (895ms)
  1643. ProcessInitializeOnLoadMethodAttributes (47ms)
  1644. AfterProcessingInitializeOnLoad (86ms)
  1645. EditorAssembliesLoaded (4ms)
  1646. ExecutionOrderSort2 (0ms)
  1647. AwakeInstancesAfterBackupRestoration (44ms)
  1648. Platform modules already initialized, skipping
  1649. Refreshing native plugins compatible for Editor in 1.71 ms, found 10 plugins.
  1650. Preloading 0 native plugins for Editor in 0.00 ms.
  1651. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  1652. System memory in use before: 74.6 MB.
  1653. System memory in use after: 73.9 MB.
  1654. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2063.
  1655. Total: 9.531100 ms (FindLiveObjects: 1.084800 ms CreateObjectMapping: 0.727400 ms MarkObjects: 6.269900 ms DeleteObjects: 1.445300 ms)
  1656. AssetImportParameters requested are different than current active one (requested -> active):
  1657. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1658. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1659. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1660. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1661. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1662. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1663. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1664. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1665. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1666. ========================================================================
  1667. Received Prepare
  1668. Refreshing native plugins compatible for Editor in 103.80 ms, found 10 plugins.
  1669. Preloading 0 native plugins for Editor in 0.00 ms.
  1670. Unloading 34 Unused Serialized files (Serialized files now loaded: 0)
  1671. System memory in use before: 43.8 MB.
  1672. System memory in use after: 43.2 MB.
  1673. Unloading 34 unused Assets to reduce memory usage. Loaded Objects now: 2063.
  1674. Total: 9.456600 ms (FindLiveObjects: 0.282600 ms CreateObjectMapping: 0.114900 ms MarkObjects: 7.397800 ms DeleteObjects: 1.658700 ms)
  1675. AssetImportParameters requested are different than current active one (requested -> active):
  1676. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1677. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1678. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1679. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1680. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1681. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1682. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1683. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1684. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1685. ========================================================================
  1686. Received Prepare
  1687. Registering precompiled user dll's ...
  1688. Registered in 0.029870 seconds.
  1689. Begin MonoManager ReloadAssembly
  1690. Native extension for WindowsStandalone target not found
  1691. Native extension for WebGL target not found
  1692. Refreshing native plugins compatible for Editor in 0.96 ms, found 10 plugins.
  1693. Preloading 0 native plugins for Editor in 0.00 ms.
  1694. Mono: successfully reloaded assembly
  1695. - Completed reload, in 3.607 seconds
  1696. Domain Reload Profiling:
  1697. ReloadAssembly (3608ms)
  1698. BeginReloadAssembly (376ms)
  1699. ExecutionOrderSort (0ms)
  1700. DisableScriptedObjects (9ms)
  1701. BackupInstance (0ms)
  1702. ReleaseScriptingObjects (0ms)
  1703. CreateAndSetChildDomain (60ms)
  1704. EndReloadAssembly (2872ms)
  1705. LoadAssemblies (384ms)
  1706. RebuildTransferFunctionScriptingTraits (0ms)
  1707. SetupTypeCache (1513ms)
  1708. ReleaseScriptCaches (2ms)
  1709. RebuildScriptCaches (149ms)
  1710. SetupLoadedEditorAssemblies (654ms)
  1711. LogAssemblyErrors (0ms)
  1712. InitializePlatformSupportModulesInManaged (12ms)
  1713. SetLoadedEditorAssemblies (1ms)
  1714. RefreshPlugins (1ms)
  1715. BeforeProcessingInitializeOnLoad (150ms)
  1716. ProcessInitializeOnLoadAttributes (414ms)
  1717. ProcessInitializeOnLoadMethodAttributes (17ms)
  1718. AfterProcessingInitializeOnLoad (58ms)
  1719. EditorAssembliesLoaded (0ms)
  1720. ExecutionOrderSort2 (0ms)
  1721. AwakeInstancesAfterBackupRestoration (12ms)
  1722. Platform modules already initialized, skipping
  1723. Refreshing native plugins compatible for Editor in 1.50 ms, found 10 plugins.
  1724. Preloading 0 native plugins for Editor in 0.00 ms.
  1725. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  1726. System memory in use before: 74.6 MB.
  1727. System memory in use after: 73.9 MB.
  1728. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2065.
  1729. Total: 4.702200 ms (FindLiveObjects: 0.225600 ms CreateObjectMapping: 0.079800 ms MarkObjects: 3.256700 ms DeleteObjects: 1.138100 ms)
  1730. AssetImportParameters requested are different than current active one (requested -> active):
  1731. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1732. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1733. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1734. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1735. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1736. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1737. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1738. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1739. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1740. ========================================================================
  1741. Received Prepare
  1742. Registering precompiled user dll's ...
  1743. Registered in 0.019149 seconds.
  1744. Begin MonoManager ReloadAssembly
  1745. Native extension for WindowsStandalone target not found
  1746. Native extension for WebGL target not found
  1747. Refreshing native plugins compatible for Editor in 1.12 ms, found 10 plugins.
  1748. Preloading 0 native plugins for Editor in 0.00 ms.
  1749. Mono: successfully reloaded assembly
  1750. - Completed reload, in 2.701 seconds
  1751. Domain Reload Profiling:
  1752. ReloadAssembly (2702ms)
  1753. BeginReloadAssembly (279ms)
  1754. ExecutionOrderSort (0ms)
  1755. DisableScriptedObjects (9ms)
  1756. BackupInstance (0ms)
  1757. ReleaseScriptingObjects (0ms)
  1758. CreateAndSetChildDomain (60ms)
  1759. EndReloadAssembly (2247ms)
  1760. LoadAssemblies (233ms)
  1761. RebuildTransferFunctionScriptingTraits (0ms)
  1762. SetupTypeCache (829ms)
  1763. ReleaseScriptCaches (2ms)
  1764. RebuildScriptCaches (139ms)
  1765. SetupLoadedEditorAssemblies (690ms)
  1766. LogAssemblyErrors (0ms)
  1767. InitializePlatformSupportModulesInManaged (24ms)
  1768. SetLoadedEditorAssemblies (1ms)
  1769. RefreshPlugins (1ms)
  1770. BeforeProcessingInitializeOnLoad (146ms)
  1771. ProcessInitializeOnLoadAttributes (426ms)
  1772. ProcessInitializeOnLoadMethodAttributes (18ms)
  1773. AfterProcessingInitializeOnLoad (74ms)
  1774. EditorAssembliesLoaded (0ms)
  1775. ExecutionOrderSort2 (0ms)
  1776. AwakeInstancesAfterBackupRestoration (14ms)
  1777. Platform modules already initialized, skipping
  1778. Refreshing native plugins compatible for Editor in 0.95 ms, found 10 plugins.
  1779. Preloading 0 native plugins for Editor in 0.00 ms.
  1780. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  1781. System memory in use before: 74.6 MB.
  1782. System memory in use after: 73.9 MB.
  1783. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2067.
  1784. Total: 16.465300 ms (FindLiveObjects: 2.743400 ms CreateObjectMapping: 1.641600 ms MarkObjects: 10.407700 ms DeleteObjects: 1.668500 ms)
  1785. AssetImportParameters requested are different than current active one (requested -> active):
  1786. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1787. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1788. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1789. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1790. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1791. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1792. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1793. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1794. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1795. ========================================================================
  1796. Received Prepare
  1797. Registering precompiled user dll's ...
  1798. Registered in 0.018311 seconds.
  1799. Begin MonoManager ReloadAssembly
  1800. Native extension for WindowsStandalone target not found
  1801. Native extension for WebGL target not found
  1802. Refreshing native plugins compatible for Editor in 1.03 ms, found 10 plugins.
  1803. Preloading 0 native plugins for Editor in 0.00 ms.
  1804. Mono: successfully reloaded assembly
  1805. - Completed reload, in 4.675 seconds
  1806. Domain Reload Profiling:
  1807. ReloadAssembly (4676ms)
  1808. BeginReloadAssembly (2728ms)
  1809. ExecutionOrderSort (0ms)
  1810. DisableScriptedObjects (15ms)
  1811. BackupInstance (0ms)
  1812. ReleaseScriptingObjects (0ms)
  1813. CreateAndSetChildDomain (123ms)
  1814. EndReloadAssembly (1675ms)
  1815. LoadAssemblies (2044ms)
  1816. RebuildTransferFunctionScriptingTraits (0ms)
  1817. SetupTypeCache (545ms)
  1818. ReleaseScriptCaches (1ms)
  1819. RebuildScriptCaches (80ms)
  1820. SetupLoadedEditorAssemblies (660ms)
  1821. LogAssemblyErrors (0ms)
  1822. InitializePlatformSupportModulesInManaged (11ms)
  1823. SetLoadedEditorAssemblies (1ms)
  1824. RefreshPlugins (1ms)
  1825. BeforeProcessingInitializeOnLoad (144ms)
  1826. ProcessInitializeOnLoadAttributes (421ms)
  1827. ProcessInitializeOnLoadMethodAttributes (23ms)
  1828. AfterProcessingInitializeOnLoad (58ms)
  1829. EditorAssembliesLoaded (0ms)
  1830. ExecutionOrderSort2 (0ms)
  1831. AwakeInstancesAfterBackupRestoration (12ms)
  1832. Platform modules already initialized, skipping
  1833. Refreshing native plugins compatible for Editor in 1.03 ms, found 10 plugins.
  1834. Preloading 0 native plugins for Editor in 0.00 ms.
  1835. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  1836. System memory in use before: 74.6 MB.
  1837. System memory in use after: 74.0 MB.
  1838. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2069.
  1839. Total: 5.394900 ms (FindLiveObjects: 0.254800 ms CreateObjectMapping: 0.089600 ms MarkObjects: 4.008900 ms DeleteObjects: 1.039300 ms)
  1840. AssetImportParameters requested are different than current active one (requested -> active):
  1841. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1842. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1843. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1844. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1845. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1846. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1847. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1848. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1849. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1850. ========================================================================
  1851. Received Prepare
  1852. Registering precompiled user dll's ...
  1853. Registered in 0.045039 seconds.
  1854. Begin MonoManager ReloadAssembly
  1855. Native extension for WindowsStandalone target not found
  1856. Native extension for WebGL target not found
  1857. Refreshing native plugins compatible for Editor in 1.33 ms, found 10 plugins.
  1858. Preloading 0 native plugins for Editor in 0.00 ms.
  1859. Mono: successfully reloaded assembly
  1860. - Completed reload, in 2.113 seconds
  1861. Domain Reload Profiling:
  1862. ReloadAssembly (2114ms)
  1863. BeginReloadAssembly (266ms)
  1864. ExecutionOrderSort (0ms)
  1865. DisableScriptedObjects (14ms)
  1866. BackupInstance (0ms)
  1867. ReleaseScriptingObjects (0ms)
  1868. CreateAndSetChildDomain (69ms)
  1869. EndReloadAssembly (1672ms)
  1870. LoadAssemblies (242ms)
  1871. RebuildTransferFunctionScriptingTraits (0ms)
  1872. SetupTypeCache (548ms)
  1873. ReleaseScriptCaches (1ms)
  1874. RebuildScriptCaches (89ms)
  1875. SetupLoadedEditorAssemblies (621ms)
  1876. LogAssemblyErrors (0ms)
  1877. InitializePlatformSupportModulesInManaged (13ms)
  1878. SetLoadedEditorAssemblies (3ms)
  1879. RefreshPlugins (1ms)
  1880. BeforeProcessingInitializeOnLoad (143ms)
  1881. ProcessInitializeOnLoadAttributes (389ms)
  1882. ProcessInitializeOnLoadMethodAttributes (16ms)
  1883. AfterProcessingInitializeOnLoad (55ms)
  1884. EditorAssembliesLoaded (0ms)
  1885. ExecutionOrderSort2 (0ms)
  1886. AwakeInstancesAfterBackupRestoration (12ms)
  1887. Platform modules already initialized, skipping
  1888. Refreshing native plugins compatible for Editor in 1.00 ms, found 10 plugins.
  1889. Preloading 0 native plugins for Editor in 0.00 ms.
  1890. Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
  1891. System memory in use before: 74.6 MB.
  1892. System memory in use after: 74.0 MB.
  1893. Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2071.
  1894. Total: 5.051100 ms (FindLiveObjects: 0.268400 ms CreateObjectMapping: 0.080700 ms MarkObjects: 3.450700 ms DeleteObjects: 1.249000 ms)
  1895. AssetImportParameters requested are different than current active one (requested -> active):
  1896. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1897. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1898. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1899. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1900. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1901. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1902. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1903. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1904. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1905. ========================================================================
  1906. Received Import Request.
  1907. Time since last request: 3702.653310 seconds.
  1908. path: Assets/ZFBrowser/Scripts/Editor
  1909. artifactKey: Guid(4c5a65551ba9c9949a3b3fefeb7fc1bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1910. Start importing Assets/ZFBrowser/Scripts/Editor using Guid(4c5a65551ba9c9949a3b3fefeb7fc1bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec52f5ed82b4f82fb928464e8fea61c3') in 0.027509 seconds
  1911. Import took 0.032559 seconds .
  1912. ========================================================================
  1913. Received Import Request.
  1914. Time since last request: 0.000499 seconds.
  1915. path: Assets/ZFBrowser/Scripts/BrowserUI
  1916. artifactKey: Guid(e460e45c0d5976544a2af3c86b00bdb9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1917. Start importing Assets/ZFBrowser/Scripts/BrowserUI using Guid(e460e45c0d5976544a2af3c86b00bdb9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1d6c18b61f6ceb45ad9c8f07d13014d5') in 0.016389 seconds
  1918. Import took 0.020399 seconds .
  1919. ========================================================================
  1920. Received Import Request.
  1921. Time since last request: 2.922342 seconds.
  1922. path: Assets/ZFBrowser
  1923. artifactKey: Guid(2bdfa8f92270ec54482b7fe91dd23f8b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1924. Start importing Assets/ZFBrowser using Guid(2bdfa8f92270ec54482b7fe91dd23f8b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4c3f69776a320df8fd9224da945581a0') in 0.027149 seconds
  1925. Import took 0.032351 seconds .
  1926. ========================================================================
  1927. Received Prepare
  1928. Registering precompiled user dll's ...
  1929. Registered in 0.025650 seconds.
  1930. Begin MonoManager ReloadAssembly
  1931. Native extension for WindowsStandalone target not found
  1932. Native extension for WebGL target not found
  1933. Refreshing native plugins compatible for Editor in 0.92 ms, found 10 plugins.
  1934. Preloading 0 native plugins for Editor in 0.00 ms.
  1935. Mono: successfully reloaded assembly
  1936. - Completed reload, in 2.118 seconds
  1937. Domain Reload Profiling:
  1938. ReloadAssembly (2119ms)
  1939. BeginReloadAssembly (344ms)
  1940. ExecutionOrderSort (0ms)
  1941. DisableScriptedObjects (11ms)
  1942. BackupInstance (0ms)
  1943. ReleaseScriptingObjects (0ms)
  1944. CreateAndSetChildDomain (105ms)
  1945. EndReloadAssembly (1606ms)
  1946. LoadAssemblies (244ms)
  1947. RebuildTransferFunctionScriptingTraits (0ms)
  1948. SetupTypeCache (529ms)
  1949. ReleaseScriptCaches (1ms)
  1950. RebuildScriptCaches (68ms)
  1951. SetupLoadedEditorAssemblies (627ms)
  1952. LogAssemblyErrors (0ms)
  1953. InitializePlatformSupportModulesInManaged (13ms)
  1954. SetLoadedEditorAssemblies (1ms)
  1955. RefreshPlugins (1ms)
  1956. BeforeProcessingInitializeOnLoad (141ms)
  1957. ProcessInitializeOnLoadAttributes (398ms)
  1958. ProcessInitializeOnLoadMethodAttributes (17ms)
  1959. AfterProcessingInitializeOnLoad (55ms)
  1960. EditorAssembliesLoaded (0ms)
  1961. ExecutionOrderSort2 (0ms)
  1962. AwakeInstancesAfterBackupRestoration (11ms)
  1963. Platform modules already initialized, skipping
  1964. Refreshing native plugins compatible for Editor in 2.59 ms, found 10 plugins.
  1965. Preloading 0 native plugins for Editor in 0.00 ms.
  1966. Unloading 1572 Unused Serialized files (Serialized files now loaded: 0)
  1967. System memory in use before: 73.1 MB.
  1968. System memory in use after: 73.2 MB.
  1969. Unloading 45 unused Assets to reduce memory usage. Loaded Objects now: 2061.
  1970. Total: 6.113700 ms (FindLiveObjects: 0.292600 ms CreateObjectMapping: 0.106400 ms MarkObjects: 5.660500 ms DeleteObjects: 0.051900 ms)
  1971. AssetImportParameters requested are different than current active one (requested -> active):
  1972. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1973. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1974. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1975. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1976. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1977. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1978. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1979. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1980. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1981. ========================================================================
  1982. Received Import Request.
  1983. Time since last request: 50.282658 seconds.
  1984. path: Assets/ZFBrowser/Plugins
  1985. artifactKey: Guid(94231670bcb033f48b2b6c17f65718ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1986. Start importing Assets/ZFBrowser/Plugins using Guid(94231670bcb033f48b2b6c17f65718ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '43a80fa3dacb504a742137af63eeb5cc') in 0.060891 seconds
  1987. Import took 0.090241 seconds .
  1988. ========================================================================
  1989. Received Prepare
  1990. Registering precompiled user dll's ...
  1991. Registered in 0.019771 seconds.
  1992. Begin MonoManager ReloadAssembly
  1993. Native extension for WindowsStandalone target not found
  1994. Native extension for WebGL target not found
  1995. Refreshing native plugins compatible for Editor in 0.95 ms, found 10 plugins.
  1996. Preloading 0 native plugins for Editor in 0.00 ms.
  1997. Mono: successfully reloaded assembly
  1998. - Completed reload, in 2.027 seconds
  1999. Domain Reload Profiling:
  2000. ReloadAssembly (2028ms)
  2001. BeginReloadAssembly (255ms)
  2002. ExecutionOrderSort (0ms)
  2003. DisableScriptedObjects (8ms)
  2004. BackupInstance (0ms)
  2005. ReleaseScriptingObjects (0ms)
  2006. CreateAndSetChildDomain (52ms)
  2007. EndReloadAssembly (1568ms)
  2008. LoadAssemblies (232ms)
  2009. RebuildTransferFunctionScriptingTraits (0ms)
  2010. SetupTypeCache (526ms)
  2011. ReleaseScriptCaches (2ms)
  2012. RebuildScriptCaches (83ms)
  2013. SetupLoadedEditorAssemblies (599ms)
  2014. LogAssemblyErrors (0ms)
  2015. InitializePlatformSupportModulesInManaged (12ms)
  2016. SetLoadedEditorAssemblies (1ms)
  2017. RefreshPlugins (1ms)
  2018. BeforeProcessingInitializeOnLoad (136ms)
  2019. ProcessInitializeOnLoadAttributes (357ms)
  2020. ProcessInitializeOnLoadMethodAttributes (18ms)
  2021. AfterProcessingInitializeOnLoad (74ms)
  2022. EditorAssembliesLoaded (1ms)
  2023. ExecutionOrderSort2 (0ms)
  2024. AwakeInstancesAfterBackupRestoration (12ms)
  2025. Platform modules already initialized, skipping
  2026. Refreshing native plugins compatible for Editor in 0.94 ms, found 10 plugins.
  2027. Preloading 0 native plugins for Editor in 0.00 ms.
  2028. Unloading 1545 Unused Serialized files (Serialized files now loaded: 0)
  2029. System memory in use before: 72.5 MB.
  2030. System memory in use after: 72.7 MB.
  2031. Unloading 55 unused Assets to reduce memory usage. Loaded Objects now: 2041.
  2032. Total: 4.041200 ms (FindLiveObjects: 0.306700 ms CreateObjectMapping: 0.106200 ms MarkObjects: 3.580300 ms DeleteObjects: 0.045900 ms)
  2033. AssetImportParameters requested are different than current active one (requested -> active):
  2034. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2035. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2036. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2037. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2038. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2039. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2040. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2041. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2042. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2043. ========================================================================
  2044. Received Import Request.
  2045. Time since last request: 9.440233 seconds.
  2046. path: Assets/ZFBrowser/Plugins/CEFResources
  2047. artifactKey: Guid(b78c7a8d91830584c8c68aefcc987c94) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2048. Start importing Assets/ZFBrowser/Plugins/CEFResources using Guid(b78c7a8d91830584c8c68aefcc987c94) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6013eae645459ffa787f10c7b105d532') in 0.014912 seconds
  2049. Import took 0.018245 seconds .
  2050. ========================================================================
  2051. Received Import Request.
  2052. Time since last request: 13.468919 seconds.
  2053. path: Assets/UCLAGameLab
  2054. artifactKey: Guid(004eb26eb66263d45a34455beacc608a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2055. Start importing Assets/UCLAGameLab using Guid(004eb26eb66263d45a34455beacc608a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '65b7e086812897e5a6699613f311844e') in 0.012683 seconds
  2056. Import took 0.017301 seconds .
  2057. ========================================================================
  2058. Received Prepare
  2059. Registering precompiled user dll's ...
  2060. Registered in 0.011058 seconds.
  2061. Begin MonoManager ReloadAssembly
  2062. Native extension for WindowsStandalone target not found
  2063. Native extension for WebGL target not found
  2064. Refreshing native plugins compatible for Editor in 0.92 ms, found 7 plugins.
  2065. Preloading 0 native plugins for Editor in 0.00 ms.
  2066. Mono: successfully reloaded assembly
  2067. - Completed reload, in 3.902 seconds
  2068. Domain Reload Profiling:
  2069. ReloadAssembly (3903ms)
  2070. BeginReloadAssembly (380ms)
  2071. ExecutionOrderSort (0ms)
  2072. DisableScriptedObjects (10ms)
  2073. BackupInstance (0ms)
  2074. ReleaseScriptingObjects (0ms)
  2075. CreateAndSetChildDomain (66ms)
  2076. EndReloadAssembly (3261ms)
  2077. LoadAssemblies (311ms)
  2078. RebuildTransferFunctionScriptingTraits (0ms)
  2079. SetupTypeCache (529ms)
  2080. ReleaseScriptCaches (2ms)
  2081. RebuildScriptCaches (72ms)
  2082. SetupLoadedEditorAssemblies (2306ms)
  2083. LogAssemblyErrors (0ms)
  2084. InitializePlatformSupportModulesInManaged (14ms)
  2085. SetLoadedEditorAssemblies (1ms)
  2086. RefreshPlugins (1ms)
  2087. BeforeProcessingInitializeOnLoad (197ms)
  2088. ProcessInitializeOnLoadAttributes (1920ms)
  2089. ProcessInitializeOnLoadMethodAttributes (94ms)
  2090. AfterProcessingInitializeOnLoad (78ms)
  2091. EditorAssembliesLoaded (0ms)
  2092. ExecutionOrderSort2 (0ms)
  2093. AwakeInstancesAfterBackupRestoration (16ms)
  2094. Platform modules already initialized, skipping
  2095. Refreshing native plugins compatible for Editor in 0.79 ms, found 7 plugins.
  2096. Preloading 0 native plugins for Editor in 0.00 ms.
  2097. Unloading 1531 Unused Serialized files (Serialized files now loaded: 0)
  2098. System memory in use before: 72.0 MB.
  2099. System memory in use after: 72.1 MB.
  2100. Unloading 19 unused Assets to reduce memory usage. Loaded Objects now: 2043.
  2101. Total: 6.922700 ms (FindLiveObjects: 0.188700 ms CreateObjectMapping: 0.079800 ms MarkObjects: 6.616700 ms DeleteObjects: 0.035400 ms)
  2102. AssetImportParameters requested are different than current active one (requested -> active):
  2103. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2104. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2105. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2106. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2107. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2108. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2109. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2110. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2111. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2112. ========================================================================
  2113. Received Import Request.
  2114. Time since last request: 137.832413 seconds.
  2115. path: Assets/ZFBrowser/Plugins
  2116. artifactKey: Guid(94231670bcb033f48b2b6c17f65718ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2117. Start importing Assets/ZFBrowser/Plugins using Guid(94231670bcb033f48b2b6c17f65718ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '216a4cf2ea4f58ca41e13d65379cbb91') in 0.031684 seconds
  2118. Import took 0.036619 seconds .
  2119. ========================================================================
  2120. Received Import Request.
  2121. Time since last request: 0.612664 seconds.
  2122. path: Assets/ZFBrowser/Plugins/CEFResources
  2123. artifactKey: Guid(b78c7a8d91830584c8c68aefcc987c94) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2124. Start importing Assets/ZFBrowser/Plugins/CEFResources using Guid(b78c7a8d91830584c8c68aefcc987c94) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3dd730d30290cb11c9728695a8dc5b20') in 0.028121 seconds
  2125. Import took 0.036250 seconds .
  2126. ========================================================================
  2127. Received Import Request.
  2128. Time since last request: 0.626394 seconds.
  2129. path: Assets/ZFBrowser/Plugins/CEFResources/locales
  2130. artifactKey: Guid(45c9d019c8f1e3546ba1ceda2e723287) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2131. Start importing Assets/ZFBrowser/Plugins/CEFResources/locales using Guid(45c9d019c8f1e3546ba1ceda2e723287) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5556275c5f2e950a301106b539e67ccd') in 0.023484 seconds
  2132. Import took 0.028000 seconds .
  2133. ========================================================================
  2134. Received Import Request.
  2135. Time since last request: 6.166239 seconds.
  2136. path: Assets/ZFBrowser/Plugins/w64
  2137. artifactKey: Guid(16e285afa1df1214897a9fb4c1af8ceb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2138. Start importing Assets/ZFBrowser/Plugins/w64 using Guid(16e285afa1df1214897a9fb4c1af8ceb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cdac2b723e2c472418933bd8fac251d9') in 0.033263 seconds
  2139. Import took 0.049665 seconds .
  2140. ========================================================================
  2141. Received Prepare
  2142. Refreshing native plugins compatible for Editor in 21.89 ms, found 7 plugins.
  2143. Preloading 0 native plugins for Editor in 0.00 ms.
  2144. Unloading 17 Unused Serialized files (Serialized files now loaded: 0)
  2145. System memory in use before: 42.0 MB.
  2146. System memory in use after: 42.1 MB.
  2147. Unloading 17 unused Assets to reduce memory usage. Loaded Objects now: 2043.
  2148. Total: 4.709300 ms (FindLiveObjects: 0.270400 ms CreateObjectMapping: 0.098200 ms MarkObjects: 4.304500 ms DeleteObjects: 0.033400 ms)
  2149. AssetImportParameters requested are different than current active one (requested -> active):
  2150. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2151. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2152. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2153. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2154. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2155. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2156. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2157. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2158. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2159. ========================================================================
  2160. Received Import Request.
  2161. Time since last request: 65308.340307 seconds.
  2162. path: Assets/Plugins/__Internalplugins.jslib
  2163. artifactKey: Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2164. Start importing Assets/Plugins/__Internalplugins.jslib using Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '81541ffa24cf159c510bad613b0bf357') in 4.140102 seconds
  2165. Import took 5.705697 seconds .
  2166. ========================================================================
  2167. Received Import Request.
  2168. Time since last request: 44.762440 seconds.
  2169. path: Assets/Plugins/__Internalplugins.jslib
  2170. artifactKey: Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2171. Start importing Assets/Plugins/__Internalplugins.jslib using Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f1e8f9d3b41ccaa1a23809c3c50cd801') in 0.016237 seconds
  2172. Import took 0.082502 seconds .
  2173. ========================================================================
  2174. Received Import Request.
  2175. Time since last request: 17.784836 seconds.
  2176. path: Assets/Plugins/__Internalplugins.jslib
  2177. artifactKey: Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2178. Start importing Assets/Plugins/__Internalplugins.jslib using Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '55af08dcd676712b79ed600530961984') in 0.034923 seconds
  2179. Import took 0.054433 seconds .
  2180. ========================================================================
  2181. Received Import Request.
  2182. Time since last request: 41.138813 seconds.
  2183. path: Assets/Plugins/__Internalplugins.jslib
  2184. artifactKey: Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2185. Start importing Assets/Plugins/__Internalplugins.jslib using Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cf81adeb004a27649694d7a79ce6fe4e') in 0.051600 seconds
  2186. Import took 0.083942 seconds .
  2187. ========================================================================
  2188. Received Prepare
  2189. Registering precompiled user dll's ...
  2190. Registered in 0.145863 seconds.
  2191. Begin MonoManager ReloadAssembly
  2192. Native extension for WindowsStandalone target not found
  2193. Native extension for WebGL target not found
  2194. Refreshing native plugins compatible for Editor in 16.80 ms, found 7 plugins.
  2195. Preloading 0 native plugins for Editor in 0.00 ms.
  2196. Mono: successfully reloaded assembly
  2197. - Completed reload, in 30.028 seconds
  2198. Domain Reload Profiling:
  2199. ReloadAssembly (30283ms)
  2200. BeginReloadAssembly (14692ms)
  2201. ExecutionOrderSort (0ms)
  2202. DisableScriptedObjects (5331ms)
  2203. BackupInstance (0ms)
  2204. ReleaseScriptingObjects (0ms)
  2205. CreateAndSetChildDomain (7183ms)
  2206. EndReloadAssembly (14436ms)
  2207. LoadAssemblies (1677ms)
  2208. RebuildTransferFunctionScriptingTraits (0ms)
  2209. SetupTypeCache (6045ms)
  2210. ReleaseScriptCaches (7ms)
  2211. RebuildScriptCaches (250ms)
  2212. SetupLoadedEditorAssemblies (5967ms)
  2213. LogAssemblyErrors (0ms)
  2214. InitializePlatformSupportModulesInManaged (49ms)
  2215. SetLoadedEditorAssemblies (13ms)
  2216. RefreshPlugins (17ms)
  2217. BeforeProcessingInitializeOnLoad (838ms)
  2218. ProcessInitializeOnLoadAttributes (4828ms)
  2219. ProcessInitializeOnLoadMethodAttributes (54ms)
  2220. AfterProcessingInitializeOnLoad (167ms)
  2221. EditorAssembliesLoaded (1ms)
  2222. ExecutionOrderSort2 (0ms)
  2223. AwakeInstancesAfterBackupRestoration (46ms)
  2224. Platform modules already initialized, skipping
  2225. Refreshing native plugins compatible for Editor in 0.98 ms, found 7 plugins.
  2226. Preloading 0 native plugins for Editor in 0.00 ms.
  2227. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  2228. System memory in use before: 72.0 MB.
  2229. System memory in use after: 72.1 MB.
  2230. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2045.
  2231. Total: 35.986700 ms (FindLiveObjects: 2.879200 ms CreateObjectMapping: 0.184500 ms MarkObjects: 32.770200 ms DeleteObjects: 0.085500 ms)
  2232. AssetImportParameters requested are different than current active one (requested -> active):
  2233. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2234. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2235. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2236. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2237. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2238. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2239. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2240. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2241. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2242. ========================================================================
  2243. Received Prepare
  2244. Registering precompiled user dll's ...
  2245. Registered in 0.022193 seconds.
  2246. Begin MonoManager ReloadAssembly
  2247. Native extension for WindowsStandalone target not found
  2248. Native extension for WebGL target not found
  2249. Refreshing native plugins compatible for Editor in 2.50 ms, found 7 plugins.
  2250. Preloading 0 native plugins for Editor in 0.00 ms.
  2251. Mono: successfully reloaded assembly
  2252. - Completed reload, in 9.652 seconds
  2253. Domain Reload Profiling:
  2254. ReloadAssembly (9653ms)
  2255. BeginReloadAssembly (1167ms)
  2256. ExecutionOrderSort (0ms)
  2257. DisableScriptedObjects (19ms)
  2258. BackupInstance (0ms)
  2259. ReleaseScriptingObjects (0ms)
  2260. CreateAndSetChildDomain (168ms)
  2261. EndReloadAssembly (7975ms)
  2262. LoadAssemblies (1279ms)
  2263. RebuildTransferFunctionScriptingTraits (0ms)
  2264. SetupTypeCache (1005ms)
  2265. ReleaseScriptCaches (1ms)
  2266. RebuildScriptCaches (91ms)
  2267. SetupLoadedEditorAssemblies (2124ms)
  2268. LogAssemblyErrors (0ms)
  2269. InitializePlatformSupportModulesInManaged (17ms)
  2270. SetLoadedEditorAssemblies (1ms)
  2271. RefreshPlugins (3ms)
  2272. BeforeProcessingInitializeOnLoad (207ms)
  2273. ProcessInitializeOnLoadAttributes (1487ms)
  2274. ProcessInitializeOnLoadMethodAttributes (80ms)
  2275. AfterProcessingInitializeOnLoad (328ms)
  2276. EditorAssembliesLoaded (1ms)
  2277. ExecutionOrderSort2 (0ms)
  2278. AwakeInstancesAfterBackupRestoration (40ms)
  2279. Platform modules already initialized, skipping
  2280. Refreshing native plugins compatible for Editor in 1.72 ms, found 7 plugins.
  2281. Preloading 0 native plugins for Editor in 0.00 ms.
  2282. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  2283. System memory in use before: 72.0 MB.
  2284. System memory in use after: 72.1 MB.
  2285. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2047.
  2286. Total: 36.582500 ms (FindLiveObjects: 0.547200 ms CreateObjectMapping: 1.007700 ms MarkObjects: 34.986900 ms DeleteObjects: 0.038100 ms)
  2287. AssetImportParameters requested are different than current active one (requested -> active):
  2288. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2289. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2290. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2291. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2292. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2293. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2294. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2295. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2296. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2297. ========================================================================
  2298. Received Import Request.
  2299. Time since last request: 262.191616 seconds.
  2300. path: Assets/Plugins/iframejs.jslib
  2301. artifactKey: Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2302. Start importing Assets/Plugins/iframejs.jslib using Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '80435bc2fdcbb484a7253d9135170ed0') in 0.174336 seconds
  2303. Import took 0.213081 seconds .
  2304. ========================================================================
  2305. Received Prepare
  2306. Registering precompiled user dll's ...
  2307. Registered in 0.034298 seconds.
  2308. Begin MonoManager ReloadAssembly
  2309. Native extension for WindowsStandalone target not found
  2310. Native extension for WebGL target not found
  2311. Refreshing native plugins compatible for Editor in 1.14 ms, found 7 plugins.
  2312. Preloading 0 native plugins for Editor in 0.00 ms.
  2313. Mono: successfully reloaded assembly
  2314. - Completed reload, in 13.649 seconds
  2315. Domain Reload Profiling:
  2316. ReloadAssembly (13650ms)
  2317. BeginReloadAssembly (3297ms)
  2318. ExecutionOrderSort (0ms)
  2319. DisableScriptedObjects (62ms)
  2320. BackupInstance (0ms)
  2321. ReleaseScriptingObjects (2ms)
  2322. CreateAndSetChildDomain (201ms)
  2323. EndReloadAssembly (9435ms)
  2324. LoadAssemblies (3287ms)
  2325. RebuildTransferFunctionScriptingTraits (0ms)
  2326. SetupTypeCache (2136ms)
  2327. ReleaseScriptCaches (4ms)
  2328. RebuildScriptCaches (203ms)
  2329. SetupLoadedEditorAssemblies (2132ms)
  2330. LogAssemblyErrors (0ms)
  2331. InitializePlatformSupportModulesInManaged (62ms)
  2332. SetLoadedEditorAssemblies (1ms)
  2333. RefreshPlugins (1ms)
  2334. BeforeProcessingInitializeOnLoad (665ms)
  2335. ProcessInitializeOnLoadAttributes (1199ms)
  2336. ProcessInitializeOnLoadMethodAttributes (70ms)
  2337. AfterProcessingInitializeOnLoad (134ms)
  2338. EditorAssembliesLoaded (0ms)
  2339. ExecutionOrderSort2 (0ms)
  2340. AwakeInstancesAfterBackupRestoration (47ms)
  2341. Platform modules already initialized, skipping
  2342. Refreshing native plugins compatible for Editor in 6.92 ms, found 7 plugins.
  2343. Preloading 0 native plugins for Editor in 0.00 ms.
  2344. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  2345. System memory in use before: 72.0 MB.
  2346. System memory in use after: 72.1 MB.
  2347. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2049.
  2348. Total: 15.035000 ms (FindLiveObjects: 0.439500 ms CreateObjectMapping: 0.099100 ms MarkObjects: 6.820700 ms DeleteObjects: 7.672900 ms)
  2349. AssetImportParameters requested are different than current active one (requested -> active):
  2350. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2351. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2352. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2353. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2354. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2355. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2356. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2357. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2358. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2359. ========================================================================
  2360. Received Prepare
  2361. Registering precompiled user dll's ...
  2362. Registered in 0.027544 seconds.
  2363. Begin MonoManager ReloadAssembly
  2364. Native extension for WindowsStandalone target not found
  2365. Native extension for WebGL target not found
  2366. Refreshing native plugins compatible for Editor in 0.85 ms, found 7 plugins.
  2367. Preloading 0 native plugins for Editor in 0.00 ms.
  2368. Mono: successfully reloaded assembly
  2369. - Completed reload, in 12.994 seconds
  2370. Domain Reload Profiling:
  2371. ReloadAssembly (12995ms)
  2372. BeginReloadAssembly (3549ms)
  2373. ExecutionOrderSort (0ms)
  2374. DisableScriptedObjects (22ms)
  2375. BackupInstance (0ms)
  2376. ReleaseScriptingObjects (0ms)
  2377. CreateAndSetChildDomain (202ms)
  2378. EndReloadAssembly (8362ms)
  2379. LoadAssemblies (3566ms)
  2380. RebuildTransferFunctionScriptingTraits (0ms)
  2381. SetupTypeCache (1996ms)
  2382. ReleaseScriptCaches (1ms)
  2383. RebuildScriptCaches (145ms)
  2384. SetupLoadedEditorAssemblies (5159ms)
  2385. LogAssemblyErrors (0ms)
  2386. InitializePlatformSupportModulesInManaged (28ms)
  2387. SetLoadedEditorAssemblies (1ms)
  2388. RefreshPlugins (1ms)
  2389. BeforeProcessingInitializeOnLoad (684ms)
  2390. ProcessInitializeOnLoadAttributes (4196ms)
  2391. ProcessInitializeOnLoadMethodAttributes (55ms)
  2392. AfterProcessingInitializeOnLoad (189ms)
  2393. EditorAssembliesLoaded (4ms)
  2394. ExecutionOrderSort2 (0ms)
  2395. AwakeInstancesAfterBackupRestoration (23ms)
  2396. Platform modules already initialized, skipping
  2397. Refreshing native plugins compatible for Editor in 1.02 ms, found 7 plugins.
  2398. Preloading 0 native plugins for Editor in 0.00 ms.
  2399. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  2400. System memory in use before: 72.0 MB.
  2401. System memory in use after: 72.1 MB.
  2402. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2051.
  2403. Total: 8.112600 ms (FindLiveObjects: 0.353400 ms CreateObjectMapping: 0.119900 ms MarkObjects: 7.603900 ms DeleteObjects: 0.032800 ms)
  2404. AssetImportParameters requested are different than current active one (requested -> active):
  2405. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2406. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2407. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2408. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2409. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2410. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2411. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2412. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2413. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2414. ========================================================================
  2415. Received Prepare
  2416. Registering precompiled user dll's ...
  2417. Registered in 0.237126 seconds.
  2418. Begin MonoManager ReloadAssembly
  2419. Native extension for WindowsStandalone target not found
  2420. Native extension for WebGL target not found
  2421. Refreshing native plugins compatible for Editor in 1.43 ms, found 7 plugins.
  2422. Preloading 0 native plugins for Editor in 0.00 ms.
  2423. Mono: successfully reloaded assembly
  2424. - Completed reload, in 28.779 seconds
  2425. Domain Reload Profiling:
  2426. ReloadAssembly (28780ms)
  2427. BeginReloadAssembly (4200ms)
  2428. ExecutionOrderSort (0ms)
  2429. DisableScriptedObjects (25ms)
  2430. BackupInstance (0ms)
  2431. ReleaseScriptingObjects (0ms)
  2432. CreateAndSetChildDomain (216ms)
  2433. EndReloadAssembly (23191ms)
  2434. LoadAssemblies (4391ms)
  2435. RebuildTransferFunctionScriptingTraits (0ms)
  2436. SetupTypeCache (7311ms)
  2437. ReleaseScriptCaches (36ms)
  2438. RebuildScriptCaches (4598ms)
  2439. SetupLoadedEditorAssemblies (6155ms)
  2440. LogAssemblyErrors (0ms)
  2441. InitializePlatformSupportModulesInManaged (49ms)
  2442. SetLoadedEditorAssemblies (3ms)
  2443. RefreshPlugins (2ms)
  2444. BeforeProcessingInitializeOnLoad (919ms)
  2445. ProcessInitializeOnLoadAttributes (4896ms)
  2446. ProcessInitializeOnLoadMethodAttributes (73ms)
  2447. AfterProcessingInitializeOnLoad (213ms)
  2448. EditorAssembliesLoaded (1ms)
  2449. ExecutionOrderSort2 (0ms)
  2450. AwakeInstancesAfterBackupRestoration (51ms)
  2451. Platform modules already initialized, skipping
  2452. Refreshing native plugins compatible for Editor in 1.69 ms, found 7 plugins.
  2453. Preloading 0 native plugins for Editor in 0.00 ms.
  2454. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  2455. System memory in use before: 72.0 MB.
  2456. System memory in use after: 72.1 MB.
  2457. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2053.
  2458. Total: 5.635400 ms (FindLiveObjects: 0.271500 ms CreateObjectMapping: 0.099700 ms MarkObjects: 5.194700 ms DeleteObjects: 0.066900 ms)
  2459. AssetImportParameters requested are different than current active one (requested -> active):
  2460. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2461. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2462. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2463. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2464. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2465. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2466. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2467. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2468. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2469. ========================================================================
  2470. Received Prepare
  2471. Registering precompiled user dll's ...
  2472. Registered in 0.048195 seconds.
  2473. Begin MonoManager ReloadAssembly
  2474. Native extension for WindowsStandalone target not found
  2475. Native extension for WebGL target not found
  2476. Refreshing native plugins compatible for Editor in 3.79 ms, found 7 plugins.
  2477. Preloading 0 native plugins for Editor in 0.00 ms.
  2478. Mono: successfully reloaded assembly
  2479. - Completed reload, in 19.854 seconds
  2480. Domain Reload Profiling:
  2481. ReloadAssembly (19856ms)
  2482. BeginReloadAssembly (1322ms)
  2483. ExecutionOrderSort (0ms)
  2484. DisableScriptedObjects (15ms)
  2485. BackupInstance (0ms)
  2486. ReleaseScriptingObjects (0ms)
  2487. CreateAndSetChildDomain (246ms)
  2488. EndReloadAssembly (14757ms)
  2489. LoadAssemblies (1150ms)
  2490. RebuildTransferFunctionScriptingTraits (0ms)
  2491. SetupTypeCache (2517ms)
  2492. ReleaseScriptCaches (2ms)
  2493. RebuildScriptCaches (440ms)
  2494. SetupLoadedEditorAssemblies (3000ms)
  2495. LogAssemblyErrors (0ms)
  2496. InitializePlatformSupportModulesInManaged (40ms)
  2497. SetLoadedEditorAssemblies (3ms)
  2498. RefreshPlugins (4ms)
  2499. BeforeProcessingInitializeOnLoad (680ms)
  2500. ProcessInitializeOnLoadAttributes (1934ms)
  2501. ProcessInitializeOnLoadMethodAttributes (63ms)
  2502. AfterProcessingInitializeOnLoad (272ms)
  2503. EditorAssembliesLoaded (4ms)
  2504. ExecutionOrderSort2 (0ms)
  2505. AwakeInstancesAfterBackupRestoration (3782ms)
  2506. Platform modules already initialized, skipping
  2507. Refreshing native plugins compatible for Editor in 1.56 ms, found 7 plugins.
  2508. Preloading 0 native plugins for Editor in 0.00 ms.
  2509. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  2510. System memory in use before: 72.0 MB.
  2511. System memory in use after: 72.1 MB.
  2512. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2055.
  2513. Total: 11.492300 ms (FindLiveObjects: 0.715300 ms CreateObjectMapping: 0.160600 ms MarkObjects: 10.576800 ms DeleteObjects: 0.037300 ms)
  2514. AssetImportParameters requested are different than current active one (requested -> active):
  2515. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2516. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2517. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2518. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2519. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2520. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2521. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2522. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2523. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2524. ========================================================================
  2525. Received Prepare
  2526. Registering precompiled user dll's ...
  2527. Registered in 0.025557 seconds.
  2528. Begin MonoManager ReloadAssembly
  2529. Native extension for WindowsStandalone target not found
  2530. Native extension for WebGL target not found
  2531. Refreshing native plugins compatible for Editor in 1.28 ms, found 7 plugins.
  2532. Preloading 0 native plugins for Editor in 0.00 ms.
  2533. Mono: successfully reloaded assembly
  2534. - Completed reload, in 10.189 seconds
  2535. Domain Reload Profiling:
  2536. ReloadAssembly (10196ms)
  2537. BeginReloadAssembly (838ms)
  2538. ExecutionOrderSort (0ms)
  2539. DisableScriptedObjects (22ms)
  2540. BackupInstance (0ms)
  2541. ReleaseScriptingObjects (0ms)
  2542. CreateAndSetChildDomain (211ms)
  2543. EndReloadAssembly (8816ms)
  2544. LoadAssemblies (723ms)
  2545. RebuildTransferFunctionScriptingTraits (0ms)
  2546. SetupTypeCache (1694ms)
  2547. ReleaseScriptCaches (2ms)
  2548. RebuildScriptCaches (261ms)
  2549. SetupLoadedEditorAssemblies (5589ms)
  2550. LogAssemblyErrors (0ms)
  2551. InitializePlatformSupportModulesInManaged (29ms)
  2552. SetLoadedEditorAssemblies (1ms)
  2553. RefreshPlugins (1ms)
  2554. BeforeProcessingInitializeOnLoad (4086ms)
  2555. ProcessInitializeOnLoadAttributes (1218ms)
  2556. ProcessInitializeOnLoadMethodAttributes (67ms)
  2557. AfterProcessingInitializeOnLoad (185ms)
  2558. EditorAssembliesLoaded (1ms)
  2559. ExecutionOrderSort2 (0ms)
  2560. AwakeInstancesAfterBackupRestoration (33ms)
  2561. Platform modules already initialized, skipping
  2562. Refreshing native plugins compatible for Editor in 1.16 ms, found 7 plugins.
  2563. Preloading 0 native plugins for Editor in 0.00 ms.
  2564. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  2565. System memory in use before: 72.0 MB.
  2566. System memory in use after: 72.1 MB.
  2567. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2057.
  2568. Total: 5.913200 ms (FindLiveObjects: 0.368800 ms CreateObjectMapping: 0.101200 ms MarkObjects: 5.413800 ms DeleteObjects: 0.026900 ms)
  2569. AssetImportParameters requested are different than current active one (requested -> active):
  2570. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2571. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2572. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2573. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2574. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2575. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2576. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2577. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2578. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2579. ========================================================================
  2580. Received Import Request.
  2581. Time since last request: 549.275844 seconds.
  2582. path: Assets/Plugins/iframejs.jslib
  2583. artifactKey: Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2584. Start importing Assets/Plugins/iframejs.jslib using Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e185ac42917ac3ff52364d686f432afa') in 0.072661 seconds
  2585. Import took 0.115279 seconds .
  2586. ========================================================================
  2587. Received Prepare
  2588. Registering precompiled user dll's ...
  2589. Registered in 0.020067 seconds.
  2590. Begin MonoManager ReloadAssembly
  2591. Native extension for WindowsStandalone target not found
  2592. Native extension for WebGL target not found
  2593. Refreshing native plugins compatible for Editor in 0.91 ms, found 7 plugins.
  2594. Preloading 0 native plugins for Editor in 0.00 ms.
  2595. Mono: successfully reloaded assembly
  2596. - Completed reload, in 8.104 seconds
  2597. Domain Reload Profiling:
  2598. ReloadAssembly (8105ms)
  2599. BeginReloadAssembly (840ms)
  2600. ExecutionOrderSort (0ms)
  2601. DisableScriptedObjects (16ms)
  2602. BackupInstance (0ms)
  2603. ReleaseScriptingObjects (0ms)
  2604. CreateAndSetChildDomain (132ms)
  2605. EndReloadAssembly (6419ms)
  2606. LoadAssemblies (838ms)
  2607. RebuildTransferFunctionScriptingTraits (0ms)
  2608. SetupTypeCache (3085ms)
  2609. ReleaseScriptCaches (2ms)
  2610. RebuildScriptCaches (130ms)
  2611. SetupLoadedEditorAssemblies (2210ms)
  2612. LogAssemblyErrors (0ms)
  2613. InitializePlatformSupportModulesInManaged (27ms)
  2614. SetLoadedEditorAssemblies (1ms)
  2615. RefreshPlugins (1ms)
  2616. BeforeProcessingInitializeOnLoad (631ms)
  2617. ProcessInitializeOnLoadAttributes (1375ms)
  2618. ProcessInitializeOnLoadMethodAttributes (46ms)
  2619. AfterProcessingInitializeOnLoad (128ms)
  2620. EditorAssembliesLoaded (1ms)
  2621. ExecutionOrderSort2 (0ms)
  2622. AwakeInstancesAfterBackupRestoration (22ms)
  2623. Platform modules already initialized, skipping
  2624. Refreshing native plugins compatible for Editor in 5.51 ms, found 7 plugins.
  2625. Preloading 0 native plugins for Editor in 0.00 ms.
  2626. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  2627. System memory in use before: 72.0 MB.
  2628. System memory in use after: 72.1 MB.
  2629. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2059.
  2630. Total: 14.558100 ms (FindLiveObjects: 0.470900 ms CreateObjectMapping: 0.199700 ms MarkObjects: 13.370100 ms DeleteObjects: 0.421700 ms)
  2631. AssetImportParameters requested are different than current active one (requested -> active):
  2632. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2633. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2634. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2635. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2636. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2637. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2638. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2639. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2640. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2641. ========================================================================
  2642. Received Import Request.
  2643. Time since last request: 71.694554 seconds.
  2644. path: Assets/Plugins/iframejs.jslib
  2645. artifactKey: Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2646. Start importing Assets/Plugins/iframejs.jslib using Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5b80d861eb03a72cbc1cc1d31b7272d3') in 0.072575 seconds
  2647. Import took 0.087999 seconds .
  2648. ========================================================================
  2649. Received Prepare
  2650. Registering precompiled user dll's ...
  2651. Registered in 0.052418 seconds.
  2652. Begin MonoManager ReloadAssembly
  2653. Native extension for WindowsStandalone target not found
  2654. Native extension for WebGL target not found
  2655. Refreshing native plugins compatible for Editor in 0.94 ms, found 7 plugins.
  2656. Preloading 0 native plugins for Editor in 0.00 ms.
  2657. Mono: successfully reloaded assembly
  2658. - Completed reload, in 11.281 seconds
  2659. Domain Reload Profiling:
  2660. ReloadAssembly (11282ms)
  2661. BeginReloadAssembly (4432ms)
  2662. ExecutionOrderSort (0ms)
  2663. DisableScriptedObjects (69ms)
  2664. BackupInstance (0ms)
  2665. ReleaseScriptingObjects (0ms)
  2666. CreateAndSetChildDomain (181ms)
  2667. EndReloadAssembly (5428ms)
  2668. LoadAssemblies (4545ms)
  2669. RebuildTransferFunctionScriptingTraits (0ms)
  2670. SetupTypeCache (1222ms)
  2671. ReleaseScriptCaches (6ms)
  2672. RebuildScriptCaches (135ms)
  2673. SetupLoadedEditorAssemblies (2927ms)
  2674. LogAssemblyErrors (0ms)
  2675. InitializePlatformSupportModulesInManaged (14ms)
  2676. SetLoadedEditorAssemblies (5ms)
  2677. RefreshPlugins (1ms)
  2678. BeforeProcessingInitializeOnLoad (177ms)
  2679. ProcessInitializeOnLoadAttributes (1372ms)
  2680. ProcessInitializeOnLoadMethodAttributes (492ms)
  2681. AfterProcessingInitializeOnLoad (865ms)
  2682. EditorAssembliesLoaded (1ms)
  2683. ExecutionOrderSort2 (0ms)
  2684. AwakeInstancesAfterBackupRestoration (64ms)
  2685. Platform modules already initialized, skipping
  2686. Refreshing native plugins compatible for Editor in 1.18 ms, found 7 plugins.
  2687. Preloading 0 native plugins for Editor in 0.00 ms.
  2688. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  2689. System memory in use before: 72.0 MB.
  2690. System memory in use after: 72.1 MB.
  2691. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2061.
  2692. Total: 11.530000 ms (FindLiveObjects: 0.302000 ms CreateObjectMapping: 0.124300 ms MarkObjects: 11.055400 ms DeleteObjects: 0.045100 ms)
  2693. AssetImportParameters requested are different than current active one (requested -> active):
  2694. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2695. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2696. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2697. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2698. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2699. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2700. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2701. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2702. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2703. ========================================================================
  2704. Received Prepare
  2705. Refreshing native plugins compatible for Editor in 24.88 ms, found 7 plugins.
  2706. Preloading 0 native plugins for Editor in 0.00 ms.
  2707. Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
  2708. System memory in use before: 42.1 MB.
  2709. System memory in use after: 42.2 MB.
  2710. Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2061.
  2711. Total: 8.270200 ms (FindLiveObjects: 0.273700 ms CreateObjectMapping: 0.103400 ms MarkObjects: 7.862200 ms DeleteObjects: 0.028900 ms)
  2712. AssetImportParameters requested are different than current active one (requested -> active):
  2713. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2714. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2715. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2716. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2717. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2718. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2719. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2720. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2721. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2722. ========================================================================
  2723. Received Import Request.
  2724. Time since last request: 1041.503326 seconds.
  2725. path: Packages/com.unity.ugui
  2726. artifactKey: Guid(8f7652e09069a1943278893d4264401e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2727. Start importing Packages/com.unity.ugui using Guid(8f7652e09069a1943278893d4264401e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9be8eef517426cf4e5d1ef023f0f7cab') in 0.030939 seconds
  2728. Import took 0.069530 seconds .
  2729. ========================================================================
  2730. Received Prepare
  2731. Refreshing native plugins compatible for Editor in 18.86 ms, found 7 plugins.
  2732. Preloading 0 native plugins for Editor in 0.00 ms.
  2733. Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
  2734. System memory in use before: 42.1 MB.
  2735. System memory in use after: 42.2 MB.
  2736. Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2061.
  2737. Total: 4.770400 ms (FindLiveObjects: 0.197800 ms CreateObjectMapping: 0.076000 ms MarkObjects: 4.466500 ms DeleteObjects: 0.027600 ms)
  2738. AssetImportParameters requested are different than current active one (requested -> active):
  2739. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2740. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2741. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2742. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2743. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2744. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2745. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2746. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2747. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2748. ========================================================================
  2749. Received Prepare
  2750. Registering precompiled user dll's ...
  2751. Registered in 5.809991 seconds.
  2752. Begin MonoManager ReloadAssembly
  2753. Native extension for WindowsStandalone target not found
  2754. Native extension for WebGL target not found
  2755. Refreshing native plugins compatible for Editor in 14.42 ms, found 7 plugins.
  2756. Preloading 0 native plugins for Editor in 0.00 ms.
  2757. Mono: successfully reloaded assembly
  2758. - Completed reload, in 24.350 seconds
  2759. Domain Reload Profiling:
  2760. ReloadAssembly (24664ms)
  2761. BeginReloadAssembly (8366ms)
  2762. ExecutionOrderSort (0ms)
  2763. DisableScriptedObjects (846ms)
  2764. BackupInstance (0ms)
  2765. ReleaseScriptingObjects (23ms)
  2766. CreateAndSetChildDomain (5202ms)
  2767. EndReloadAssembly (14988ms)
  2768. LoadAssemblies (6090ms)
  2769. RebuildTransferFunctionScriptingTraits (1ms)
  2770. SetupTypeCache (2765ms)
  2771. ReleaseScriptCaches (2ms)
  2772. RebuildScriptCaches (276ms)
  2773. SetupLoadedEditorAssemblies (5456ms)
  2774. LogAssemblyErrors (0ms)
  2775. InitializePlatformSupportModulesInManaged (73ms)
  2776. SetLoadedEditorAssemblies (15ms)
  2777. RefreshPlugins (15ms)
  2778. BeforeProcessingInitializeOnLoad (3287ms)
  2779. ProcessInitializeOnLoadAttributes (1743ms)
  2780. ProcessInitializeOnLoadMethodAttributes (70ms)
  2781. AfterProcessingInitializeOnLoad (252ms)
  2782. EditorAssembliesLoaded (1ms)
  2783. ExecutionOrderSort2 (0ms)
  2784. AwakeInstancesAfterBackupRestoration (45ms)
  2785. Platform modules already initialized, skipping
  2786. Refreshing native plugins compatible for Editor in 1.38 ms, found 7 plugins.
  2787. Preloading 0 native plugins for Editor in 0.00 ms.
  2788. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  2789. System memory in use before: 72.0 MB.
  2790. System memory in use after: 72.1 MB.
  2791. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2063.
  2792. Total: 39.503200 ms (FindLiveObjects: 3.251100 ms CreateObjectMapping: 0.889500 ms MarkObjects: 24.041300 ms DeleteObjects: 11.317400 ms)
  2793. AssetImportParameters requested are different than current active one (requested -> active):
  2794. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2795. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2796. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2797. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2798. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2799. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2800. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2801. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2802. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2803. ========================================================================
  2804. Received Prepare
  2805. Registering precompiled user dll's ...
  2806. Registered in 7.101191 seconds.
  2807. Begin MonoManager ReloadAssembly
  2808. Native extension for WindowsStandalone target not found
  2809. Native extension for WebGL target not found
  2810. Refreshing native plugins compatible for Editor in 4.04 ms, found 7 plugins.
  2811. Preloading 0 native plugins for Editor in 0.00 ms.
  2812. Mono: successfully reloaded assembly
  2813. - Completed reload, in 23.523 seconds
  2814. Domain Reload Profiling:
  2815. ReloadAssembly (23649ms)
  2816. BeginReloadAssembly (9640ms)
  2817. ExecutionOrderSort (0ms)
  2818. DisableScriptedObjects (1471ms)
  2819. BackupInstance (0ms)
  2820. ReleaseScriptingObjects (27ms)
  2821. CreateAndSetChildDomain (1837ms)
  2822. EndReloadAssembly (12581ms)
  2823. LoadAssemblies (5195ms)
  2824. RebuildTransferFunctionScriptingTraits (0ms)
  2825. SetupTypeCache (4793ms)
  2826. ReleaseScriptCaches (2ms)
  2827. RebuildScriptCaches (294ms)
  2828. SetupLoadedEditorAssemblies (4735ms)
  2829. LogAssemblyErrors (0ms)
  2830. InitializePlatformSupportModulesInManaged (51ms)
  2831. SetLoadedEditorAssemblies (9ms)
  2832. RefreshPlugins (4ms)
  2833. BeforeProcessingInitializeOnLoad (691ms)
  2834. ProcessInitializeOnLoadAttributes (3299ms)
  2835. ProcessInitializeOnLoadMethodAttributes (478ms)
  2836. AfterProcessingInitializeOnLoad (202ms)
  2837. EditorAssembliesLoaded (1ms)
  2838. ExecutionOrderSort2 (0ms)
  2839. AwakeInstancesAfterBackupRestoration (46ms)
  2840. Platform modules already initialized, skipping
  2841. Refreshing native plugins compatible for Editor in 7.06 ms, found 7 plugins.
  2842. Preloading 0 native plugins for Editor in 0.00 ms.
  2843. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  2844. System memory in use before: 72.0 MB.
  2845. System memory in use after: 72.1 MB.
  2846. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2065.
  2847. Total: 21.177500 ms (FindLiveObjects: 0.324700 ms CreateObjectMapping: 0.117300 ms MarkObjects: 20.530300 ms DeleteObjects: 0.201000 ms)
  2848. AssetImportParameters requested are different than current active one (requested -> active):
  2849. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2850. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2851. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2852. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2853. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2854. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2855. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2856. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2857. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2858. ========================================================================
  2859. Received Prepare
  2860. Registering precompiled user dll's ...
  2861. Registered in 0.102482 seconds.
  2862. Begin MonoManager ReloadAssembly
  2863. Native extension for WindowsStandalone target not found
  2864. Native extension for WebGL target not found
  2865. Refreshing native plugins compatible for Editor in 7.47 ms, found 7 plugins.
  2866. Preloading 0 native plugins for Editor in 0.00 ms.
  2867. Mono: successfully reloaded assembly
  2868. - Completed reload, in 8.372 seconds
  2869. Domain Reload Profiling:
  2870. ReloadAssembly (8395ms)
  2871. BeginReloadAssembly (1446ms)
  2872. ExecutionOrderSort (0ms)
  2873. DisableScriptedObjects (141ms)
  2874. BackupInstance (0ms)
  2875. ReleaseScriptingObjects (0ms)
  2876. CreateAndSetChildDomain (374ms)
  2877. EndReloadAssembly (6244ms)
  2878. LoadAssemblies (1405ms)
  2879. RebuildTransferFunctionScriptingTraits (0ms)
  2880. SetupTypeCache (2016ms)
  2881. ReleaseScriptCaches (1ms)
  2882. RebuildScriptCaches (111ms)
  2883. SetupLoadedEditorAssemblies (2446ms)
  2884. LogAssemblyErrors (0ms)
  2885. InitializePlatformSupportModulesInManaged (31ms)
  2886. SetLoadedEditorAssemblies (5ms)
  2887. RefreshPlugins (8ms)
  2888. BeforeProcessingInitializeOnLoad (385ms)
  2889. ProcessInitializeOnLoadAttributes (1789ms)
  2890. ProcessInitializeOnLoadMethodAttributes (48ms)
  2891. AfterProcessingInitializeOnLoad (180ms)
  2892. EditorAssembliesLoaded (1ms)
  2893. ExecutionOrderSort2 (0ms)
  2894. AwakeInstancesAfterBackupRestoration (33ms)
  2895. Platform modules already initialized, skipping
  2896. Refreshing native plugins compatible for Editor in 0.87 ms, found 7 plugins.
  2897. Preloading 0 native plugins for Editor in 0.00 ms.
  2898. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  2899. System memory in use before: 72.0 MB.
  2900. System memory in use after: 72.1 MB.
  2901. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2067.
  2902. Total: 11.095300 ms (FindLiveObjects: 0.201100 ms CreateObjectMapping: 0.075200 ms MarkObjects: 10.649800 ms DeleteObjects: 0.166100 ms)
  2903. AssetImportParameters requested are different than current active one (requested -> active):
  2904. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2905. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2906. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2907. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2908. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2909. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2910. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2911. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2912. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2913. ========================================================================
  2914. Received Prepare
  2915. Registering precompiled user dll's ...
  2916. Registered in 0.047184 seconds.
  2917. Begin MonoManager ReloadAssembly
  2918. Native extension for WindowsStandalone target not found
  2919. Native extension for WebGL target not found
  2920. Refreshing native plugins compatible for Editor in 1.29 ms, found 7 plugins.
  2921. Preloading 0 native plugins for Editor in 0.00 ms.
  2922. Mono: successfully reloaded assembly
  2923. - Completed reload, in 9.878 seconds
  2924. Domain Reload Profiling:
  2925. ReloadAssembly (9879ms)
  2926. BeginReloadAssembly (1250ms)
  2927. ExecutionOrderSort (0ms)
  2928. DisableScriptedObjects (78ms)
  2929. BackupInstance (0ms)
  2930. ReleaseScriptingObjects (0ms)
  2931. CreateAndSetChildDomain (132ms)
  2932. EndReloadAssembly (8117ms)
  2933. LoadAssemblies (1144ms)
  2934. RebuildTransferFunctionScriptingTraits (0ms)
  2935. SetupTypeCache (3499ms)
  2936. ReleaseScriptCaches (10ms)
  2937. RebuildScriptCaches (209ms)
  2938. SetupLoadedEditorAssemblies (2708ms)
  2939. LogAssemblyErrors (0ms)
  2940. InitializePlatformSupportModulesInManaged (46ms)
  2941. SetLoadedEditorAssemblies (11ms)
  2942. RefreshPlugins (1ms)
  2943. BeforeProcessingInitializeOnLoad (1175ms)
  2944. ProcessInitializeOnLoadAttributes (1211ms)
  2945. ProcessInitializeOnLoadMethodAttributes (67ms)
  2946. AfterProcessingInitializeOnLoad (195ms)
  2947. EditorAssembliesLoaded (1ms)
  2948. ExecutionOrderSort2 (0ms)
  2949. AwakeInstancesAfterBackupRestoration (47ms)
  2950. Platform modules already initialized, skipping
  2951. Refreshing native plugins compatible for Editor in 1.31 ms, found 7 plugins.
  2952. Preloading 0 native plugins for Editor in 0.00 ms.
  2953. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  2954. System memory in use before: 72.0 MB.
  2955. System memory in use after: 72.1 MB.
  2956. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2069.
  2957. Total: 21.494700 ms (FindLiveObjects: 0.378100 ms CreateObjectMapping: 0.132200 ms MarkObjects: 20.931600 ms DeleteObjects: 0.048600 ms)
  2958. AssetImportParameters requested are different than current active one (requested -> active):
  2959. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2960. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2961. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2962. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2963. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2964. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2965. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2966. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2967. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2968. ========================================================================
  2969. Received Prepare
  2970. Registering precompiled user dll's ...
  2971. Registered in 0.091416 seconds.
  2972. Begin MonoManager ReloadAssembly
  2973. Native extension for WindowsStandalone target not found
  2974. Native extension for WebGL target not found
  2975. Refreshing native plugins compatible for Editor in 1.26 ms, found 7 plugins.
  2976. Preloading 0 native plugins for Editor in 0.00 ms.
  2977. Mono: successfully reloaded assembly
  2978. - Completed reload, in 6.675 seconds
  2979. Domain Reload Profiling:
  2980. ReloadAssembly (6676ms)
  2981. BeginReloadAssembly (522ms)
  2982. ExecutionOrderSort (0ms)
  2983. DisableScriptedObjects (9ms)
  2984. BackupInstance (0ms)
  2985. ReleaseScriptingObjects (0ms)
  2986. CreateAndSetChildDomain (120ms)
  2987. EndReloadAssembly (5643ms)
  2988. LoadAssemblies (476ms)
  2989. RebuildTransferFunctionScriptingTraits (0ms)
  2990. SetupTypeCache (1770ms)
  2991. ReleaseScriptCaches (2ms)
  2992. RebuildScriptCaches (250ms)
  2993. SetupLoadedEditorAssemblies (1826ms)
  2994. LogAssemblyErrors (0ms)
  2995. InitializePlatformSupportModulesInManaged (28ms)
  2996. SetLoadedEditorAssemblies (2ms)
  2997. RefreshPlugins (1ms)
  2998. BeforeProcessingInitializeOnLoad (316ms)
  2999. ProcessInitializeOnLoadAttributes (1219ms)
  3000. ProcessInitializeOnLoadMethodAttributes (67ms)
  3001. AfterProcessingInitializeOnLoad (192ms)
  3002. EditorAssembliesLoaded (1ms)
  3003. ExecutionOrderSort2 (0ms)
  3004. AwakeInstancesAfterBackupRestoration (44ms)
  3005. Platform modules already initialized, skipping
  3006. Refreshing native plugins compatible for Editor in 1.69 ms, found 7 plugins.
  3007. Preloading 0 native plugins for Editor in 0.00 ms.
  3008. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  3009. System memory in use before: 72.0 MB.
  3010. System memory in use after: 72.2 MB.
  3011. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2071.
  3012. Total: 13.493700 ms (FindLiveObjects: 0.271600 ms CreateObjectMapping: 0.312000 ms MarkObjects: 12.848900 ms DeleteObjects: 0.058400 ms)
  3013. AssetImportParameters requested are different than current active one (requested -> active):
  3014. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3015. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3016. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3017. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3018. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3019. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3020. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3021. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3022. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3023. ========================================================================
  3024. Received Import Request.
  3025. Time since last request: 81881.846647 seconds.
  3026. path: Assets/Scenes/door.unity
  3027. artifactKey: Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3028. Start importing Assets/Scenes/door.unity using Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '71d3bce3fd85ccb7f7b5efc657f9443d') in 0.124697 seconds
  3029. Import took 0.163131 seconds .
  3030. ========================================================================
  3031. Received Prepare
  3032. Registering precompiled user dll's ...
  3033. Registered in 0.018428 seconds.
  3034. Begin MonoManager ReloadAssembly
  3035. Native extension for WindowsStandalone target not found
  3036. Native extension for WebGL target not found
  3037. Refreshing native plugins compatible for Editor in 0.87 ms, found 7 plugins.
  3038. Preloading 0 native plugins for Editor in 0.00 ms.
  3039. Mono: successfully reloaded assembly
  3040. - Completed reload, in 4.029 seconds
  3041. Domain Reload Profiling:
  3042. ReloadAssembly (4030ms)
  3043. BeginReloadAssembly (831ms)
  3044. ExecutionOrderSort (0ms)
  3045. DisableScriptedObjects (27ms)
  3046. BackupInstance (0ms)
  3047. ReleaseScriptingObjects (0ms)
  3048. CreateAndSetChildDomain (160ms)
  3049. EndReloadAssembly (2747ms)
  3050. LoadAssemblies (627ms)
  3051. RebuildTransferFunctionScriptingTraits (0ms)
  3052. SetupTypeCache (854ms)
  3053. ReleaseScriptCaches (1ms)
  3054. RebuildScriptCaches (120ms)
  3055. SetupLoadedEditorAssemblies (1002ms)
  3056. LogAssemblyErrors (0ms)
  3057. InitializePlatformSupportModulesInManaged (14ms)
  3058. SetLoadedEditorAssemblies (1ms)
  3059. RefreshPlugins (1ms)
  3060. BeforeProcessingInitializeOnLoad (204ms)
  3061. ProcessInitializeOnLoadAttributes (593ms)
  3062. ProcessInitializeOnLoadMethodAttributes (25ms)
  3063. AfterProcessingInitializeOnLoad (163ms)
  3064. EditorAssembliesLoaded (1ms)
  3065. ExecutionOrderSort2 (1ms)
  3066. AwakeInstancesAfterBackupRestoration (26ms)
  3067. Platform modules already initialized, skipping
  3068. Refreshing native plugins compatible for Editor in 1.05 ms, found 7 plugins.
  3069. Preloading 0 native plugins for Editor in 0.00 ms.
  3070. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  3071. System memory in use before: 72.1 MB.
  3072. System memory in use after: 72.2 MB.
  3073. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2073.
  3074. Total: 7.899800 ms (FindLiveObjects: 0.295500 ms CreateObjectMapping: 0.094600 ms MarkObjects: 7.473700 ms DeleteObjects: 0.033200 ms)
  3075. AssetImportParameters requested are different than current active one (requested -> active):
  3076. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3077. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3078. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3079. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3080. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3081. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3082. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3083. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3084. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3085. ========================================================================
  3086. Received Prepare
  3087. Registering precompiled user dll's ...
  3088. Registered in 0.031916 seconds.
  3089. Begin MonoManager ReloadAssembly
  3090. Native extension for WindowsStandalone target not found
  3091. Native extension for WebGL target not found
  3092. Refreshing native plugins compatible for Editor in 1.52 ms, found 7 plugins.
  3093. Preloading 0 native plugins for Editor in 0.00 ms.
  3094. Mono: successfully reloaded assembly
  3095. - Completed reload, in 6.146 seconds
  3096. Domain Reload Profiling:
  3097. ReloadAssembly (6148ms)
  3098. BeginReloadAssembly (478ms)
  3099. ExecutionOrderSort (0ms)
  3100. DisableScriptedObjects (11ms)
  3101. BackupInstance (0ms)
  3102. ReleaseScriptingObjects (0ms)
  3103. CreateAndSetChildDomain (106ms)
  3104. EndReloadAssembly (5298ms)
  3105. LoadAssemblies (488ms)
  3106. RebuildTransferFunctionScriptingTraits (0ms)
  3107. SetupTypeCache (3204ms)
  3108. ReleaseScriptCaches (1ms)
  3109. RebuildScriptCaches (184ms)
  3110. SetupLoadedEditorAssemblies (1180ms)
  3111. LogAssemblyErrors (0ms)
  3112. InitializePlatformSupportModulesInManaged (14ms)
  3113. SetLoadedEditorAssemblies (4ms)
  3114. RefreshPlugins (2ms)
  3115. BeforeProcessingInitializeOnLoad (267ms)
  3116. ProcessInitializeOnLoadAttributes (770ms)
  3117. ProcessInitializeOnLoadMethodAttributes (27ms)
  3118. AfterProcessingInitializeOnLoad (96ms)
  3119. EditorAssembliesLoaded (1ms)
  3120. ExecutionOrderSort2 (0ms)
  3121. AwakeInstancesAfterBackupRestoration (25ms)
  3122. Platform modules already initialized, skipping
  3123. Refreshing native plugins compatible for Editor in 1.88 ms, found 7 plugins.
  3124. Preloading 0 native plugins for Editor in 0.00 ms.
  3125. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  3126. System memory in use before: 72.1 MB.
  3127. System memory in use after: 72.2 MB.
  3128. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2075.
  3129. Total: 8.215200 ms (FindLiveObjects: 0.268700 ms CreateObjectMapping: 0.094700 ms MarkObjects: 7.811300 ms DeleteObjects: 0.037700 ms)
  3130. AssetImportParameters requested are different than current active one (requested -> active):
  3131. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3132. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3133. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3134. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3135. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3136. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3137. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3138. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3139. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3140. ========================================================================
  3141. Received Import Request.
  3142. Time since last request: 804.031526 seconds.
  3143. path: Assets/Scenes/curtains.unity
  3144. artifactKey: Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3145. Start importing Assets/Scenes/curtains.unity using Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3fe022c7a4712f3d1ead87a4274b2b4d') in 0.080816 seconds
  3146. Import took 0.116091 seconds .
  3147. ========================================================================
  3148. Received Import Request.
  3149. Time since last request: 21.403162 seconds.
  3150. path: Assets/Scenes/door.unity
  3151. artifactKey: Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3152. Start importing Assets/Scenes/door.unity using Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1b836bb9f0b00291a9212ba350ef1ec2') in 0.018420 seconds
  3153. Import took 0.043827 seconds .
  3154. ========================================================================
  3155. Received Import Request.
  3156. Time since last request: 37.195341 seconds.
  3157. path: Assets/Scenes/door.unity
  3158. artifactKey: Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3159. Start importing Assets/Scenes/door.unity using Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3e9433850c99065d8b6dec862cff6f2d') in 0.062212 seconds
  3160. Import took 0.100559 seconds .
  3161. ========================================================================
  3162. Received Import Request.
  3163. Time since last request: 102.364006 seconds.
  3164. path: Assets/Scenes/curtains.unity
  3165. artifactKey: Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3166. Start importing Assets/Scenes/curtains.unity using Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ffedb71fc4cbd50291a09d7a6fbe4478') in 0.030436 seconds
  3167. Import took 0.066574 seconds .
  3168. ========================================================================
  3169. Received Prepare
  3170. Registering precompiled user dll's ...
  3171. Registered in 0.052680 seconds.
  3172. Begin MonoManager ReloadAssembly
  3173. Native extension for WindowsStandalone target not found
  3174. Native extension for WebGL target not found
  3175. Refreshing native plugins compatible for Editor in 3.93 ms, found 7 plugins.
  3176. Preloading 0 native plugins for Editor in 0.00 ms.
  3177. Mono: successfully reloaded assembly
  3178. - Completed reload, in 11.291 seconds
  3179. Domain Reload Profiling:
  3180. ReloadAssembly (11293ms)
  3181. BeginReloadAssembly (773ms)
  3182. ExecutionOrderSort (0ms)
  3183. DisableScriptedObjects (27ms)
  3184. BackupInstance (0ms)
  3185. ReleaseScriptingObjects (0ms)
  3186. CreateAndSetChildDomain (126ms)
  3187. EndReloadAssembly (9986ms)
  3188. LoadAssemblies (778ms)
  3189. RebuildTransferFunctionScriptingTraits (0ms)
  3190. SetupTypeCache (3872ms)
  3191. ReleaseScriptCaches (1ms)
  3192. RebuildScriptCaches (202ms)
  3193. SetupLoadedEditorAssemblies (2380ms)
  3194. LogAssemblyErrors (0ms)
  3195. InitializePlatformSupportModulesInManaged (47ms)
  3196. SetLoadedEditorAssemblies (13ms)
  3197. RefreshPlugins (4ms)
  3198. BeforeProcessingInitializeOnLoad (421ms)
  3199. ProcessInitializeOnLoadAttributes (1227ms)
  3200. ProcessInitializeOnLoadMethodAttributes (51ms)
  3201. AfterProcessingInitializeOnLoad (615ms)
  3202. EditorAssembliesLoaded (1ms)
  3203. ExecutionOrderSort2 (0ms)
  3204. AwakeInstancesAfterBackupRestoration (1987ms)
  3205. Platform modules already initialized, skipping
  3206. Refreshing native plugins compatible for Editor in 0.89 ms, found 7 plugins.
  3207. Preloading 0 native plugins for Editor in 0.00 ms.
  3208. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  3209. System memory in use before: 72.1 MB.
  3210. System memory in use after: 72.2 MB.
  3211. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2077.
  3212. Total: 4.961600 ms (FindLiveObjects: 0.309800 ms CreateObjectMapping: 0.114700 ms MarkObjects: 4.508700 ms DeleteObjects: 0.026300 ms)
  3213. AssetImportParameters requested are different than current active one (requested -> active):
  3214. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3215. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3216. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3217. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3218. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3219. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3220. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3221. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3222. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3223. ========================================================================
  3224. Received Prepare
  3225. Registering precompiled user dll's ...
  3226. Registered in 0.043526 seconds.
  3227. Begin MonoManager ReloadAssembly
  3228. Native extension for WindowsStandalone target not found
  3229. Native extension for WebGL target not found
  3230. Refreshing native plugins compatible for Editor in 0.88 ms, found 7 plugins.
  3231. Preloading 0 native plugins for Editor in 0.00 ms.
  3232. Mono: successfully reloaded assembly
  3233. - Completed reload, in 8.432 seconds
  3234. Domain Reload Profiling:
  3235. ReloadAssembly (8433ms)
  3236. BeginReloadAssembly (669ms)
  3237. ExecutionOrderSort (0ms)
  3238. DisableScriptedObjects (10ms)
  3239. BackupInstance (0ms)
  3240. ReleaseScriptingObjects (0ms)
  3241. CreateAndSetChildDomain (57ms)
  3242. EndReloadAssembly (7338ms)
  3243. LoadAssemblies (775ms)
  3244. RebuildTransferFunctionScriptingTraits (0ms)
  3245. SetupTypeCache (1738ms)
  3246. ReleaseScriptCaches (1ms)
  3247. RebuildScriptCaches (152ms)
  3248. SetupLoadedEditorAssemblies (1647ms)
  3249. LogAssemblyErrors (0ms)
  3250. InitializePlatformSupportModulesInManaged (52ms)
  3251. SetLoadedEditorAssemblies (3ms)
  3252. RefreshPlugins (1ms)
  3253. BeforeProcessingInitializeOnLoad (564ms)
  3254. ProcessInitializeOnLoadAttributes (931ms)
  3255. ProcessInitializeOnLoadMethodAttributes (19ms)
  3256. AfterProcessingInitializeOnLoad (77ms)
  3257. EditorAssembliesLoaded (1ms)
  3258. ExecutionOrderSort2 (0ms)
  3259. AwakeInstancesAfterBackupRestoration (16ms)
  3260. Platform modules already initialized, skipping
  3261. Refreshing native plugins compatible for Editor in 0.81 ms, found 7 plugins.
  3262. Preloading 0 native plugins for Editor in 0.00 ms.
  3263. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  3264. System memory in use before: 72.1 MB.
  3265. System memory in use after: 72.2 MB.
  3266. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2079.
  3267. Total: 5.924700 ms (FindLiveObjects: 0.196900 ms CreateObjectMapping: 0.082600 ms MarkObjects: 5.611900 ms DeleteObjects: 0.031400 ms)
  3268. AssetImportParameters requested are different than current active one (requested -> active):
  3269. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3270. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3271. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3272. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3273. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3274. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3275. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3276. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3277. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3278. ========================================================================
  3279. Received Prepare
  3280. Registering precompiled user dll's ...
  3281. Registered in 0.015025 seconds.
  3282. Begin MonoManager ReloadAssembly
  3283. Native extension for WindowsStandalone target not found
  3284. Native extension for WebGL target not found
  3285. Refreshing native plugins compatible for Editor in 1.01 ms, found 7 plugins.
  3286. Preloading 0 native plugins for Editor in 0.00 ms.
  3287. Mono: successfully reloaded assembly
  3288. - Completed reload, in 6.001 seconds
  3289. Domain Reload Profiling:
  3290. ReloadAssembly (6003ms)
  3291. BeginReloadAssembly (512ms)
  3292. ExecutionOrderSort (0ms)
  3293. DisableScriptedObjects (34ms)
  3294. BackupInstance (0ms)
  3295. ReleaseScriptingObjects (0ms)
  3296. CreateAndSetChildDomain (121ms)
  3297. EndReloadAssembly (5158ms)
  3298. LoadAssemblies (390ms)
  3299. RebuildTransferFunctionScriptingTraits (0ms)
  3300. SetupTypeCache (833ms)
  3301. ReleaseScriptCaches (1ms)
  3302. RebuildScriptCaches (104ms)
  3303. SetupLoadedEditorAssemblies (3617ms)
  3304. LogAssemblyErrors (0ms)
  3305. InitializePlatformSupportModulesInManaged (17ms)
  3306. SetLoadedEditorAssemblies (1ms)
  3307. RefreshPlugins (1ms)
  3308. BeforeProcessingInitializeOnLoad (230ms)
  3309. ProcessInitializeOnLoadAttributes (772ms)
  3310. ProcessInitializeOnLoadMethodAttributes (586ms)
  3311. AfterProcessingInitializeOnLoad (2010ms)
  3312. EditorAssembliesLoaded (0ms)
  3313. ExecutionOrderSort2 (0ms)
  3314. AwakeInstancesAfterBackupRestoration (23ms)
  3315. Platform modules already initialized, skipping
  3316. Refreshing native plugins compatible for Editor in 2.26 ms, found 7 plugins.
  3317. Preloading 0 native plugins for Editor in 0.00 ms.
  3318. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  3319. System memory in use before: 72.1 MB.
  3320. System memory in use after: 72.2 MB.
  3321. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2081.
  3322. Total: 88.959500 ms (FindLiveObjects: 0.281300 ms CreateObjectMapping: 0.107200 ms MarkObjects: 88.528300 ms DeleteObjects: 0.039500 ms)
  3323. AssetImportParameters requested are different than current active one (requested -> active):
  3324. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3325. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3326. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3327. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3328. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3329. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3330. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3331. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3332. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3333. ========================================================================
  3334. Received Import Request.
  3335. Time since last request: 246.174974 seconds.
  3336. path: Assets/Scenes/door.unity
  3337. artifactKey: Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3338. Start importing Assets/Scenes/door.unity using Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f4dd3c68dbae5ab5076a194435a89b12') in 0.036964 seconds
  3339. Import took 0.058276 seconds .
  3340. ========================================================================
  3341. Received Prepare
  3342. Registering precompiled user dll's ...
  3343. Registered in 0.016414 seconds.
  3344. Begin MonoManager ReloadAssembly
  3345. Native extension for WindowsStandalone target not found
  3346. Native extension for WebGL target not found
  3347. Refreshing native plugins compatible for Editor in 1.08 ms, found 7 plugins.
  3348. Preloading 0 native plugins for Editor in 0.00 ms.
  3349. Mono: successfully reloaded assembly
  3350. - Completed reload, in 6.425 seconds
  3351. Domain Reload Profiling:
  3352. ReloadAssembly (6426ms)
  3353. BeginReloadAssembly (483ms)
  3354. ExecutionOrderSort (0ms)
  3355. DisableScriptedObjects (15ms)
  3356. BackupInstance (0ms)
  3357. ReleaseScriptingObjects (0ms)
  3358. CreateAndSetChildDomain (66ms)
  3359. EndReloadAssembly (5597ms)
  3360. LoadAssemblies (406ms)
  3361. RebuildTransferFunctionScriptingTraits (0ms)
  3362. SetupTypeCache (3488ms)
  3363. ReleaseScriptCaches (1ms)
  3364. RebuildScriptCaches (133ms)
  3365. SetupLoadedEditorAssemblies (1215ms)
  3366. LogAssemblyErrors (0ms)
  3367. InitializePlatformSupportModulesInManaged (21ms)
  3368. SetLoadedEditorAssemblies (3ms)
  3369. RefreshPlugins (1ms)
  3370. BeforeProcessingInitializeOnLoad (251ms)
  3371. ProcessInitializeOnLoadAttributes (740ms)
  3372. ProcessInitializeOnLoadMethodAttributes (30ms)
  3373. AfterProcessingInitializeOnLoad (166ms)
  3374. EditorAssembliesLoaded (0ms)
  3375. ExecutionOrderSort2 (0ms)
  3376. AwakeInstancesAfterBackupRestoration (19ms)
  3377. Platform modules already initialized, skipping
  3378. Refreshing native plugins compatible for Editor in 0.82 ms, found 7 plugins.
  3379. Preloading 0 native plugins for Editor in 0.00 ms.
  3380. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  3381. System memory in use before: 72.1 MB.
  3382. System memory in use after: 72.2 MB.
  3383. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2083.
  3384. Total: 5.218400 ms (FindLiveObjects: 0.305600 ms CreateObjectMapping: 0.110200 ms MarkObjects: 4.763800 ms DeleteObjects: 0.036700 ms)
  3385. AssetImportParameters requested are different than current active one (requested -> active):
  3386. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3387. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3388. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3389. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3390. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3391. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3392. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3393. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3394. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3395. ========================================================================
  3396. Received Import Request.
  3397. Time since last request: 60.107510 seconds.
  3398. path: Assets/Scenes/curtains.unity
  3399. artifactKey: Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3400. Start importing Assets/Scenes/curtains.unity using Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e75d6d96e6b37f57967774dba7173c98') in 0.031414 seconds
  3401. Import took 0.054127 seconds .
  3402. ========================================================================
  3403. Received Import Request.
  3404. Time since last request: 50.402353 seconds.
  3405. path: Assets/UCLAGameLab/Materials/j1.material.mat
  3406. artifactKey: Guid(94309788884baa34a9c4e261d18a468c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3407. Start importing Assets/UCLAGameLab/Materials/j1.material.mat using Guid(94309788884baa34a9c4e261d18a468c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '224461291d9f204abd25b4dd33e38b1f') in 4.774199 seconds
  3408. Import took 4.806948 seconds .
  3409. ========================================================================
  3410. Received Import Request.
  3411. Time since last request: 0.000230 seconds.
  3412. path: Assets/UCLAGameLab/Materials/j22.material.mat
  3413. artifactKey: Guid(947f283d84a1bd141a376d392ad57f4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3414. Start importing Assets/UCLAGameLab/Materials/j22.material.mat using Guid(947f283d84a1bd141a376d392ad57f4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c596208a5608bc3bec89623049363f7f') in 0.186951 seconds
  3415. Import took 0.241846 seconds .
  3416. ========================================================================
  3417. Received Import Request.
  3418. Time since last request: 0.000349 seconds.
  3419. path: Assets/UCLAGameLab/Materials/j21.material.mat
  3420. artifactKey: Guid(1f9673d30929b63418b26e68af406738) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3421. Start importing Assets/UCLAGameLab/Materials/j21.material.mat using Guid(1f9673d30929b63418b26e68af406738) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '404c575a5a272617ed0a39d51d622d85') in 0.086355 seconds
  3422. Import took 0.113146 seconds .
  3423. ========================================================================
  3424. Received Import Request.
  3425. Time since last request: 0.000468 seconds.
  3426. path: Assets/UCLAGameLab/Materials/light.material.mat
  3427. artifactKey: Guid(38cc4f7384e5f754f83ab765632cec97) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3428. Start importing Assets/UCLAGameLab/Materials/light.material.mat using Guid(38cc4f7384e5f754f83ab765632cec97) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '98adbc296fbb2a06940a135c0feb6c81') in 0.082843 seconds
  3429. Import took 0.087467 seconds .
  3430. ========================================================================
  3431. Received Import Request.
  3432. Time since last request: 0.001781 seconds.
  3433. path: Assets/UCLAGameLab/Materials/j2.material.mat
  3434. artifactKey: Guid(21c99f94d03219e41af987bad8ef9b04) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3435. Start importing Assets/UCLAGameLab/Materials/j2.material.mat using Guid(21c99f94d03219e41af987bad8ef9b04) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9e606f5422731c71c396dd4edfb645c9') in 0.051311 seconds
  3436. Import took 0.090460 seconds .
  3437. ========================================================================
  3438. Received Import Request.
  3439. Time since last request: 28.274941 seconds.
  3440. path: Assets/Skybox/HDRI_Training_Stage_MAT.mat
  3441. artifactKey: Guid(080351b8a7aaef748bb430ed2e1b224a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3442. Start importing Assets/Skybox/HDRI_Training_Stage_MAT.mat using Guid(080351b8a7aaef748bb430ed2e1b224a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ca5d2948f26b5c52bb1020434363d083') in 0.326558 seconds
  3443. Import took 0.382595 seconds .
  3444. ========================================================================
  3445. Received Import Request.
  3446. Time since last request: 5.748044 seconds.
  3447. path: Assets/Scenes/door.unity
  3448. artifactKey: Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3449. Start importing Assets/Scenes/door.unity using Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f1588ac63377b6dfb400dfc3f147448d') in 0.027613 seconds
  3450. Import took 0.053296 seconds .
  3451. ========================================================================
  3452. Received Import Request.
  3453. Time since last request: 83.021444 seconds.
  3454. path: Assets/font/MSYHL.TTC
  3455. artifactKey: Guid(baba003c233d6d74194523c0173b6f87) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3456. Start importing Assets/font/MSYHL.TTC using Guid(baba003c233d6d74194523c0173b6f87) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '101ca50dfe88247a6752e9e9038b2164') in 0.511044 seconds
  3457. Import took 0.546469 seconds .
  3458. ========================================================================
  3459. Received Prepare
  3460. Registering precompiled user dll's ...
  3461. Registered in 0.022483 seconds.
  3462. Begin MonoManager ReloadAssembly
  3463. Native extension for WindowsStandalone target not found
  3464. Native extension for WebGL target not found
  3465. Refreshing native plugins compatible for Editor in 1.01 ms, found 7 plugins.
  3466. Preloading 0 native plugins for Editor in 0.00 ms.
  3467. Mono: successfully reloaded assembly
  3468. - Completed reload, in 10.503 seconds
  3469. Domain Reload Profiling:
  3470. ReloadAssembly (10507ms)
  3471. BeginReloadAssembly (937ms)
  3472. ExecutionOrderSort (0ms)
  3473. DisableScriptedObjects (19ms)
  3474. BackupInstance (0ms)
  3475. ReleaseScriptingObjects (0ms)
  3476. CreateAndSetChildDomain (132ms)
  3477. EndReloadAssembly (3369ms)
  3478. LoadAssemblies (840ms)
  3479. RebuildTransferFunctionScriptingTraits (0ms)
  3480. SetupTypeCache (1251ms)
  3481. ReleaseScriptCaches (2ms)
  3482. RebuildScriptCaches (165ms)
  3483. SetupLoadedEditorAssemblies (1058ms)
  3484. LogAssemblyErrors (0ms)
  3485. InitializePlatformSupportModulesInManaged (17ms)
  3486. SetLoadedEditorAssemblies (2ms)
  3487. RefreshPlugins (1ms)
  3488. BeforeProcessingInitializeOnLoad (256ms)
  3489. ProcessInitializeOnLoadAttributes (662ms)
  3490. ProcessInitializeOnLoadMethodAttributes (30ms)
  3491. AfterProcessingInitializeOnLoad (91ms)
  3492. EditorAssembliesLoaded (1ms)
  3493. ExecutionOrderSort2 (0ms)
  3494. AwakeInstancesAfterBackupRestoration (23ms)
  3495. Platform modules already initialized, skipping
  3496. Refreshing native plugins compatible for Editor in 1.32 ms, found 7 plugins.
  3497. Preloading 0 native plugins for Editor in 0.00 ms.
  3498. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  3499. System memory in use before: 75.5 MB.
  3500. System memory in use after: 75.6 MB.
  3501. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2129.
  3502. Total: 3.914000 ms (FindLiveObjects: 0.370400 ms CreateObjectMapping: 0.093900 ms MarkObjects: 3.416600 ms DeleteObjects: 0.031300 ms)
  3503. AssetImportParameters requested are different than current active one (requested -> active):
  3504. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3505. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3506. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3507. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3508. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3509. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3510. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3511. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3512. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3513. ========================================================================
  3514. Received Prepare
  3515. Registering precompiled user dll's ...
  3516. Registered in 0.056571 seconds.
  3517. Begin MonoManager ReloadAssembly
  3518. Native extension for WindowsStandalone target not found
  3519. Native extension for WebGL target not found
  3520. Refreshing native plugins compatible for Editor in 2.05 ms, found 7 plugins.
  3521. Preloading 0 native plugins for Editor in 0.00 ms.
  3522. Mono: successfully reloaded assembly
  3523. - Completed reload, in 7.508 seconds
  3524. Domain Reload Profiling:
  3525. ReloadAssembly (7509ms)
  3526. BeginReloadAssembly (483ms)
  3527. ExecutionOrderSort (0ms)
  3528. DisableScriptedObjects (29ms)
  3529. BackupInstance (0ms)
  3530. ReleaseScriptingObjects (0ms)
  3531. CreateAndSetChildDomain (74ms)
  3532. EndReloadAssembly (6656ms)
  3533. LoadAssemblies (586ms)
  3534. RebuildTransferFunctionScriptingTraits (0ms)
  3535. SetupTypeCache (1407ms)
  3536. ReleaseScriptCaches (1ms)
  3537. RebuildScriptCaches (2834ms)
  3538. SetupLoadedEditorAssemblies (1330ms)
  3539. LogAssemblyErrors (0ms)
  3540. InitializePlatformSupportModulesInManaged (19ms)
  3541. SetLoadedEditorAssemblies (2ms)
  3542. RefreshPlugins (2ms)
  3543. BeforeProcessingInitializeOnLoad (328ms)
  3544. ProcessInitializeOnLoadAttributes (816ms)
  3545. ProcessInitializeOnLoadMethodAttributes (45ms)
  3546. AfterProcessingInitializeOnLoad (118ms)
  3547. EditorAssembliesLoaded (0ms)
  3548. ExecutionOrderSort2 (0ms)
  3549. AwakeInstancesAfterBackupRestoration (26ms)
  3550. Platform modules already initialized, skipping
  3551. Refreshing native plugins compatible for Editor in 1.61 ms, found 7 plugins.
  3552. Preloading 0 native plugins for Editor in 0.00 ms.
  3553. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  3554. System memory in use before: 75.5 MB.
  3555. System memory in use after: 75.6 MB.
  3556. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2131.
  3557. Total: 8.046900 ms (FindLiveObjects: 0.293500 ms CreateObjectMapping: 0.096000 ms MarkObjects: 7.619100 ms DeleteObjects: 0.035500 ms)
  3558. AssetImportParameters requested are different than current active one (requested -> active):
  3559. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3560. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3561. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3562. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3563. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3564. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3565. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3566. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3567. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3568. ========================================================================
  3569. Received Prepare
  3570. Registering precompiled user dll's ...
  3571. Registered in 0.011592 seconds.
  3572. Begin MonoManager ReloadAssembly
  3573. Native extension for WindowsStandalone target not found
  3574. Native extension for WebGL target not found
  3575. Refreshing native plugins compatible for Editor in 1.79 ms, found 7 plugins.
  3576. Preloading 0 native plugins for Editor in 0.00 ms.
  3577. Mono: successfully reloaded assembly
  3578. - Completed reload, in 8.234 seconds
  3579. Domain Reload Profiling:
  3580. ReloadAssembly (8235ms)
  3581. BeginReloadAssembly (362ms)
  3582. ExecutionOrderSort (0ms)
  3583. DisableScriptedObjects (12ms)
  3584. BackupInstance (0ms)
  3585. ReleaseScriptingObjects (0ms)
  3586. CreateAndSetChildDomain (63ms)
  3587. EndReloadAssembly (7622ms)
  3588. LoadAssemblies (330ms)
  3589. RebuildTransferFunctionScriptingTraits (0ms)
  3590. SetupTypeCache (1357ms)
  3591. ReleaseScriptCaches (1ms)
  3592. RebuildScriptCaches (133ms)
  3593. SetupLoadedEditorAssemblies (4970ms)
  3594. LogAssemblyErrors (0ms)
  3595. InitializePlatformSupportModulesInManaged (26ms)
  3596. SetLoadedEditorAssemblies (1ms)
  3597. RefreshPlugins (2ms)
  3598. BeforeProcessingInitializeOnLoad (287ms)
  3599. ProcessInitializeOnLoadAttributes (3847ms)
  3600. ProcessInitializeOnLoadMethodAttributes (202ms)
  3601. AfterProcessingInitializeOnLoad (602ms)
  3602. EditorAssembliesLoaded (2ms)
  3603. ExecutionOrderSort2 (0ms)
  3604. AwakeInstancesAfterBackupRestoration (157ms)
  3605. Platform modules already initialized, skipping
  3606. Refreshing native plugins compatible for Editor in 1.43 ms, found 7 plugins.
  3607. Preloading 0 native plugins for Editor in 0.00 ms.
  3608. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  3609. System memory in use before: 75.5 MB.
  3610. System memory in use after: 75.7 MB.
  3611. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2133.
  3612. Total: 10.050000 ms (FindLiveObjects: 1.169000 ms CreateObjectMapping: 0.338000 ms MarkObjects: 8.484600 ms DeleteObjects: 0.048000 ms)
  3613. AssetImportParameters requested are different than current active one (requested -> active):
  3614. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3615. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3616. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3617. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3618. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3619. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3620. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3621. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3622. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3623. ========================================================================
  3624. Received Prepare
  3625. Registering precompiled user dll's ...
  3626. Registered in 0.031143 seconds.
  3627. Begin MonoManager ReloadAssembly
  3628. Native extension for WindowsStandalone target not found
  3629. Native extension for WebGL target not found
  3630. Refreshing native plugins compatible for Editor in 2.25 ms, found 7 plugins.
  3631. Preloading 0 native plugins for Editor in 0.00 ms.
  3632. Mono: successfully reloaded assembly
  3633. - Completed reload, in 4.984 seconds
  3634. Domain Reload Profiling:
  3635. ReloadAssembly (4985ms)
  3636. BeginReloadAssembly (304ms)
  3637. ExecutionOrderSort (0ms)
  3638. DisableScriptedObjects (10ms)
  3639. BackupInstance (0ms)
  3640. ReleaseScriptingObjects (0ms)
  3641. CreateAndSetChildDomain (64ms)
  3642. EndReloadAssembly (4470ms)
  3643. LoadAssemblies (313ms)
  3644. RebuildTransferFunctionScriptingTraits (0ms)
  3645. SetupTypeCache (818ms)
  3646. ReleaseScriptCaches (6ms)
  3647. RebuildScriptCaches (1571ms)
  3648. SetupLoadedEditorAssemblies (1255ms)
  3649. LogAssemblyErrors (0ms)
  3650. InitializePlatformSupportModulesInManaged (232ms)
  3651. SetLoadedEditorAssemblies (1ms)
  3652. RefreshPlugins (7ms)
  3653. BeforeProcessingInitializeOnLoad (435ms)
  3654. ProcessInitializeOnLoadAttributes (496ms)
  3655. ProcessInitializeOnLoadMethodAttributes (19ms)
  3656. AfterProcessingInitializeOnLoad (65ms)
  3657. EditorAssembliesLoaded (1ms)
  3658. ExecutionOrderSort2 (0ms)
  3659. AwakeInstancesAfterBackupRestoration (14ms)
  3660. Platform modules already initialized, skipping
  3661. Refreshing native plugins compatible for Editor in 0.85 ms, found 7 plugins.
  3662. Preloading 0 native plugins for Editor in 0.00 ms.
  3663. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  3664. System memory in use before: 75.5 MB.
  3665. System memory in use after: 75.7 MB.
  3666. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2135.
  3667. Total: 5.628200 ms (FindLiveObjects: 0.243200 ms CreateObjectMapping: 0.088300 ms MarkObjects: 5.256200 ms DeleteObjects: 0.038300 ms)
  3668. AssetImportParameters requested are different than current active one (requested -> active):
  3669. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3670. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3671. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3672. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3673. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3674. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3675. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3676. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3677. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3678. ========================================================================
  3679. Received Prepare
  3680. Registering precompiled user dll's ...
  3681. Registered in 0.112865 seconds.
  3682. Begin MonoManager ReloadAssembly
  3683. Native extension for WindowsStandalone target not found
  3684. Native extension for WebGL target not found
  3685. Refreshing native plugins compatible for Editor in 8.58 ms, found 7 plugins.
  3686. Preloading 0 native plugins for Editor in 0.00 ms.
  3687. Mono: successfully reloaded assembly
  3688. - Completed reload, in 13.022 seconds
  3689. Domain Reload Profiling:
  3690. ReloadAssembly (13026ms)
  3691. BeginReloadAssembly (1038ms)
  3692. ExecutionOrderSort (0ms)
  3693. DisableScriptedObjects (22ms)
  3694. BackupInstance (0ms)
  3695. ReleaseScriptingObjects (0ms)
  3696. CreateAndSetChildDomain (201ms)
  3697. EndReloadAssembly (8728ms)
  3698. LoadAssemblies (820ms)
  3699. RebuildTransferFunctionScriptingTraits (0ms)
  3700. SetupTypeCache (1617ms)
  3701. ReleaseScriptCaches (1ms)
  3702. RebuildScriptCaches (166ms)
  3703. SetupLoadedEditorAssemblies (5341ms)
  3704. LogAssemblyErrors (0ms)
  3705. InitializePlatformSupportModulesInManaged (232ms)
  3706. SetLoadedEditorAssemblies (9ms)
  3707. RefreshPlugins (9ms)
  3708. BeforeProcessingInitializeOnLoad (550ms)
  3709. ProcessInitializeOnLoadAttributes (3980ms)
  3710. ProcessInitializeOnLoadMethodAttributes (118ms)
  3711. AfterProcessingInitializeOnLoad (442ms)
  3712. EditorAssembliesLoaded (1ms)
  3713. ExecutionOrderSort2 (0ms)
  3714. AwakeInstancesAfterBackupRestoration (65ms)
  3715. Platform modules already initialized, skipping
  3716. Refreshing native plugins compatible for Editor in 1.24 ms, found 7 plugins.
  3717. Preloading 0 native plugins for Editor in 0.00 ms.
  3718. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  3719. System memory in use before: 75.5 MB.
  3720. System memory in use after: 75.7 MB.
  3721. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2137.
  3722. Total: 6.298400 ms (FindLiveObjects: 0.607500 ms CreateObjectMapping: 0.808400 ms MarkObjects: 4.845000 ms DeleteObjects: 0.034600 ms)
  3723. AssetImportParameters requested are different than current active one (requested -> active):
  3724. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3725. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3726. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3727. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3728. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3729. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3730. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3731. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3732. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3733. ========================================================================
  3734. Received Prepare
  3735. Registering precompiled user dll's ...
  3736. Registered in 0.042065 seconds.
  3737. Begin MonoManager ReloadAssembly
  3738. Native extension for WindowsStandalone target not found
  3739. Native extension for WebGL target not found
  3740. Refreshing native plugins compatible for Editor in 2.34 ms, found 7 plugins.
  3741. Preloading 0 native plugins for Editor in 0.00 ms.
  3742. Mono: successfully reloaded assembly
  3743. - Completed reload, in 14.167 seconds
  3744. Domain Reload Profiling:
  3745. ReloadAssembly (14169ms)
  3746. BeginReloadAssembly (3447ms)
  3747. ExecutionOrderSort (0ms)
  3748. DisableScriptedObjects (48ms)
  3749. BackupInstance (0ms)
  3750. ReleaseScriptingObjects (0ms)
  3751. CreateAndSetChildDomain (166ms)
  3752. EndReloadAssembly (9621ms)
  3753. LoadAssemblies (3552ms)
  3754. RebuildTransferFunctionScriptingTraits (0ms)
  3755. SetupTypeCache (2745ms)
  3756. ReleaseScriptCaches (17ms)
  3757. RebuildScriptCaches (328ms)
  3758. SetupLoadedEditorAssemblies (2021ms)
  3759. LogAssemblyErrors (0ms)
  3760. InitializePlatformSupportModulesInManaged (45ms)
  3761. SetLoadedEditorAssemblies (4ms)
  3762. RefreshPlugins (3ms)
  3763. BeforeProcessingInitializeOnLoad (472ms)
  3764. ProcessInitializeOnLoadAttributes (1162ms)
  3765. ProcessInitializeOnLoadMethodAttributes (92ms)
  3766. AfterProcessingInitializeOnLoad (236ms)
  3767. EditorAssembliesLoaded (9ms)
  3768. ExecutionOrderSort2 (0ms)
  3769. AwakeInstancesAfterBackupRestoration (35ms)
  3770. Platform modules already initialized, skipping
  3771. Refreshing native plugins compatible for Editor in 1.47 ms, found 7 plugins.
  3772. Preloading 0 native plugins for Editor in 0.00 ms.
  3773. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  3774. System memory in use before: 75.6 MB.
  3775. System memory in use after: 75.7 MB.
  3776. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2139.
  3777. Total: 9.232600 ms (FindLiveObjects: 0.331000 ms CreateObjectMapping: 0.112000 ms MarkObjects: 8.671200 ms DeleteObjects: 0.049200 ms)
  3778. AssetImportParameters requested are different than current active one (requested -> active):
  3779. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3780. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3781. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3782. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3783. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3784. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3785. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3786. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3787. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3788. ========================================================================
  3789. Received Import Request.
  3790. Time since last request: 892.242813 seconds.
  3791. path: Assets/Scenes/curtains.unity
  3792. artifactKey: Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3793. Start importing Assets/Scenes/curtains.unity using Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '118faf718c004c1a30f6909ae618d392') in 0.485544 seconds
  3794. Import took 0.540003 seconds .
  3795. ========================================================================
  3796. Received Import Request.
  3797. Time since last request: 21.354477 seconds.
  3798. path: Assets/Scenes/light.unity
  3799. artifactKey: Guid(268d2d9c1542e7843867b525e8b8bf90) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3800. Start importing Assets/Scenes/light.unity using Guid(268d2d9c1542e7843867b525e8b8bf90) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a3a403658ae842e319fdaf0dbc663a05') in 0.032641 seconds
  3801. Import took 0.059643 seconds .
  3802. ========================================================================
  3803. Received Import Request.
  3804. Time since last request: 2.286930 seconds.
  3805. path: Assets/Scenes/curtains.unity
  3806. artifactKey: Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3807. Start importing Assets/Scenes/curtains.unity using Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e0bf8c029fcb28cccf671c4bb8382fe7') in 0.034219 seconds
  3808. Import took 0.048087 seconds .
  3809. ========================================================================
  3810. Received Import Request.
  3811. Time since last request: 39.261056 seconds.
  3812. path: Assets/Scenes/door.unity
  3813. artifactKey: Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3814. Start importing Assets/Scenes/door.unity using Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7ea6f029c505cab14889abd37a2eb23c') in 0.040920 seconds
  3815. Import took 0.059812 seconds .
  3816. ========================================================================
  3817. Received Import Request.
  3818. Time since last request: 23.848881 seconds.
  3819. path: Assets/Scenes/door.unity
  3820. artifactKey: Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3821. Start importing Assets/Scenes/door.unity using Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '40c5c36cd0b325a722cc2f4cf4f16ae3') in 0.020248 seconds
  3822. Import took 0.047611 seconds .
  3823. ========================================================================
  3824. Received Import Request.
  3825. Time since last request: 9.694430 seconds.
  3826. path: Assets/Scenes/light.unity
  3827. artifactKey: Guid(268d2d9c1542e7843867b525e8b8bf90) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3828. Start importing Assets/Scenes/light.unity using Guid(268d2d9c1542e7843867b525e8b8bf90) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '19de474ccabd64ae593b140fb1535183') in 0.132972 seconds
  3829. Import took 0.189606 seconds .
  3830. ========================================================================
  3831. Received Import Request.
  3832. Time since last request: 102.413872 seconds.
  3833. path: Assets/Scenes/pay.unity
  3834. artifactKey: Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3835. Start importing Assets/Scenes/pay.unity using Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b7c1d429a9c49bb9a4f79c0eec3aff08') in 0.034290 seconds
  3836. Import took 0.062460 seconds .
  3837. ========================================================================
  3838. Received Import Request.
  3839. Time since last request: 56.950834 seconds.
  3840. path: Assets/Scenes/police.unity
  3841. artifactKey: Guid(3fd15f8ecbaaeee458776b87f509b0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3842. Start importing Assets/Scenes/police.unity using Guid(3fd15f8ecbaaeee458776b87f509b0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7df313ac7bee90bb56c87d7ae7b03a9d') in 0.026306 seconds
  3843. Import took 0.052973 seconds .
  3844. ========================================================================
  3845. Received Prepare
  3846. Refreshing native plugins compatible for Editor in 13.60 ms, found 7 plugins.
  3847. Preloading 0 native plugins for Editor in 0.00 ms.
  3848. Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
  3849. System memory in use before: 45.7 MB.
  3850. System memory in use after: 45.8 MB.
  3851. Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2139.
  3852. Total: 5.025700 ms (FindLiveObjects: 0.305900 ms CreateObjectMapping: 0.190000 ms MarkObjects: 4.501200 ms DeleteObjects: 0.026600 ms)
  3853. AssetImportParameters requested are different than current active one (requested -> active):
  3854. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3855. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3856. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3857. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3858. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3859. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3860. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3861. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3862. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3863. ========================================================================
  3864. Received Import Request.
  3865. Time since last request: 492.560642 seconds.
  3866. path: Assets/Scenes/necklace.unity
  3867. artifactKey: Guid(4b39883dc7d6ad640ad6571bab9959bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3868. Start importing Assets/Scenes/necklace.unity using Guid(4b39883dc7d6ad640ad6571bab9959bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a61cb628f43c5e5e7ea84d1303cad11') in 0.067672 seconds
  3869. Import took 0.300461 seconds .
  3870. ========================================================================
  3871. Received Prepare
  3872. Registering precompiled user dll's ...
  3873. Registered in 0.061793 seconds.
  3874. Begin MonoManager ReloadAssembly
  3875. Native extension for WindowsStandalone target not found
  3876. Native extension for WebGL target not found
  3877. Refreshing native plugins compatible for Editor in 0.95 ms, found 7 plugins.
  3878. Preloading 0 native plugins for Editor in 0.00 ms.
  3879. Mono: successfully reloaded assembly
  3880. - Completed reload, in 25.770 seconds
  3881. Domain Reload Profiling:
  3882. ReloadAssembly (25782ms)
  3883. BeginReloadAssembly (1154ms)
  3884. ExecutionOrderSort (0ms)
  3885. DisableScriptedObjects (20ms)
  3886. BackupInstance (0ms)
  3887. ReleaseScriptingObjects (0ms)
  3888. CreateAndSetChildDomain (183ms)
  3889. EndReloadAssembly (17354ms)
  3890. LoadAssemblies (1382ms)
  3891. RebuildTransferFunctionScriptingTraits (7ms)
  3892. SetupTypeCache (8091ms)
  3893. ReleaseScriptCaches (10ms)
  3894. RebuildScriptCaches (541ms)
  3895. SetupLoadedEditorAssemblies (2799ms)
  3896. LogAssemblyErrors (0ms)
  3897. InitializePlatformSupportModulesInManaged (38ms)
  3898. SetLoadedEditorAssemblies (11ms)
  3899. RefreshPlugins (1ms)
  3900. BeforeProcessingInitializeOnLoad (564ms)
  3901. ProcessInitializeOnLoadAttributes (1841ms)
  3902. ProcessInitializeOnLoadMethodAttributes (62ms)
  3903. AfterProcessingInitializeOnLoad (281ms)
  3904. EditorAssembliesLoaded (3ms)
  3905. ExecutionOrderSort2 (0ms)
  3906. AwakeInstancesAfterBackupRestoration (69ms)
  3907. Platform modules already initialized, skipping
  3908. Refreshing native plugins compatible for Editor in 5.44 ms, found 7 plugins.
  3909. Preloading 0 native plugins for Editor in 0.00 ms.
  3910. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  3911. System memory in use before: 75.6 MB.
  3912. System memory in use after: 75.7 MB.
  3913. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2141.
  3914. Total: 18.752200 ms (FindLiveObjects: 0.435300 ms CreateObjectMapping: 0.441400 ms MarkObjects: 17.737400 ms DeleteObjects: 0.103800 ms)
  3915. AssetImportParameters requested are different than current active one (requested -> active):
  3916. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3917. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3918. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3919. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3920. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3921. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3922. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3923. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3924. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3925. ========================================================================
  3926. Received Import Request.
  3927. Time since last request: 98.049178 seconds.
  3928. path: Assets/script/MoveNecklace.cs
  3929. artifactKey: Guid(8a097ffe345cd014abc9c567adf9f885) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3930. Start importing Assets/script/MoveNecklace.cs using Guid(8a097ffe345cd014abc9c567adf9f885) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f3fde68ffcf5c43016755acd62737271') in 0.079344 seconds
  3931. Import took 0.117149 seconds .
  3932. ========================================================================
  3933. Received Prepare
  3934. Registering precompiled user dll's ...
  3935. Registered in 0.013962 seconds.
  3936. Begin MonoManager ReloadAssembly
  3937. Native extension for WindowsStandalone target not found
  3938. Native extension for WebGL target not found
  3939. Refreshing native plugins compatible for Editor in 1.47 ms, found 7 plugins.
  3940. Preloading 0 native plugins for Editor in 0.00 ms.
  3941. Mono: successfully reloaded assembly
  3942. - Completed reload, in 5.388 seconds
  3943. Domain Reload Profiling:
  3944. ReloadAssembly (5391ms)
  3945. BeginReloadAssembly (569ms)
  3946. ExecutionOrderSort (0ms)
  3947. DisableScriptedObjects (9ms)
  3948. BackupInstance (0ms)
  3949. ReleaseScriptingObjects (0ms)
  3950. CreateAndSetChildDomain (218ms)
  3951. EndReloadAssembly (4563ms)
  3952. LoadAssemblies (385ms)
  3953. RebuildTransferFunctionScriptingTraits (0ms)
  3954. SetupTypeCache (735ms)
  3955. ReleaseScriptCaches (1ms)
  3956. RebuildScriptCaches (97ms)
  3957. SetupLoadedEditorAssemblies (1282ms)
  3958. LogAssemblyErrors (0ms)
  3959. InitializePlatformSupportModulesInManaged (82ms)
  3960. SetLoadedEditorAssemblies (2ms)
  3961. RefreshPlugins (2ms)
  3962. BeforeProcessingInitializeOnLoad (392ms)
  3963. ProcessInitializeOnLoadAttributes (655ms)
  3964. ProcessInitializeOnLoadMethodAttributes (48ms)
  3965. AfterProcessingInitializeOnLoad (102ms)
  3966. EditorAssembliesLoaded (0ms)
  3967. ExecutionOrderSort2 (0ms)
  3968. AwakeInstancesAfterBackupRestoration (20ms)
  3969. Platform modules already initialized, skipping
  3970. Refreshing native plugins compatible for Editor in 0.80 ms, found 7 plugins.
  3971. Preloading 0 native plugins for Editor in 0.00 ms.
  3972. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  3973. System memory in use before: 75.6 MB.
  3974. System memory in use after: 75.7 MB.
  3975. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2143.
  3976. Total: 5.418900 ms (FindLiveObjects: 0.193700 ms CreateObjectMapping: 0.081900 ms MarkObjects: 5.050700 ms DeleteObjects: 0.089900 ms)
  3977. AssetImportParameters requested are different than current active one (requested -> active):
  3978. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3979. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3980. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3981. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3982. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3983. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3984. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3985. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3986. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3987. ========================================================================
  3988. Received Prepare
  3989. Registering precompiled user dll's ...
  3990. Registered in 0.016244 seconds.
  3991. Begin MonoManager ReloadAssembly
  3992. Native extension for WindowsStandalone target not found
  3993. Native extension for WebGL target not found
  3994. Refreshing native plugins compatible for Editor in 1.50 ms, found 7 plugins.
  3995. Preloading 0 native plugins for Editor in 0.00 ms.
  3996. Mono: successfully reloaded assembly
  3997. - Completed reload, in 7.901 seconds
  3998. Domain Reload Profiling:
  3999. ReloadAssembly (7902ms)
  4000. BeginReloadAssembly (371ms)
  4001. ExecutionOrderSort (0ms)
  4002. DisableScriptedObjects (13ms)
  4003. BackupInstance (0ms)
  4004. ReleaseScriptingObjects (0ms)
  4005. CreateAndSetChildDomain (85ms)
  4006. EndReloadAssembly (7165ms)
  4007. LoadAssemblies (401ms)
  4008. RebuildTransferFunctionScriptingTraits (0ms)
  4009. SetupTypeCache (1331ms)
  4010. ReleaseScriptCaches (1ms)
  4011. RebuildScriptCaches (217ms)
  4012. SetupLoadedEditorAssemblies (2148ms)
  4013. LogAssemblyErrors (0ms)
  4014. InitializePlatformSupportModulesInManaged (55ms)
  4015. SetLoadedEditorAssemblies (11ms)
  4016. RefreshPlugins (2ms)
  4017. BeforeProcessingInitializeOnLoad (670ms)
  4018. ProcessInitializeOnLoadAttributes (1268ms)
  4019. ProcessInitializeOnLoadMethodAttributes (31ms)
  4020. AfterProcessingInitializeOnLoad (111ms)
  4021. EditorAssembliesLoaded (0ms)
  4022. ExecutionOrderSort2 (0ms)
  4023. AwakeInstancesAfterBackupRestoration (31ms)
  4024. Platform modules already initialized, skipping
  4025. Refreshing native plugins compatible for Editor in 1.31 ms, found 7 plugins.
  4026. Preloading 0 native plugins for Editor in 0.00 ms.
  4027. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  4028. System memory in use before: 75.6 MB.
  4029. System memory in use after: 75.7 MB.
  4030. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2145.
  4031. Total: 185.196300 ms (FindLiveObjects: 104.097300 ms CreateObjectMapping: 8.471100 ms MarkObjects: 72.575300 ms DeleteObjects: 0.048500 ms)
  4032. AssetImportParameters requested are different than current active one (requested -> active):
  4033. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4034. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4035. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4036. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4037. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4038. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4039. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4040. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4041. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4042. ========================================================================
  4043. Received Import Request.
  4044. Time since last request: 65.856180 seconds.
  4045. path: Assets/script/MoveNecklace.cs
  4046. artifactKey: Guid(8a097ffe345cd014abc9c567adf9f885) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4047. Start importing Assets/script/MoveNecklace.cs using Guid(8a097ffe345cd014abc9c567adf9f885) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aea0c5575c34e2f8fea3cbac2c4c01a6') in 0.085856 seconds
  4048. Import took 0.153636 seconds .
  4049. ========================================================================
  4050. Received Prepare
  4051. Registering precompiled user dll's ...
  4052. Registered in 0.024086 seconds.
  4053. Begin MonoManager ReloadAssembly
  4054. Native extension for WindowsStandalone target not found
  4055. Native extension for WebGL target not found
  4056. Refreshing native plugins compatible for Editor in 1.00 ms, found 7 plugins.
  4057. Preloading 0 native plugins for Editor in 0.00 ms.
  4058. Mono: successfully reloaded assembly
  4059. - Completed reload, in 24.382 seconds
  4060. Domain Reload Profiling:
  4061. ReloadAssembly (24385ms)
  4062. BeginReloadAssembly (730ms)
  4063. ExecutionOrderSort (0ms)
  4064. DisableScriptedObjects (51ms)
  4065. BackupInstance (0ms)
  4066. ReleaseScriptingObjects (0ms)
  4067. CreateAndSetChildDomain (120ms)
  4068. EndReloadAssembly (23170ms)
  4069. LoadAssemblies (578ms)
  4070. RebuildTransferFunctionScriptingTraits (0ms)
  4071. SetupTypeCache (5756ms)
  4072. ReleaseScriptCaches (15ms)
  4073. RebuildScriptCaches (2485ms)
  4074. SetupLoadedEditorAssemblies (8499ms)
  4075. LogAssemblyErrors (0ms)
  4076. InitializePlatformSupportModulesInManaged (133ms)
  4077. SetLoadedEditorAssemblies (2ms)
  4078. RefreshPlugins (1ms)
  4079. BeforeProcessingInitializeOnLoad (1342ms)
  4080. ProcessInitializeOnLoadAttributes (6402ms)
  4081. ProcessInitializeOnLoadMethodAttributes (115ms)
  4082. AfterProcessingInitializeOnLoad (498ms)
  4083. EditorAssembliesLoaded (6ms)
  4084. ExecutionOrderSort2 (0ms)
  4085. AwakeInstancesAfterBackupRestoration (118ms)
  4086. Platform modules already initialized, skipping
  4087. Refreshing native plugins compatible for Editor in 0.92 ms, found 7 plugins.
  4088. Preloading 0 native plugins for Editor in 0.00 ms.
  4089. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  4090. System memory in use before: 75.6 MB.
  4091. System memory in use after: 75.7 MB.
  4092. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2147.
  4093. Total: 13.629800 ms (FindLiveObjects: 0.321500 ms CreateObjectMapping: 0.112400 ms MarkObjects: 13.140600 ms DeleteObjects: 0.051500 ms)
  4094. AssetImportParameters requested are different than current active one (requested -> active):
  4095. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4096. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4097. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4098. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4099. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4100. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4101. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4102. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4103. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4104. ========================================================================
  4105. Received Import Request.
  4106. Time since last request: 123.562896 seconds.
  4107. path: Assets/script/MoveNecklace.cs
  4108. artifactKey: Guid(8a097ffe345cd014abc9c567adf9f885) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4109. Start importing Assets/script/MoveNecklace.cs using Guid(8a097ffe345cd014abc9c567adf9f885) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '23df402dc3e9bcf7bee1a70a6e9df31e') in 0.017715 seconds
  4110. Import took 0.073703 seconds .
  4111. ========================================================================
  4112. Received Prepare
  4113. Registering precompiled user dll's ...
  4114. Registered in 0.021644 seconds.
  4115. Begin MonoManager ReloadAssembly
  4116. Native extension for WindowsStandalone target not found
  4117. Native extension for WebGL target not found
  4118. Refreshing native plugins compatible for Editor in 0.89 ms, found 7 plugins.
  4119. Preloading 0 native plugins for Editor in 0.00 ms.
  4120. Mono: successfully reloaded assembly
  4121. - Completed reload, in 2.756 seconds
  4122. Domain Reload Profiling:
  4123. ReloadAssembly (2757ms)
  4124. BeginReloadAssembly (323ms)
  4125. ExecutionOrderSort (0ms)
  4126. DisableScriptedObjects (8ms)
  4127. BackupInstance (0ms)
  4128. ReleaseScriptingObjects (0ms)
  4129. CreateAndSetChildDomain (71ms)
  4130. EndReloadAssembly (2202ms)
  4131. LoadAssemblies (321ms)
  4132. RebuildTransferFunctionScriptingTraits (0ms)
  4133. SetupTypeCache (774ms)
  4134. ReleaseScriptCaches (2ms)
  4135. RebuildScriptCaches (116ms)
  4136. SetupLoadedEditorAssemblies (787ms)
  4137. LogAssemblyErrors (0ms)
  4138. InitializePlatformSupportModulesInManaged (19ms)
  4139. SetLoadedEditorAssemblies (1ms)
  4140. RefreshPlugins (1ms)
  4141. BeforeProcessingInitializeOnLoad (167ms)
  4142. ProcessInitializeOnLoadAttributes (487ms)
  4143. ProcessInitializeOnLoadMethodAttributes (33ms)
  4144. AfterProcessingInitializeOnLoad (79ms)
  4145. EditorAssembliesLoaded (0ms)
  4146. ExecutionOrderSort2 (0ms)
  4147. AwakeInstancesAfterBackupRestoration (17ms)
  4148. Platform modules already initialized, skipping
  4149. Refreshing native plugins compatible for Editor in 1.40 ms, found 7 plugins.
  4150. Preloading 0 native plugins for Editor in 0.00 ms.
  4151. Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
  4152. System memory in use before: 75.6 MB.
  4153. System memory in use after: 75.7 MB.
  4154. Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2149.
  4155. Total: 35.014900 ms (FindLiveObjects: 1.443800 ms CreateObjectMapping: 0.391600 ms MarkObjects: 33.131000 ms DeleteObjects: 0.044800 ms)
  4156. AssetImportParameters requested are different than current active one (requested -> active):
  4157. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4158. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4159. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4160. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4161. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4162. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4163. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4164. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4165. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4166. ========================================================================
  4167. Received Import Request.
  4168. Time since last request: 13476.890804 seconds.
  4169. path: Assets/Resources/logo.png
  4170. artifactKey: Guid(765ac7df348b6ab4c9587e2c9a62d5d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4171. Start importing Assets/Resources/logo.png using Guid(765ac7df348b6ab4c9587e2c9a62d5d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c9173463539cb45b184048d2c9ac253c') in 5.641156 seconds
  4172. Import took 6.396968 seconds .
  4173. ========================================================================
  4174. Received Import Request.
  4175. Time since last request: 42.135622 seconds.
  4176. path: Assets/Resources/logo.png
  4177. artifactKey: Guid(765ac7df348b6ab4c9587e2c9a62d5d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4178. Start importing Assets/Resources/logo.png using Guid(765ac7df348b6ab4c9587e2c9a62d5d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56a1751e2f34a38df0133002a62841c6') in 2.049796 seconds
  4179. Import took 2.272111 seconds .
  4180. ========================================================================
  4181. Received Prepare
  4182. Refreshing native plugins compatible for Editor in 142.13 ms, found 7 plugins.
  4183. Preloading 0 native plugins for Editor in 0.00 ms.
  4184. Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
  4185. System memory in use before: 45.8 MB.
  4186. System memory in use after: 45.9 MB.
  4187. Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2153.
  4188. Total: 2839.585200 ms (FindLiveObjects: 3.897700 ms CreateObjectMapping: 0.680200 ms MarkObjects: 2823.293900 ms DeleteObjects: 11.709400 ms)
  4189. AssetImportParameters requested are different than current active one (requested -> active):
  4190. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4191. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4192. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4193. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4194. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4195. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4196. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4197. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4198. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4199. ========================================================================
  4200. Received Prepare
  4201. Refreshing native plugins compatible for Editor in 155.18 ms, found 7 plugins.
  4202. Preloading 0 native plugins for Editor in 0.00 ms.
  4203. Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
  4204. System memory in use before: 45.8 MB.
  4205. System memory in use after: 45.9 MB.
  4206. Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2153.
  4207. Total: 1547.544600 ms (FindLiveObjects: 354.089000 ms CreateObjectMapping: 0.208300 ms MarkObjects: 1187.529500 ms DeleteObjects: 5.712000 ms)
  4208. AssetImportParameters requested are different than current active one (requested -> active):
  4209. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4210. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4211. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4212. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4213. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4214. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4215. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4216. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4217. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4218. ========================================================================
  4219. Received Prepare
  4220. Refreshing native plugins compatible for Editor in 188.35 ms, found 7 plugins.
  4221. Preloading 0 native plugins for Editor in 0.00 ms.
  4222. Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
  4223. System memory in use before: 45.8 MB.
  4224. System memory in use after: 45.9 MB.
  4225. Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2153.
  4226. Total: 227.376000 ms (FindLiveObjects: 9.642100 ms CreateObjectMapping: 0.185100 ms MarkObjects: 217.465900 ms DeleteObjects: 0.079500 ms)
  4227. AssetImportParameters requested are different than current active one (requested -> active):
  4228. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4229. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4230. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4231. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4232. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4233. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4234. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4235. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4236. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4237. ========================================================================
  4238. Received Import Request.
  4239. Time since last request: 1727.591350 seconds.
  4240. path: Assets/WebGLTemplates
  4241. artifactKey: Guid(fc26de0399ae5bb4387d25e697c3547b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4242. Start importing Assets/WebGLTemplates using Guid(fc26de0399ae5bb4387d25e697c3547b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e351fec536d9a4a22e67746068a88830') in 0.201584 seconds
  4243. Import took 0.420877 seconds .
  4244. ========================================================================
  4245. Received Prepare
  4246. Refreshing native plugins compatible for Editor in 84.99 ms, found 7 plugins.
  4247. Preloading 0 native plugins for Editor in 0.00 ms.
  4248. Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
  4249. System memory in use before: 45.8 MB.
  4250. System memory in use after: 45.9 MB.
  4251. Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2153.
  4252. Total: 68.449800 ms (FindLiveObjects: 0.368700 ms CreateObjectMapping: 0.120400 ms MarkObjects: 67.896000 ms DeleteObjects: 0.060700 ms)
  4253. AssetImportParameters requested are different than current active one (requested -> active):
  4254. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4255. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4256. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4257. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4258. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4259. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4260. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4261. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4262. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4263. ========================================================================
  4264. Received Prepare
  4265. Refreshing native plugins compatible for Editor in 33.62 ms, found 7 plugins.
  4266. Preloading 0 native plugins for Editor in 0.00 ms.
  4267. Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
  4268. System memory in use before: 45.8 MB.
  4269. System memory in use after: 45.9 MB.
  4270. Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2153.
  4271. Total: 15.927100 ms (FindLiveObjects: 0.821000 ms CreateObjectMapping: 0.271900 ms MarkObjects: 14.798100 ms DeleteObjects: 0.032200 ms)
  4272. AssetImportParameters requested are different than current active one (requested -> active):
  4273. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4274. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4275. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4276. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4277. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4278. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4279. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4280. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4281. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4282. ========================================================================
  4283. Received Prepare
  4284. Refreshing native plugins compatible for Editor in 50.89 ms, found 7 plugins.
  4285. Preloading 0 native plugins for Editor in 0.00 ms.
  4286. Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
  4287. System memory in use before: 45.8 MB.
  4288. System memory in use after: 45.9 MB.
  4289. Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2153.
  4290. Total: 10.924100 ms (FindLiveObjects: 0.244100 ms CreateObjectMapping: 0.079400 ms MarkObjects: 10.526200 ms DeleteObjects: 0.071300 ms)
  4291. AssetImportParameters requested are different than current active one (requested -> active):
  4292. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4293. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4294. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4295. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4296. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4297. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4298. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4299. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4300. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4301. ========================================================================
  4302. Received Prepare
  4303. Refreshing native plugins compatible for Editor in 32.74 ms, found 7 plugins.
  4304. Preloading 0 native plugins for Editor in 0.00 ms.
  4305. Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
  4306. System memory in use before: 45.8 MB.
  4307. System memory in use after: 45.9 MB.
  4308. Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2153.
  4309. Total: 15.363400 ms (FindLiveObjects: 0.351500 ms CreateObjectMapping: 0.133100 ms MarkObjects: 14.809000 ms DeleteObjects: 0.066100 ms)
  4310. AssetImportParameters requested are different than current active one (requested -> active):
  4311. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4312. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4313. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4314. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4315. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4316. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4317. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4318. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4319. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4320. ========================================================================
  4321. Received Prepare
  4322. Refreshing native plugins compatible for Editor in 295.07 ms, found 7 plugins.
  4323. Preloading 0 native plugins for Editor in 0.00 ms.
  4324. Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
  4325. System memory in use before: 45.8 MB.
  4326. System memory in use after: 45.9 MB.
  4327. Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2153.
  4328. Total: 2152.536400 ms (FindLiveObjects: 438.992800 ms CreateObjectMapping: 0.160100 ms MarkObjects: 1713.240200 ms DeleteObjects: 0.138700 ms)
  4329. AssetImportParameters requested are different than current active one (requested -> active):
  4330. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4331. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4332. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4333. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4334. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4335. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4336. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4337. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4338. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->