123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572 |
- Using pre-set license
- Built from '2020.3/china_unity/release' branch; Version is '2020.3.26f1c1 (cf0e0a163043) revision 13569546'; Using compiler version '192528614'; Build Type 'Release'
- OS: 'Windows 10 (10.0.18363) 64bit Professional' Language: 'zh' Physical Memory: 8135 MB
- BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
- COMMAND LINE ARGUMENTS:
- C:\Program Files\Unity\Hub\Editor\2020.3.26f1c1\Editor\Unity.exe
- -adb2
- -batchMode
- -noUpm
- -name
- AssetImportWorker0
- -projectPath
- F:/cocorobo/cocorobo-unity
- -logFile
- Logs/AssetImportWorker0.log
- -srvPort
- 53690
- Successfully changed project path to: F:/cocorobo/cocorobo-unity
- F:/cocorobo/cocorobo-unity
- Using Asset Import Pipeline V2.
- AS: AutoStreaming module initializing.Refreshing native plugins compatible for Editor in 81.52 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Initialize engine version: 2020.3.26f1c1 (cf0e0a163043)
- [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.26f1c1/Editor/Data/Resources/UnitySubsystems
- [Subsystems] Discovering subsystems at path F:/cocorobo/cocorobo-unity/Assets
- GfxDevice: creating device client; threaded=0
- Direct3D:
- Version: Direct3D 11.0 [level 11.1]
- Renderer: NVIDIA GeForce GTX 1050 (ID=0x1c81)
- Vendor:
- VRAM: 1977 MB
- Driver: 27.21.14.5671
- Initialize mono
- Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.26f1c1/Editor/Data/Managed'
- Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.26f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
- Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.26f1c1/Editor/Data/MonoBleedingEdge/etc'
- Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56808
- Begin MonoManager ReloadAssembly
- Registering precompiled unity dll's ...
- Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.26f1c1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll
- Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.26f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
- Registered in 0.012684 seconds.
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 58.32 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.072 seconds
- Domain Reload Profiling:
- ReloadAssembly (1072ms)
- BeginReloadAssembly (147ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (0ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (1ms)
- EndReloadAssembly (752ms)
- LoadAssemblies (133ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (243ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (49ms)
- SetupLoadedEditorAssemblies (260ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (10ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (58ms)
- BeforeProcessingInitializeOnLoad (13ms)
- ProcessInitializeOnLoadAttributes (131ms)
- ProcessInitializeOnLoadMethodAttributes (47ms)
- AfterProcessingInitializeOnLoad (0ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (0ms)
- Platform modules already initialized, skipping
- Registering precompiled user dll's ...
- Registered in 0.009181 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.07 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 4.015 seconds
- Domain Reload Profiling:
- ReloadAssembly (4016ms)
- BeginReloadAssembly (399ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (9ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (38ms)
- EndReloadAssembly (3417ms)
- LoadAssemblies (242ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (740ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (102ms)
- SetupLoadedEditorAssemblies (2114ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (19ms)
- SetLoadedEditorAssemblies (3ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (1395ms)
- ProcessInitializeOnLoadAttributes (561ms)
- ProcessInitializeOnLoadMethodAttributes (30ms)
- AfterProcessingInitializeOnLoad (104ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (13ms)
- Platform modules already initialized, skipping
- ========================================================================
- Worker process is ready to serve import requests
- Launched and connected shader compiler UnityShaderCompiler.exe after 0.17 seconds
- Refreshing native plugins compatible for Editor in 0.71 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 71.6 MB.
- System memory in use after: 71.7 MB.
- Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 1975.
- Total: 3.563100 ms (FindLiveObjects: 0.307100 ms CreateObjectMapping: 0.078700 ms MarkObjects: 3.142400 ms DeleteObjects: 0.032700 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- path: Assets/script/MoveCurtains.cs
- artifactKey: Guid(3454a08ce264e4d40a9eeb5ff0d3c49a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/script/MoveCurtains.cs using Guid(3454a08ce264e4d40a9eeb5ff0d3c49a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3f1747dfc7d89ed9c100156b7ffe0b6e') in 0.066676 seconds
- Import took 0.081311 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.007820 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.69 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.762 seconds
- Domain Reload Profiling:
- ReloadAssembly (1764ms)
- BeginReloadAssembly (214ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (8ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (47ms)
- EndReloadAssembly (1411ms)
- LoadAssemblies (182ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (421ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (59ms)
- SetupLoadedEditorAssemblies (630ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (10ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (138ms)
- ProcessInitializeOnLoadAttributes (420ms)
- ProcessInitializeOnLoadMethodAttributes (14ms)
- AfterProcessingInitializeOnLoad (45ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.62 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1526 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 71.4 MB.
- System memory in use after: 71.5 MB.
- Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1977.
- Total: 3.506700 ms (FindLiveObjects: 0.176600 ms CreateObjectMapping: 0.076000 ms MarkObjects: 3.209400 ms DeleteObjects: 0.042700 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.008635 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.68 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.848 seconds
- Domain Reload Profiling:
- ReloadAssembly (1848ms)
- BeginReloadAssembly (266ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (9ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (52ms)
- EndReloadAssembly (1402ms)
- LoadAssemblies (224ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (484ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (63ms)
- SetupLoadedEditorAssemblies (534ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (11ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (123ms)
- ProcessInitializeOnLoadAttributes (335ms)
- ProcessInitializeOnLoadMethodAttributes (15ms)
- AfterProcessingInitializeOnLoad (48ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (11ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.69 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1526 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 71.4 MB.
- System memory in use after: 71.6 MB.
- Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1979.
- Total: 4.194900 ms (FindLiveObjects: 0.171500 ms CreateObjectMapping: 0.074000 ms MarkObjects: 3.921000 ms DeleteObjects: 0.026400 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 575.517890 seconds.
- path: Assets/Scenes/door.unity
- artifactKey: Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/door.unity using Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '22097685d78d1bc5fc7736567e4cc87f') in 0.041755 seconds
- Import took 0.068749 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.012786 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.65 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.675 seconds
- Domain Reload Profiling:
- ReloadAssembly (1676ms)
- BeginReloadAssembly (216ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (7ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (45ms)
- EndReloadAssembly (1307ms)
- LoadAssemblies (197ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (434ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (59ms)
- SetupLoadedEditorAssemblies (501ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (10ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (114ms)
- ProcessInitializeOnLoadAttributes (314ms)
- ProcessInitializeOnLoadMethodAttributes (14ms)
- AfterProcessingInitializeOnLoad (45ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.69 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1526 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 71.5 MB.
- System memory in use after: 71.6 MB.
- Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1981.
- Total: 4.360400 ms (FindLiveObjects: 0.168100 ms CreateObjectMapping: 0.076700 ms MarkObjects: 4.086700 ms DeleteObjects: 0.026800 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 6.26 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 12 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 41.5 MB.
- System memory in use after: 41.6 MB.
- Unloading 12 unused Assets to reduce memory usage. Loaded Objects now: 1981.
- Total: 4.219000 ms (FindLiveObjects: 0.203600 ms CreateObjectMapping: 0.079100 ms MarkObjects: 3.907300 ms DeleteObjects: 0.026900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.187230 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.75 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.715 seconds
- Domain Reload Profiling:
- ReloadAssembly (1716ms)
- BeginReloadAssembly (264ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (10ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (48ms)
- EndReloadAssembly (1294ms)
- LoadAssemblies (231ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (421ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (60ms)
- SetupLoadedEditorAssemblies (502ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (10ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (117ms)
- ProcessInitializeOnLoadAttributes (312ms)
- ProcessInitializeOnLoadMethodAttributes (15ms)
- AfterProcessingInitializeOnLoad (46ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (11ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.29 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1526 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 71.5 MB.
- System memory in use after: 71.6 MB.
- Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1983.
- Total: 7.974100 ms (FindLiveObjects: 0.280100 ms CreateObjectMapping: 0.264000 ms MarkObjects: 7.393300 ms DeleteObjects: 0.034000 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.016123 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.93 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 3.348 seconds
- Domain Reload Profiling:
- ReloadAssembly (3349ms)
- BeginReloadAssembly (253ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (8ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (52ms)
- EndReloadAssembly (2909ms)
- LoadAssemblies (237ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (1074ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (151ms)
- SetupLoadedEditorAssemblies (944ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (19ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (286ms)
- ProcessInitializeOnLoadAttributes (545ms)
- ProcessInitializeOnLoadMethodAttributes (23ms)
- AfterProcessingInitializeOnLoad (69ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (16ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.88 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1526 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 71.5 MB.
- System memory in use after: 71.6 MB.
- Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1985.
- Total: 4.527100 ms (FindLiveObjects: 0.317200 ms CreateObjectMapping: 0.102500 ms MarkObjects: 4.076400 ms DeleteObjects: 0.029100 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.012465 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.01 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.830 seconds
- Domain Reload Profiling:
- ReloadAssembly (1830ms)
- BeginReloadAssembly (237ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (8ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (42ms)
- EndReloadAssembly (1414ms)
- LoadAssemblies (222ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (495ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (59ms)
- SetupLoadedEditorAssemblies (522ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (14ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (123ms)
- ProcessInitializeOnLoadAttributes (321ms)
- ProcessInitializeOnLoadMethodAttributes (15ms)
- AfterProcessingInitializeOnLoad (46ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (11ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.64 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1526 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 71.5 MB.
- System memory in use after: 71.6 MB.
- Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1987.
- Total: 3.936500 ms (FindLiveObjects: 0.163500 ms CreateObjectMapping: 0.113600 ms MarkObjects: 3.630700 ms DeleteObjects: 0.026800 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 643.940141 seconds.
- path: Assets/Plugins
- artifactKey: Guid(c16db02b17672284ab79b3062eb1d975) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Plugins using Guid(c16db02b17672284ab79b3062eb1d975) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '16668a184d56199465671ec17270fded') in 0.036403 seconds
- Import took 0.084232 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 74.217172 seconds.
- path: Assets/Plugins/open.jslib
- artifactKey: Guid(b46852b14cdb74641a9098c91d19b35b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Plugins/open.jslib using Guid(b46852b14cdb74641a9098c91d19b35b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'efe70f152efd2efe9cc9ce53f3517164') in 0.055656 seconds
- Import took 0.083558 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 29.068944 seconds.
- path: Assets/Plugins/open.jslib
- artifactKey: Guid(b46852b14cdb74641a9098c91d19b35b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Plugins/open.jslib using Guid(b46852b14cdb74641a9098c91d19b35b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '59f908c472f4a0e906348c996bb92ca3') in 0.008641 seconds
- Import took 0.028556 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 395.258568 seconds.
- path: Assets/Plugins/open.jslib
- artifactKey: Guid(b46852b14cdb74641a9098c91d19b35b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Plugins/open.jslib using Guid(b46852b14cdb74641a9098c91d19b35b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ad1dc341c547a5cdfb53a56eb728a525') in 0.005984 seconds
- Import took 0.028631 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 1.577037 seconds.
- path: Assets/Plugins/jslib.jslib
- artifactKey: Guid(b46852b14cdb74641a9098c91d19b35b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Plugins/jslib.jslib using Guid(b46852b14cdb74641a9098c91d19b35b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a3a903066aa4ab40c61317fd6b67b763') in 0.006160 seconds
- Import took 0.020902 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 572.608682 seconds.
- path: Assets/Plugins/js.js
- artifactKey: Guid(347ef259bddab7d4887d5e5032f01774) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Plugins/js.js using Guid(347ef259bddab7d4887d5e5032f01774) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6e0b583e902c0b556b8d131d994184a4') in 0.024930 seconds
- Import took 0.049238 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 3.628978 seconds.
- path: Assets/Plugins/test1.js
- artifactKey: Guid(347ef259bddab7d4887d5e5032f01774) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Plugins/test1.js using Guid(347ef259bddab7d4887d5e5032f01774) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ec2840f9af5cdde7963b68f92985924') in 0.027326 seconds
- Import took 0.055336 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.008745 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.67 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.723 seconds
- Domain Reload Profiling:
- ReloadAssembly (1724ms)
- BeginReloadAssembly (272ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (8ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (53ms)
- EndReloadAssembly (1289ms)
- LoadAssemblies (230ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (420ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (61ms)
- SetupLoadedEditorAssemblies (500ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (10ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (118ms)
- ProcessInitializeOnLoadAttributes (307ms)
- ProcessInitializeOnLoadMethodAttributes (16ms)
- AfterProcessingInitializeOnLoad (48ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (11ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.65 ms, found 2 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1526 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 71.5 MB.
- System memory in use after: 71.6 MB.
- Unloading 14 unused Assets to reduce memory usage. Loaded Objects now: 1989.
- Total: 3.645300 ms (FindLiveObjects: 0.166500 ms CreateObjectMapping: 0.074100 ms MarkObjects: 3.375100 ms DeleteObjects: 0.027300 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 415.288356 seconds.
- path: Assets/Plugins/test1.js
- artifactKey: Guid(347ef259bddab7d4887d5e5032f01774) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Plugins/test1.js using Guid(347ef259bddab7d4887d5e5032f01774) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '336041fc85f5fa90e0d20c193a3a5923') in 0.428485 seconds
- Import took 0.649703 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 9.142075 seconds.
- path: Assets/Plugins/jsTest.js
- artifactKey: Guid(347ef259bddab7d4887d5e5032f01774) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Plugins/jsTest.js using Guid(347ef259bddab7d4887d5e5032f01774) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c133c7dcb570181d7d948f44df8ef321') in 0.117679 seconds
- Import took 0.134959 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 103.460036 seconds.
- path: Assets/Standard Assets
- artifactKey: Guid(60f822fa6f97da545bedf082bebe5d14) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Standard Assets using Guid(60f822fa6f97da545bedf082bebe5d14) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'add0040a6652e83f281c7feb6796dd49') in 0.013094 seconds
- Import took 0.018271 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 7.296449 seconds.
- path: Assets/Standard Assets/New Physics Material 2D.physicsMaterial2D
- artifactKey: Guid(a6cab9f54a4f6e849b191f4a341173d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Standard Assets/New Physics Material 2D.physicsMaterial2D using Guid(a6cab9f54a4f6e849b191f4a341173d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b4d3816fede9e60e623ffbd01c1f620c') in 0.020103 seconds
- Import took 0.025302 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.077217 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 4.34 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 5.351 seconds
- Domain Reload Profiling:
- ReloadAssembly (5386ms)
- BeginReloadAssembly (1661ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (192ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (7ms)
- CreateAndSetChildDomain (697ms)
- EndReloadAssembly (3423ms)
- LoadAssemblies (662ms)
- RebuildTransferFunctionScriptingTraits (1ms)
- SetupTypeCache (1423ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (208ms)
- SetupLoadedEditorAssemblies (1000ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (16ms)
- SetLoadedEditorAssemblies (5ms)
- RefreshPlugins (4ms)
- BeforeProcessingInitializeOnLoad (210ms)
- ProcessInitializeOnLoadAttributes (672ms)
- ProcessInitializeOnLoadMethodAttributes (30ms)
- AfterProcessingInitializeOnLoad (62ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (14ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.95 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.6 MB.
- System memory in use after: 73.9 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2030.
- Total: 43.841700 ms (FindLiveObjects: 1.681800 ms CreateObjectMapping: 0.220000 ms MarkObjects: 24.389300 ms DeleteObjects: 17.547700 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 4631.780363 seconds.
- path: Assets/Scenes/broser.unity
- artifactKey: Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/broser.unity using Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7d1545ba5b88312c85f8700c3fa76b4b') in 0.253404 seconds
- Import took 0.291027 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 18.995584 seconds.
- path: Assets/Scenes/Browser.unity
- artifactKey: Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/Browser.unity using Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4ec3ffbca13301b48a34fc400263e8a8') in 0.047343 seconds
- Import took 0.055576 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 106.374966 seconds.
- path: Packages/com.unity.collab-proxy/Editor/Collaborate/Assets/Icons/added-file-dark.png
- artifactKey: Guid(1a4f52b613391cd449af3ad2e44affeb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- 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
- Import took 1.148079 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.004803 seconds.
- path: Packages/com.unity.collab-proxy/Editor/Collaborate/Assets/Icons/added-file-dark@2x.png
- artifactKey: Guid(c223e0c507e2c6549a2cb97441b62cbe) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- 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
- Import took 0.097256 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.001205 seconds.
- path: Packages/com.unity.collab-proxy/Editor/Collaborate/Assets/Icons/added-file-light@2x.png
- artifactKey: Guid(ec2e3aa6d0ab8ce4eac29b56d65d61d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- 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
- Import took 0.079498 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.000376 seconds.
- path: Packages/com.unity.collab-proxy/Editor/Collaborate/Assets/Icons/added-file-light.png
- artifactKey: Guid(397fff6c3885f8343bb65714f0064b5d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- 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
- Import took 0.074259 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.018705 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.99 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 3.699 seconds
- Domain Reload Profiling:
- ReloadAssembly (3700ms)
- BeginReloadAssembly (326ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (13ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (106ms)
- EndReloadAssembly (3177ms)
- LoadAssemblies (240ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (673ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (77ms)
- SetupLoadedEditorAssemblies (2021ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (167ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (650ms)
- ProcessInitializeOnLoadAttributes (1115ms)
- ProcessInitializeOnLoadMethodAttributes (17ms)
- AfterProcessingInitializeOnLoad (69ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (12ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.12 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.6 MB.
- System memory in use after: 73.9 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2035.
- Total: 6.946300 ms (FindLiveObjects: 0.678200 ms CreateObjectMapping: 0.736100 ms MarkObjects: 4.363100 ms DeleteObjects: 1.165900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.084375 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.99 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 8.432 seconds
- Domain Reload Profiling:
- ReloadAssembly (8433ms)
- BeginReloadAssembly (4906ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (26ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (1641ms)
- EndReloadAssembly (3197ms)
- LoadAssemblies (3187ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (1131ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (134ms)
- SetupLoadedEditorAssemblies (1256ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (22ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (3ms)
- BeforeProcessingInitializeOnLoad (240ms)
- ProcessInitializeOnLoadAttributes (833ms)
- ProcessInitializeOnLoadMethodAttributes (36ms)
- AfterProcessingInitializeOnLoad (121ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (19ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.16 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.6 MB.
- System memory in use after: 73.9 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2037.
- Total: 9.861300 ms (FindLiveObjects: 0.284900 ms CreateObjectMapping: 0.106700 ms MarkObjects: 7.414300 ms DeleteObjects: 2.052500 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.013475 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.35 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 2.967 seconds
- Domain Reload Profiling:
- ReloadAssembly (2970ms)
- BeginReloadAssembly (819ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (25ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (409ms)
- EndReloadAssembly (1969ms)
- LoadAssemblies (286ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (696ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (66ms)
- SetupLoadedEditorAssemblies (781ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (16ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (2ms)
- BeforeProcessingInitializeOnLoad (165ms)
- ProcessInitializeOnLoadAttributes (521ms)
- ProcessInitializeOnLoadMethodAttributes (18ms)
- AfterProcessingInitializeOnLoad (57ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (14ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.68 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.5 MB.
- System memory in use after: 73.9 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2039.
- Total: 19.111700 ms (FindLiveObjects: 0.397300 ms CreateObjectMapping: 0.140300 ms MarkObjects: 4.906800 ms DeleteObjects: 13.664600 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.021931 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 2.31 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 2.475 seconds
- Domain Reload Profiling:
- ReloadAssembly (2475ms)
- BeginReloadAssembly (258ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (9ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (51ms)
- EndReloadAssembly (2044ms)
- LoadAssemblies (239ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (610ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (96ms)
- SetupLoadedEditorAssemblies (803ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (13ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (2ms)
- BeforeProcessingInitializeOnLoad (160ms)
- ProcessInitializeOnLoadAttributes (515ms)
- ProcessInitializeOnLoadMethodAttributes (27ms)
- AfterProcessingInitializeOnLoad (84ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (19ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.25 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.5 MB.
- System memory in use after: 73.9 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2041.
- Total: 7.278500 ms (FindLiveObjects: 0.375900 ms CreateObjectMapping: 0.705900 ms MarkObjects: 4.732700 ms DeleteObjects: 1.460800 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.016117 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.94 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 2.313 seconds
- Domain Reload Profiling:
- ReloadAssembly (2314ms)
- BeginReloadAssembly (454ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (16ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (89ms)
- EndReloadAssembly (1657ms)
- LoadAssemblies (356ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (551ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (77ms)
- SetupLoadedEditorAssemblies (629ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (12ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (142ms)
- ProcessInitializeOnLoadAttributes (400ms)
- ProcessInitializeOnLoadMethodAttributes (17ms)
- AfterProcessingInitializeOnLoad (56ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (12ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.53 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.5 MB.
- System memory in use after: 73.9 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2043.
- Total: 5.593300 ms (FindLiveObjects: 0.177100 ms CreateObjectMapping: 0.079300 ms MarkObjects: 4.423700 ms DeleteObjects: 0.911300 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.021672 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.20 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 2.222 seconds
- Domain Reload Profiling:
- ReloadAssembly (2223ms)
- BeginReloadAssembly (242ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (8ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (49ms)
- EndReloadAssembly (1810ms)
- LoadAssemblies (220ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (517ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (71ms)
- SetupLoadedEditorAssemblies (802ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (13ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (230ms)
- ProcessInitializeOnLoadAttributes (474ms)
- ProcessInitializeOnLoadMethodAttributes (24ms)
- AfterProcessingInitializeOnLoad (58ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (14ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.33 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.6 MB.
- System memory in use after: 73.9 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2045.
- Total: 6.554900 ms (FindLiveObjects: 0.224500 ms CreateObjectMapping: 0.083900 ms MarkObjects: 5.015100 ms DeleteObjects: 1.229100 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 455.228576 seconds.
- path: Assets/Scenes/Browser.unity
- artifactKey: Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/Browser.unity using Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1387748fad8573e51ebeb0f0fd4d3275') in 0.040797 seconds
- Import took 0.045952 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.018091 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.95 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 4.231 seconds
- Domain Reload Profiling:
- ReloadAssembly (4232ms)
- BeginReloadAssembly (896ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (24ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (79ms)
- EndReloadAssembly (2493ms)
- LoadAssemblies (993ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (918ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (143ms)
- SetupLoadedEditorAssemblies (698ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (12ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (158ms)
- ProcessInitializeOnLoadAttributes (442ms)
- ProcessInitializeOnLoadMethodAttributes (18ms)
- AfterProcessingInitializeOnLoad (66ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (15ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.29 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.5 MB.
- System memory in use after: 73.9 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2047.
- Total: 5.169300 ms (FindLiveObjects: 0.294500 ms CreateObjectMapping: 0.110500 ms MarkObjects: 3.704100 ms DeleteObjects: 1.057600 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 90.090645 seconds.
- path: Assets/panel/function_panel.prefab
- artifactKey: Guid(cd5aa43332fdbf343b1c1e0fcd7f13f0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/panel/function_panel.prefab using Guid(cd5aa43332fdbf343b1c1e0fcd7f13f0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '19f5e32717a58072ef33448fba648f76') in 0.433964 seconds
- Import took 0.444246 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 10.707239 seconds.
- path: Assets/Scenes/police.unity
- artifactKey: Guid(3fd15f8ecbaaeee458776b87f509b0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/police.unity using Guid(3fd15f8ecbaaeee458776b87f509b0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38f5d08a5fd8f848e5275e07cc795431') in 0.030197 seconds
- Import took 0.048879 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 4.299015 seconds.
- path: Assets/Scenes/curtains.unity
- artifactKey: Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/curtains.unity using Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e3d4dc15a72c2ead5c9a4623257c35b3') in 0.080606 seconds
- Import took 0.097024 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.519848 seconds.
- path: Assets/Scenes/Browser.unity
- artifactKey: Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/Browser.unity using Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08c1424b52ab730f6cfbff809451396d') in 0.189034 seconds
- Import took 0.218838 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 63.680755 seconds.
- path: Assets/Scenes/Browser.unity
- artifactKey: Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/Browser.unity using Guid(86573986704aebb44a3f21bd34ab51e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ba4efa6ab7548dcdebbc19ec39ff1bad') in 0.017071 seconds
- Import took 0.030183 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.027175 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.04 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 3.666 seconds
- Domain Reload Profiling:
- ReloadAssembly (3666ms)
- BeginReloadAssembly (288ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (9ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (65ms)
- EndReloadAssembly (3208ms)
- LoadAssemblies (680ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (1170ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (87ms)
- SetupLoadedEditorAssemblies (798ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (18ms)
- SetLoadedEditorAssemblies (2ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (170ms)
- ProcessInitializeOnLoadAttributes (522ms)
- ProcessInitializeOnLoadMethodAttributes (22ms)
- AfterProcessingInitializeOnLoad (63ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (16ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.90 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.6 MB.
- System memory in use after: 73.9 MB.
- Unloading 38 unused Assets to reduce memory usage. Loaded Objects now: 2049.
- Total: 5.255600 ms (FindLiveObjects: 0.180900 ms CreateObjectMapping: 0.079500 ms MarkObjects: 3.851600 ms DeleteObjects: 1.140900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.229871 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.61 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 6.461 seconds
- Domain Reload Profiling:
- ReloadAssembly (6462ms)
- BeginReloadAssembly (676ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (19ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (130ms)
- EndReloadAssembly (5064ms)
- LoadAssemblies (704ms)
- RebuildTransferFunctionScriptingTraits (25ms)
- SetupTypeCache (1495ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (143ms)
- SetupLoadedEditorAssemblies (2385ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (29ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (2ms)
- BeforeProcessingInitializeOnLoad (391ms)
- ProcessInitializeOnLoadAttributes (1869ms)
- ProcessInitializeOnLoadMethodAttributes (31ms)
- AfterProcessingInitializeOnLoad (61ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (12ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.53 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.6 MB.
- System memory in use after: 73.9 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2051.
- Total: 5.206100 ms (FindLiveObjects: 0.309100 ms CreateObjectMapping: 0.104600 ms MarkObjects: 3.853300 ms DeleteObjects: 0.936300 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.024044 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 3.58 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 3.084 seconds
- Domain Reload Profiling:
- ReloadAssembly (3085ms)
- BeginReloadAssembly (260ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (9ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (55ms)
- EndReloadAssembly (2660ms)
- LoadAssemblies (366ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (763ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (125ms)
- SetupLoadedEditorAssemblies (1111ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (41ms)
- SetLoadedEditorAssemblies (5ms)
- RefreshPlugins (4ms)
- BeforeProcessingInitializeOnLoad (375ms)
- ProcessInitializeOnLoadAttributes (614ms)
- ProcessInitializeOnLoadMethodAttributes (18ms)
- AfterProcessingInitializeOnLoad (55ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (16ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 7.50 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.5 MB.
- System memory in use after: 73.9 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2053.
- Total: 41.348900 ms (FindLiveObjects: 5.555700 ms CreateObjectMapping: 0.204000 ms MarkObjects: 27.569700 ms DeleteObjects: 8.016100 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.029680 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.18 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 2.034 seconds
- Domain Reload Profiling:
- ReloadAssembly (2034ms)
- BeginReloadAssembly (247ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (7ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (52ms)
- EndReloadAssembly (1620ms)
- LoadAssemblies (228ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (492ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (67ms)
- SetupLoadedEditorAssemblies (707ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (18ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (141ms)
- ProcessInitializeOnLoadAttributes (468ms)
- ProcessInitializeOnLoadMethodAttributes (20ms)
- AfterProcessingInitializeOnLoad (58ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (12ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.94 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.5 MB.
- System memory in use after: 73.9 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2055.
- Total: 4.596500 ms (FindLiveObjects: 0.189200 ms CreateObjectMapping: 0.094200 ms MarkObjects: 3.373700 ms DeleteObjects: 0.937400 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.015149 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.47 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 2.903 seconds
- Domain Reload Profiling:
- ReloadAssembly (2904ms)
- BeginReloadAssembly (355ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (21ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (68ms)
- EndReloadAssembly (2365ms)
- LoadAssemblies (272ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (574ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (122ms)
- SetupLoadedEditorAssemblies (1084ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (19ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (2ms)
- BeforeProcessingInitializeOnLoad (305ms)
- ProcessInitializeOnLoadAttributes (663ms)
- ProcessInitializeOnLoadMethodAttributes (24ms)
- AfterProcessingInitializeOnLoad (70ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (14ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.96 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.6 MB.
- System memory in use after: 73.9 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2057.
- Total: 5.084300 ms (FindLiveObjects: 0.192700 ms CreateObjectMapping: 0.078800 ms MarkObjects: 3.764500 ms DeleteObjects: 1.045800 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.027609 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.67 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 2.989 seconds
- Domain Reload Profiling:
- ReloadAssembly (2990ms)
- BeginReloadAssembly (424ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (12ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (91ms)
- EndReloadAssembly (2210ms)
- LoadAssemblies (494ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (791ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (82ms)
- SetupLoadedEditorAssemblies (701ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (17ms)
- SetLoadedEditorAssemblies (2ms)
- RefreshPlugins (2ms)
- BeforeProcessingInitializeOnLoad (159ms)
- ProcessInitializeOnLoadAttributes (444ms)
- ProcessInitializeOnLoadMethodAttributes (17ms)
- AfterProcessingInitializeOnLoad (59ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (11ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.13 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.5 MB.
- System memory in use after: 73.9 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2059.
- Total: 11.527500 ms (FindLiveObjects: 1.598600 ms CreateObjectMapping: 0.127800 ms MarkObjects: 8.830100 ms DeleteObjects: 0.967600 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.656960 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 3.67 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 2.932 seconds
- Domain Reload Profiling:
- ReloadAssembly (2933ms)
- BeginReloadAssembly (340ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (9ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (67ms)
- EndReloadAssembly (2354ms)
- LoadAssemblies (303ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (591ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (105ms)
- SetupLoadedEditorAssemblies (1177ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (21ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (4ms)
- BeforeProcessingInitializeOnLoad (210ms)
- ProcessInitializeOnLoadAttributes (807ms)
- ProcessInitializeOnLoadMethodAttributes (37ms)
- AfterProcessingInitializeOnLoad (97ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (19ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.96 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.6 MB.
- System memory in use after: 73.9 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2061.
- Total: 14.049100 ms (FindLiveObjects: 0.277500 ms CreateObjectMapping: 1.366800 ms MarkObjects: 6.811500 ms DeleteObjects: 5.590700 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 36.23 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 34 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 43.9 MB.
- System memory in use after: 43.2 MB.
- Unloading 34 unused Assets to reduce memory usage. Loaded Objects now: 2061.
- Total: 4.625700 ms (FindLiveObjects: 0.207800 ms CreateObjectMapping: 0.086200 ms MarkObjects: 3.255900 ms DeleteObjects: 1.074100 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 31.48 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 34 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 43.9 MB.
- System memory in use after: 43.2 MB.
- Unloading 34 unused Assets to reduce memory usage. Loaded Objects now: 2061.
- Total: 6.469200 ms (FindLiveObjects: 0.301500 ms CreateObjectMapping: 0.102100 ms MarkObjects: 4.977800 ms DeleteObjects: 1.085200 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 34.94 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 34 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 43.9 MB.
- System memory in use after: 43.2 MB.
- Unloading 34 unused Assets to reduce memory usage. Loaded Objects now: 2061.
- Total: 7.926900 ms (FindLiveObjects: 0.196300 ms CreateObjectMapping: 0.162600 ms MarkObjects: 6.029700 ms DeleteObjects: 1.536200 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 43.09 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 34 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 43.9 MB.
- System memory in use after: 43.2 MB.
- Unloading 34 unused Assets to reduce memory usage. Loaded Objects now: 2061.
- Total: 7.567600 ms (FindLiveObjects: 0.320600 ms CreateObjectMapping: 0.090000 ms MarkObjects: 5.738100 ms DeleteObjects: 1.416000 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.045519 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.26 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 6.225 seconds
- Domain Reload Profiling:
- ReloadAssembly (6227ms)
- BeginReloadAssembly (926ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (27ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (188ms)
- EndReloadAssembly (3807ms)
- LoadAssemblies (780ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (1186ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (133ms)
- SetupLoadedEditorAssemblies (1351ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (26ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (2ms)
- BeforeProcessingInitializeOnLoad (290ms)
- ProcessInitializeOnLoadAttributes (895ms)
- ProcessInitializeOnLoadMethodAttributes (47ms)
- AfterProcessingInitializeOnLoad (86ms)
- EditorAssembliesLoaded (4ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (44ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.71 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.6 MB.
- System memory in use after: 73.9 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2063.
- Total: 9.531100 ms (FindLiveObjects: 1.084800 ms CreateObjectMapping: 0.727400 ms MarkObjects: 6.269900 ms DeleteObjects: 1.445300 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 103.80 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 34 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 43.8 MB.
- System memory in use after: 43.2 MB.
- Unloading 34 unused Assets to reduce memory usage. Loaded Objects now: 2063.
- Total: 9.456600 ms (FindLiveObjects: 0.282600 ms CreateObjectMapping: 0.114900 ms MarkObjects: 7.397800 ms DeleteObjects: 1.658700 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.029870 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.96 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 3.607 seconds
- Domain Reload Profiling:
- ReloadAssembly (3608ms)
- BeginReloadAssembly (376ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (9ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (60ms)
- EndReloadAssembly (2872ms)
- LoadAssemblies (384ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (1513ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (149ms)
- SetupLoadedEditorAssemblies (654ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (12ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (150ms)
- ProcessInitializeOnLoadAttributes (414ms)
- ProcessInitializeOnLoadMethodAttributes (17ms)
- AfterProcessingInitializeOnLoad (58ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (12ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.50 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.6 MB.
- System memory in use after: 73.9 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2065.
- Total: 4.702200 ms (FindLiveObjects: 0.225600 ms CreateObjectMapping: 0.079800 ms MarkObjects: 3.256700 ms DeleteObjects: 1.138100 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.019149 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.12 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 2.701 seconds
- Domain Reload Profiling:
- ReloadAssembly (2702ms)
- BeginReloadAssembly (279ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (9ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (60ms)
- EndReloadAssembly (2247ms)
- LoadAssemblies (233ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (829ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (139ms)
- SetupLoadedEditorAssemblies (690ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (24ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (146ms)
- ProcessInitializeOnLoadAttributes (426ms)
- ProcessInitializeOnLoadMethodAttributes (18ms)
- AfterProcessingInitializeOnLoad (74ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (14ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.95 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.6 MB.
- System memory in use after: 73.9 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2067.
- Total: 16.465300 ms (FindLiveObjects: 2.743400 ms CreateObjectMapping: 1.641600 ms MarkObjects: 10.407700 ms DeleteObjects: 1.668500 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.018311 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.03 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 4.675 seconds
- Domain Reload Profiling:
- ReloadAssembly (4676ms)
- BeginReloadAssembly (2728ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (15ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (123ms)
- EndReloadAssembly (1675ms)
- LoadAssemblies (2044ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (545ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (80ms)
- SetupLoadedEditorAssemblies (660ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (11ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (144ms)
- ProcessInitializeOnLoadAttributes (421ms)
- ProcessInitializeOnLoadMethodAttributes (23ms)
- AfterProcessingInitializeOnLoad (58ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (12ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.03 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.6 MB.
- System memory in use after: 74.0 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2069.
- Total: 5.394900 ms (FindLiveObjects: 0.254800 ms CreateObjectMapping: 0.089600 ms MarkObjects: 4.008900 ms DeleteObjects: 1.039300 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.045039 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.33 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 2.113 seconds
- Domain Reload Profiling:
- ReloadAssembly (2114ms)
- BeginReloadAssembly (266ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (14ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (69ms)
- EndReloadAssembly (1672ms)
- LoadAssemblies (242ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (548ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (89ms)
- SetupLoadedEditorAssemblies (621ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (13ms)
- SetLoadedEditorAssemblies (3ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (143ms)
- ProcessInitializeOnLoadAttributes (389ms)
- ProcessInitializeOnLoadMethodAttributes (16ms)
- AfterProcessingInitializeOnLoad (55ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (12ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.00 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1587 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 74.6 MB.
- System memory in use after: 74.0 MB.
- Unloading 36 unused Assets to reduce memory usage. Loaded Objects now: 2071.
- Total: 5.051100 ms (FindLiveObjects: 0.268400 ms CreateObjectMapping: 0.080700 ms MarkObjects: 3.450700 ms DeleteObjects: 1.249000 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 3702.653310 seconds.
- path: Assets/ZFBrowser/Scripts/Editor
- artifactKey: Guid(4c5a65551ba9c9949a3b3fefeb7fc1bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ZFBrowser/Scripts/Editor using Guid(4c5a65551ba9c9949a3b3fefeb7fc1bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec52f5ed82b4f82fb928464e8fea61c3') in 0.027509 seconds
- Import took 0.032559 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.000499 seconds.
- path: Assets/ZFBrowser/Scripts/BrowserUI
- artifactKey: Guid(e460e45c0d5976544a2af3c86b00bdb9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ZFBrowser/Scripts/BrowserUI using Guid(e460e45c0d5976544a2af3c86b00bdb9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1d6c18b61f6ceb45ad9c8f07d13014d5') in 0.016389 seconds
- Import took 0.020399 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 2.922342 seconds.
- path: Assets/ZFBrowser
- artifactKey: Guid(2bdfa8f92270ec54482b7fe91dd23f8b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ZFBrowser using Guid(2bdfa8f92270ec54482b7fe91dd23f8b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4c3f69776a320df8fd9224da945581a0') in 0.027149 seconds
- Import took 0.032351 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.025650 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.92 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 2.118 seconds
- Domain Reload Profiling:
- ReloadAssembly (2119ms)
- BeginReloadAssembly (344ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (11ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (105ms)
- EndReloadAssembly (1606ms)
- LoadAssemblies (244ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (529ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (68ms)
- SetupLoadedEditorAssemblies (627ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (13ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (141ms)
- ProcessInitializeOnLoadAttributes (398ms)
- ProcessInitializeOnLoadMethodAttributes (17ms)
- AfterProcessingInitializeOnLoad (55ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (11ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 2.59 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1572 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 73.1 MB.
- System memory in use after: 73.2 MB.
- Unloading 45 unused Assets to reduce memory usage. Loaded Objects now: 2061.
- Total: 6.113700 ms (FindLiveObjects: 0.292600 ms CreateObjectMapping: 0.106400 ms MarkObjects: 5.660500 ms DeleteObjects: 0.051900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 50.282658 seconds.
- path: Assets/ZFBrowser/Plugins
- artifactKey: Guid(94231670bcb033f48b2b6c17f65718ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ZFBrowser/Plugins using Guid(94231670bcb033f48b2b6c17f65718ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '43a80fa3dacb504a742137af63eeb5cc') in 0.060891 seconds
- Import took 0.090241 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.019771 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.95 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 2.027 seconds
- Domain Reload Profiling:
- ReloadAssembly (2028ms)
- BeginReloadAssembly (255ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (8ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (52ms)
- EndReloadAssembly (1568ms)
- LoadAssemblies (232ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (526ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (83ms)
- SetupLoadedEditorAssemblies (599ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (12ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (136ms)
- ProcessInitializeOnLoadAttributes (357ms)
- ProcessInitializeOnLoadMethodAttributes (18ms)
- AfterProcessingInitializeOnLoad (74ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (12ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.94 ms, found 10 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1545 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.5 MB.
- System memory in use after: 72.7 MB.
- Unloading 55 unused Assets to reduce memory usage. Loaded Objects now: 2041.
- Total: 4.041200 ms (FindLiveObjects: 0.306700 ms CreateObjectMapping: 0.106200 ms MarkObjects: 3.580300 ms DeleteObjects: 0.045900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 9.440233 seconds.
- path: Assets/ZFBrowser/Plugins/CEFResources
- artifactKey: Guid(b78c7a8d91830584c8c68aefcc987c94) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ZFBrowser/Plugins/CEFResources using Guid(b78c7a8d91830584c8c68aefcc987c94) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6013eae645459ffa787f10c7b105d532') in 0.014912 seconds
- Import took 0.018245 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 13.468919 seconds.
- path: Assets/UCLAGameLab
- artifactKey: Guid(004eb26eb66263d45a34455beacc608a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/UCLAGameLab using Guid(004eb26eb66263d45a34455beacc608a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '65b7e086812897e5a6699613f311844e') in 0.012683 seconds
- Import took 0.017301 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.011058 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.92 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 3.902 seconds
- Domain Reload Profiling:
- ReloadAssembly (3903ms)
- BeginReloadAssembly (380ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (10ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (66ms)
- EndReloadAssembly (3261ms)
- LoadAssemblies (311ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (529ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (72ms)
- SetupLoadedEditorAssemblies (2306ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (14ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (197ms)
- ProcessInitializeOnLoadAttributes (1920ms)
- ProcessInitializeOnLoadMethodAttributes (94ms)
- AfterProcessingInitializeOnLoad (78ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (16ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.79 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1531 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.0 MB.
- System memory in use after: 72.1 MB.
- Unloading 19 unused Assets to reduce memory usage. Loaded Objects now: 2043.
- Total: 6.922700 ms (FindLiveObjects: 0.188700 ms CreateObjectMapping: 0.079800 ms MarkObjects: 6.616700 ms DeleteObjects: 0.035400 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 137.832413 seconds.
- path: Assets/ZFBrowser/Plugins
- artifactKey: Guid(94231670bcb033f48b2b6c17f65718ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ZFBrowser/Plugins using Guid(94231670bcb033f48b2b6c17f65718ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '216a4cf2ea4f58ca41e13d65379cbb91') in 0.031684 seconds
- Import took 0.036619 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.612664 seconds.
- path: Assets/ZFBrowser/Plugins/CEFResources
- artifactKey: Guid(b78c7a8d91830584c8c68aefcc987c94) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ZFBrowser/Plugins/CEFResources using Guid(b78c7a8d91830584c8c68aefcc987c94) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3dd730d30290cb11c9728695a8dc5b20') in 0.028121 seconds
- Import took 0.036250 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.626394 seconds.
- path: Assets/ZFBrowser/Plugins/CEFResources/locales
- artifactKey: Guid(45c9d019c8f1e3546ba1ceda2e723287) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ZFBrowser/Plugins/CEFResources/locales using Guid(45c9d019c8f1e3546ba1ceda2e723287) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5556275c5f2e950a301106b539e67ccd') in 0.023484 seconds
- Import took 0.028000 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 6.166239 seconds.
- path: Assets/ZFBrowser/Plugins/w64
- artifactKey: Guid(16e285afa1df1214897a9fb4c1af8ceb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ZFBrowser/Plugins/w64 using Guid(16e285afa1df1214897a9fb4c1af8ceb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cdac2b723e2c472418933bd8fac251d9') in 0.033263 seconds
- Import took 0.049665 seconds .
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 21.89 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 17 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 42.0 MB.
- System memory in use after: 42.1 MB.
- Unloading 17 unused Assets to reduce memory usage. Loaded Objects now: 2043.
- Total: 4.709300 ms (FindLiveObjects: 0.270400 ms CreateObjectMapping: 0.098200 ms MarkObjects: 4.304500 ms DeleteObjects: 0.033400 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 65308.340307 seconds.
- path: Assets/Plugins/__Internalplugins.jslib
- artifactKey: Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Plugins/__Internalplugins.jslib using Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '81541ffa24cf159c510bad613b0bf357') in 4.140102 seconds
- Import took 5.705697 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 44.762440 seconds.
- path: Assets/Plugins/__Internalplugins.jslib
- artifactKey: Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Plugins/__Internalplugins.jslib using Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f1e8f9d3b41ccaa1a23809c3c50cd801') in 0.016237 seconds
- Import took 0.082502 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 17.784836 seconds.
- path: Assets/Plugins/__Internalplugins.jslib
- artifactKey: Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Plugins/__Internalplugins.jslib using Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '55af08dcd676712b79ed600530961984') in 0.034923 seconds
- Import took 0.054433 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 41.138813 seconds.
- path: Assets/Plugins/__Internalplugins.jslib
- artifactKey: Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Plugins/__Internalplugins.jslib using Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cf81adeb004a27649694d7a79ce6fe4e') in 0.051600 seconds
- Import took 0.083942 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.145863 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 16.80 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 30.028 seconds
- Domain Reload Profiling:
- ReloadAssembly (30283ms)
- BeginReloadAssembly (14692ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (5331ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (7183ms)
- EndReloadAssembly (14436ms)
- LoadAssemblies (1677ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (6045ms)
- ReleaseScriptCaches (7ms)
- RebuildScriptCaches (250ms)
- SetupLoadedEditorAssemblies (5967ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (49ms)
- SetLoadedEditorAssemblies (13ms)
- RefreshPlugins (17ms)
- BeforeProcessingInitializeOnLoad (838ms)
- ProcessInitializeOnLoadAttributes (4828ms)
- ProcessInitializeOnLoadMethodAttributes (54ms)
- AfterProcessingInitializeOnLoad (167ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (46ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.98 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.0 MB.
- System memory in use after: 72.1 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2045.
- Total: 35.986700 ms (FindLiveObjects: 2.879200 ms CreateObjectMapping: 0.184500 ms MarkObjects: 32.770200 ms DeleteObjects: 0.085500 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.022193 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 2.50 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 9.652 seconds
- Domain Reload Profiling:
- ReloadAssembly (9653ms)
- BeginReloadAssembly (1167ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (19ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (168ms)
- EndReloadAssembly (7975ms)
- LoadAssemblies (1279ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (1005ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (91ms)
- SetupLoadedEditorAssemblies (2124ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (17ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (3ms)
- BeforeProcessingInitializeOnLoad (207ms)
- ProcessInitializeOnLoadAttributes (1487ms)
- ProcessInitializeOnLoadMethodAttributes (80ms)
- AfterProcessingInitializeOnLoad (328ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (40ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.72 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.0 MB.
- System memory in use after: 72.1 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2047.
- Total: 36.582500 ms (FindLiveObjects: 0.547200 ms CreateObjectMapping: 1.007700 ms MarkObjects: 34.986900 ms DeleteObjects: 0.038100 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 262.191616 seconds.
- path: Assets/Plugins/iframejs.jslib
- artifactKey: Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Plugins/iframejs.jslib using Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '80435bc2fdcbb484a7253d9135170ed0') in 0.174336 seconds
- Import took 0.213081 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.034298 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.14 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 13.649 seconds
- Domain Reload Profiling:
- ReloadAssembly (13650ms)
- BeginReloadAssembly (3297ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (62ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (2ms)
- CreateAndSetChildDomain (201ms)
- EndReloadAssembly (9435ms)
- LoadAssemblies (3287ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (2136ms)
- ReleaseScriptCaches (4ms)
- RebuildScriptCaches (203ms)
- SetupLoadedEditorAssemblies (2132ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (62ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (665ms)
- ProcessInitializeOnLoadAttributes (1199ms)
- ProcessInitializeOnLoadMethodAttributes (70ms)
- AfterProcessingInitializeOnLoad (134ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (47ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 6.92 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.0 MB.
- System memory in use after: 72.1 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2049.
- Total: 15.035000 ms (FindLiveObjects: 0.439500 ms CreateObjectMapping: 0.099100 ms MarkObjects: 6.820700 ms DeleteObjects: 7.672900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.027544 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.85 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 12.994 seconds
- Domain Reload Profiling:
- ReloadAssembly (12995ms)
- BeginReloadAssembly (3549ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (22ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (202ms)
- EndReloadAssembly (8362ms)
- LoadAssemblies (3566ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (1996ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (145ms)
- SetupLoadedEditorAssemblies (5159ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (28ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (684ms)
- ProcessInitializeOnLoadAttributes (4196ms)
- ProcessInitializeOnLoadMethodAttributes (55ms)
- AfterProcessingInitializeOnLoad (189ms)
- EditorAssembliesLoaded (4ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (23ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.02 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.0 MB.
- System memory in use after: 72.1 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2051.
- Total: 8.112600 ms (FindLiveObjects: 0.353400 ms CreateObjectMapping: 0.119900 ms MarkObjects: 7.603900 ms DeleteObjects: 0.032800 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.237126 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.43 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 28.779 seconds
- Domain Reload Profiling:
- ReloadAssembly (28780ms)
- BeginReloadAssembly (4200ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (25ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (216ms)
- EndReloadAssembly (23191ms)
- LoadAssemblies (4391ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (7311ms)
- ReleaseScriptCaches (36ms)
- RebuildScriptCaches (4598ms)
- SetupLoadedEditorAssemblies (6155ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (49ms)
- SetLoadedEditorAssemblies (3ms)
- RefreshPlugins (2ms)
- BeforeProcessingInitializeOnLoad (919ms)
- ProcessInitializeOnLoadAttributes (4896ms)
- ProcessInitializeOnLoadMethodAttributes (73ms)
- AfterProcessingInitializeOnLoad (213ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (51ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.69 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.0 MB.
- System memory in use after: 72.1 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2053.
- Total: 5.635400 ms (FindLiveObjects: 0.271500 ms CreateObjectMapping: 0.099700 ms MarkObjects: 5.194700 ms DeleteObjects: 0.066900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.048195 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 3.79 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 19.854 seconds
- Domain Reload Profiling:
- ReloadAssembly (19856ms)
- BeginReloadAssembly (1322ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (15ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (246ms)
- EndReloadAssembly (14757ms)
- LoadAssemblies (1150ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (2517ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (440ms)
- SetupLoadedEditorAssemblies (3000ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (40ms)
- SetLoadedEditorAssemblies (3ms)
- RefreshPlugins (4ms)
- BeforeProcessingInitializeOnLoad (680ms)
- ProcessInitializeOnLoadAttributes (1934ms)
- ProcessInitializeOnLoadMethodAttributes (63ms)
- AfterProcessingInitializeOnLoad (272ms)
- EditorAssembliesLoaded (4ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (3782ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.56 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.0 MB.
- System memory in use after: 72.1 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2055.
- Total: 11.492300 ms (FindLiveObjects: 0.715300 ms CreateObjectMapping: 0.160600 ms MarkObjects: 10.576800 ms DeleteObjects: 0.037300 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.025557 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.28 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 10.189 seconds
- Domain Reload Profiling:
- ReloadAssembly (10196ms)
- BeginReloadAssembly (838ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (22ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (211ms)
- EndReloadAssembly (8816ms)
- LoadAssemblies (723ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (1694ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (261ms)
- SetupLoadedEditorAssemblies (5589ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (29ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (4086ms)
- ProcessInitializeOnLoadAttributes (1218ms)
- ProcessInitializeOnLoadMethodAttributes (67ms)
- AfterProcessingInitializeOnLoad (185ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (33ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.16 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.0 MB.
- System memory in use after: 72.1 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2057.
- Total: 5.913200 ms (FindLiveObjects: 0.368800 ms CreateObjectMapping: 0.101200 ms MarkObjects: 5.413800 ms DeleteObjects: 0.026900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 549.275844 seconds.
- path: Assets/Plugins/iframejs.jslib
- artifactKey: Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Plugins/iframejs.jslib using Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e185ac42917ac3ff52364d686f432afa') in 0.072661 seconds
- Import took 0.115279 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.020067 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.91 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 8.104 seconds
- Domain Reload Profiling:
- ReloadAssembly (8105ms)
- BeginReloadAssembly (840ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (16ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (132ms)
- EndReloadAssembly (6419ms)
- LoadAssemblies (838ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (3085ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (130ms)
- SetupLoadedEditorAssemblies (2210ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (27ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (631ms)
- ProcessInitializeOnLoadAttributes (1375ms)
- ProcessInitializeOnLoadMethodAttributes (46ms)
- AfterProcessingInitializeOnLoad (128ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (22ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 5.51 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.0 MB.
- System memory in use after: 72.1 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2059.
- Total: 14.558100 ms (FindLiveObjects: 0.470900 ms CreateObjectMapping: 0.199700 ms MarkObjects: 13.370100 ms DeleteObjects: 0.421700 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 71.694554 seconds.
- path: Assets/Plugins/iframejs.jslib
- artifactKey: Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Plugins/iframejs.jslib using Guid(9f1e226754845f043b995ce8f5a6a31d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5b80d861eb03a72cbc1cc1d31b7272d3') in 0.072575 seconds
- Import took 0.087999 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.052418 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.94 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 11.281 seconds
- Domain Reload Profiling:
- ReloadAssembly (11282ms)
- BeginReloadAssembly (4432ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (69ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (181ms)
- EndReloadAssembly (5428ms)
- LoadAssemblies (4545ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (1222ms)
- ReleaseScriptCaches (6ms)
- RebuildScriptCaches (135ms)
- SetupLoadedEditorAssemblies (2927ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (14ms)
- SetLoadedEditorAssemblies (5ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (177ms)
- ProcessInitializeOnLoadAttributes (1372ms)
- ProcessInitializeOnLoadMethodAttributes (492ms)
- AfterProcessingInitializeOnLoad (865ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (64ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.18 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.0 MB.
- System memory in use after: 72.1 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2061.
- Total: 11.530000 ms (FindLiveObjects: 0.302000 ms CreateObjectMapping: 0.124300 ms MarkObjects: 11.055400 ms DeleteObjects: 0.045100 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 24.88 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 42.1 MB.
- System memory in use after: 42.2 MB.
- Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2061.
- Total: 8.270200 ms (FindLiveObjects: 0.273700 ms CreateObjectMapping: 0.103400 ms MarkObjects: 7.862200 ms DeleteObjects: 0.028900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 1041.503326 seconds.
- path: Packages/com.unity.ugui
- artifactKey: Guid(8f7652e09069a1943278893d4264401e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Packages/com.unity.ugui using Guid(8f7652e09069a1943278893d4264401e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9be8eef517426cf4e5d1ef023f0f7cab') in 0.030939 seconds
- Import took 0.069530 seconds .
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 18.86 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 42.1 MB.
- System memory in use after: 42.2 MB.
- Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2061.
- Total: 4.770400 ms (FindLiveObjects: 0.197800 ms CreateObjectMapping: 0.076000 ms MarkObjects: 4.466500 ms DeleteObjects: 0.027600 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 5.809991 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 14.42 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 24.350 seconds
- Domain Reload Profiling:
- ReloadAssembly (24664ms)
- BeginReloadAssembly (8366ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (846ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (23ms)
- CreateAndSetChildDomain (5202ms)
- EndReloadAssembly (14988ms)
- LoadAssemblies (6090ms)
- RebuildTransferFunctionScriptingTraits (1ms)
- SetupTypeCache (2765ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (276ms)
- SetupLoadedEditorAssemblies (5456ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (73ms)
- SetLoadedEditorAssemblies (15ms)
- RefreshPlugins (15ms)
- BeforeProcessingInitializeOnLoad (3287ms)
- ProcessInitializeOnLoadAttributes (1743ms)
- ProcessInitializeOnLoadMethodAttributes (70ms)
- AfterProcessingInitializeOnLoad (252ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (45ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.38 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.0 MB.
- System memory in use after: 72.1 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2063.
- Total: 39.503200 ms (FindLiveObjects: 3.251100 ms CreateObjectMapping: 0.889500 ms MarkObjects: 24.041300 ms DeleteObjects: 11.317400 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 7.101191 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 4.04 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 23.523 seconds
- Domain Reload Profiling:
- ReloadAssembly (23649ms)
- BeginReloadAssembly (9640ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (1471ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (27ms)
- CreateAndSetChildDomain (1837ms)
- EndReloadAssembly (12581ms)
- LoadAssemblies (5195ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (4793ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (294ms)
- SetupLoadedEditorAssemblies (4735ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (51ms)
- SetLoadedEditorAssemblies (9ms)
- RefreshPlugins (4ms)
- BeforeProcessingInitializeOnLoad (691ms)
- ProcessInitializeOnLoadAttributes (3299ms)
- ProcessInitializeOnLoadMethodAttributes (478ms)
- AfterProcessingInitializeOnLoad (202ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (46ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 7.06 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.0 MB.
- System memory in use after: 72.1 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2065.
- Total: 21.177500 ms (FindLiveObjects: 0.324700 ms CreateObjectMapping: 0.117300 ms MarkObjects: 20.530300 ms DeleteObjects: 0.201000 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.102482 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 7.47 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 8.372 seconds
- Domain Reload Profiling:
- ReloadAssembly (8395ms)
- BeginReloadAssembly (1446ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (141ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (374ms)
- EndReloadAssembly (6244ms)
- LoadAssemblies (1405ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (2016ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (111ms)
- SetupLoadedEditorAssemblies (2446ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (31ms)
- SetLoadedEditorAssemblies (5ms)
- RefreshPlugins (8ms)
- BeforeProcessingInitializeOnLoad (385ms)
- ProcessInitializeOnLoadAttributes (1789ms)
- ProcessInitializeOnLoadMethodAttributes (48ms)
- AfterProcessingInitializeOnLoad (180ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (33ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.87 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.0 MB.
- System memory in use after: 72.1 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2067.
- Total: 11.095300 ms (FindLiveObjects: 0.201100 ms CreateObjectMapping: 0.075200 ms MarkObjects: 10.649800 ms DeleteObjects: 0.166100 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.047184 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.29 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 9.878 seconds
- Domain Reload Profiling:
- ReloadAssembly (9879ms)
- BeginReloadAssembly (1250ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (78ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (132ms)
- EndReloadAssembly (8117ms)
- LoadAssemblies (1144ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (3499ms)
- ReleaseScriptCaches (10ms)
- RebuildScriptCaches (209ms)
- SetupLoadedEditorAssemblies (2708ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (46ms)
- SetLoadedEditorAssemblies (11ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (1175ms)
- ProcessInitializeOnLoadAttributes (1211ms)
- ProcessInitializeOnLoadMethodAttributes (67ms)
- AfterProcessingInitializeOnLoad (195ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (47ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.31 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.0 MB.
- System memory in use after: 72.1 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2069.
- Total: 21.494700 ms (FindLiveObjects: 0.378100 ms CreateObjectMapping: 0.132200 ms MarkObjects: 20.931600 ms DeleteObjects: 0.048600 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.091416 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.26 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 6.675 seconds
- Domain Reload Profiling:
- ReloadAssembly (6676ms)
- BeginReloadAssembly (522ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (9ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (120ms)
- EndReloadAssembly (5643ms)
- LoadAssemblies (476ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (1770ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (250ms)
- SetupLoadedEditorAssemblies (1826ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (28ms)
- SetLoadedEditorAssemblies (2ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (316ms)
- ProcessInitializeOnLoadAttributes (1219ms)
- ProcessInitializeOnLoadMethodAttributes (67ms)
- AfterProcessingInitializeOnLoad (192ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (44ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.69 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.0 MB.
- System memory in use after: 72.2 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2071.
- Total: 13.493700 ms (FindLiveObjects: 0.271600 ms CreateObjectMapping: 0.312000 ms MarkObjects: 12.848900 ms DeleteObjects: 0.058400 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 81881.846647 seconds.
- path: Assets/Scenes/door.unity
- artifactKey: Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/door.unity using Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '71d3bce3fd85ccb7f7b5efc657f9443d') in 0.124697 seconds
- Import took 0.163131 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.018428 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.87 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 4.029 seconds
- Domain Reload Profiling:
- ReloadAssembly (4030ms)
- BeginReloadAssembly (831ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (27ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (160ms)
- EndReloadAssembly (2747ms)
- LoadAssemblies (627ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (854ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (120ms)
- SetupLoadedEditorAssemblies (1002ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (14ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (204ms)
- ProcessInitializeOnLoadAttributes (593ms)
- ProcessInitializeOnLoadMethodAttributes (25ms)
- AfterProcessingInitializeOnLoad (163ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (1ms)
- AwakeInstancesAfterBackupRestoration (26ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.05 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.1 MB.
- System memory in use after: 72.2 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2073.
- Total: 7.899800 ms (FindLiveObjects: 0.295500 ms CreateObjectMapping: 0.094600 ms MarkObjects: 7.473700 ms DeleteObjects: 0.033200 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.031916 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.52 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 6.146 seconds
- Domain Reload Profiling:
- ReloadAssembly (6148ms)
- BeginReloadAssembly (478ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (11ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (106ms)
- EndReloadAssembly (5298ms)
- LoadAssemblies (488ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (3204ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (184ms)
- SetupLoadedEditorAssemblies (1180ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (14ms)
- SetLoadedEditorAssemblies (4ms)
- RefreshPlugins (2ms)
- BeforeProcessingInitializeOnLoad (267ms)
- ProcessInitializeOnLoadAttributes (770ms)
- ProcessInitializeOnLoadMethodAttributes (27ms)
- AfterProcessingInitializeOnLoad (96ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (25ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.88 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.1 MB.
- System memory in use after: 72.2 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2075.
- Total: 8.215200 ms (FindLiveObjects: 0.268700 ms CreateObjectMapping: 0.094700 ms MarkObjects: 7.811300 ms DeleteObjects: 0.037700 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 804.031526 seconds.
- path: Assets/Scenes/curtains.unity
- artifactKey: Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/curtains.unity using Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3fe022c7a4712f3d1ead87a4274b2b4d') in 0.080816 seconds
- Import took 0.116091 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 21.403162 seconds.
- path: Assets/Scenes/door.unity
- artifactKey: Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/door.unity using Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1b836bb9f0b00291a9212ba350ef1ec2') in 0.018420 seconds
- Import took 0.043827 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 37.195341 seconds.
- path: Assets/Scenes/door.unity
- artifactKey: Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/door.unity using Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3e9433850c99065d8b6dec862cff6f2d') in 0.062212 seconds
- Import took 0.100559 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 102.364006 seconds.
- path: Assets/Scenes/curtains.unity
- artifactKey: Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/curtains.unity using Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ffedb71fc4cbd50291a09d7a6fbe4478') in 0.030436 seconds
- Import took 0.066574 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.052680 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 3.93 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 11.291 seconds
- Domain Reload Profiling:
- ReloadAssembly (11293ms)
- BeginReloadAssembly (773ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (27ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (126ms)
- EndReloadAssembly (9986ms)
- LoadAssemblies (778ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (3872ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (202ms)
- SetupLoadedEditorAssemblies (2380ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (47ms)
- SetLoadedEditorAssemblies (13ms)
- RefreshPlugins (4ms)
- BeforeProcessingInitializeOnLoad (421ms)
- ProcessInitializeOnLoadAttributes (1227ms)
- ProcessInitializeOnLoadMethodAttributes (51ms)
- AfterProcessingInitializeOnLoad (615ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (1987ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.89 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.1 MB.
- System memory in use after: 72.2 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2077.
- Total: 4.961600 ms (FindLiveObjects: 0.309800 ms CreateObjectMapping: 0.114700 ms MarkObjects: 4.508700 ms DeleteObjects: 0.026300 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.043526 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.88 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 8.432 seconds
- Domain Reload Profiling:
- ReloadAssembly (8433ms)
- BeginReloadAssembly (669ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (10ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (57ms)
- EndReloadAssembly (7338ms)
- LoadAssemblies (775ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (1738ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (152ms)
- SetupLoadedEditorAssemblies (1647ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (52ms)
- SetLoadedEditorAssemblies (3ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (564ms)
- ProcessInitializeOnLoadAttributes (931ms)
- ProcessInitializeOnLoadMethodAttributes (19ms)
- AfterProcessingInitializeOnLoad (77ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (16ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.81 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.1 MB.
- System memory in use after: 72.2 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2079.
- Total: 5.924700 ms (FindLiveObjects: 0.196900 ms CreateObjectMapping: 0.082600 ms MarkObjects: 5.611900 ms DeleteObjects: 0.031400 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.015025 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.01 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 6.001 seconds
- Domain Reload Profiling:
- ReloadAssembly (6003ms)
- BeginReloadAssembly (512ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (34ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (121ms)
- EndReloadAssembly (5158ms)
- LoadAssemblies (390ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (833ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (104ms)
- SetupLoadedEditorAssemblies (3617ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (17ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (230ms)
- ProcessInitializeOnLoadAttributes (772ms)
- ProcessInitializeOnLoadMethodAttributes (586ms)
- AfterProcessingInitializeOnLoad (2010ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (23ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 2.26 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.1 MB.
- System memory in use after: 72.2 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2081.
- Total: 88.959500 ms (FindLiveObjects: 0.281300 ms CreateObjectMapping: 0.107200 ms MarkObjects: 88.528300 ms DeleteObjects: 0.039500 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 246.174974 seconds.
- path: Assets/Scenes/door.unity
- artifactKey: Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/door.unity using Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f4dd3c68dbae5ab5076a194435a89b12') in 0.036964 seconds
- Import took 0.058276 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.016414 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.08 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 6.425 seconds
- Domain Reload Profiling:
- ReloadAssembly (6426ms)
- BeginReloadAssembly (483ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (15ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (66ms)
- EndReloadAssembly (5597ms)
- LoadAssemblies (406ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (3488ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (133ms)
- SetupLoadedEditorAssemblies (1215ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (21ms)
- SetLoadedEditorAssemblies (3ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (251ms)
- ProcessInitializeOnLoadAttributes (740ms)
- ProcessInitializeOnLoadMethodAttributes (30ms)
- AfterProcessingInitializeOnLoad (166ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (19ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.82 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 72.1 MB.
- System memory in use after: 72.2 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2083.
- Total: 5.218400 ms (FindLiveObjects: 0.305600 ms CreateObjectMapping: 0.110200 ms MarkObjects: 4.763800 ms DeleteObjects: 0.036700 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 60.107510 seconds.
- path: Assets/Scenes/curtains.unity
- artifactKey: Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/curtains.unity using Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e75d6d96e6b37f57967774dba7173c98') in 0.031414 seconds
- Import took 0.054127 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 50.402353 seconds.
- path: Assets/UCLAGameLab/Materials/j1.material.mat
- artifactKey: Guid(94309788884baa34a9c4e261d18a468c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/UCLAGameLab/Materials/j1.material.mat using Guid(94309788884baa34a9c4e261d18a468c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '224461291d9f204abd25b4dd33e38b1f') in 4.774199 seconds
- Import took 4.806948 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.000230 seconds.
- path: Assets/UCLAGameLab/Materials/j22.material.mat
- artifactKey: Guid(947f283d84a1bd141a376d392ad57f4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/UCLAGameLab/Materials/j22.material.mat using Guid(947f283d84a1bd141a376d392ad57f4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c596208a5608bc3bec89623049363f7f') in 0.186951 seconds
- Import took 0.241846 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.000349 seconds.
- path: Assets/UCLAGameLab/Materials/j21.material.mat
- artifactKey: Guid(1f9673d30929b63418b26e68af406738) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/UCLAGameLab/Materials/j21.material.mat using Guid(1f9673d30929b63418b26e68af406738) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '404c575a5a272617ed0a39d51d622d85') in 0.086355 seconds
- Import took 0.113146 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.000468 seconds.
- path: Assets/UCLAGameLab/Materials/light.material.mat
- artifactKey: Guid(38cc4f7384e5f754f83ab765632cec97) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/UCLAGameLab/Materials/light.material.mat using Guid(38cc4f7384e5f754f83ab765632cec97) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '98adbc296fbb2a06940a135c0feb6c81') in 0.082843 seconds
- Import took 0.087467 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.001781 seconds.
- path: Assets/UCLAGameLab/Materials/j2.material.mat
- artifactKey: Guid(21c99f94d03219e41af987bad8ef9b04) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/UCLAGameLab/Materials/j2.material.mat using Guid(21c99f94d03219e41af987bad8ef9b04) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9e606f5422731c71c396dd4edfb645c9') in 0.051311 seconds
- Import took 0.090460 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 28.274941 seconds.
- path: Assets/Skybox/HDRI_Training_Stage_MAT.mat
- artifactKey: Guid(080351b8a7aaef748bb430ed2e1b224a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Skybox/HDRI_Training_Stage_MAT.mat using Guid(080351b8a7aaef748bb430ed2e1b224a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ca5d2948f26b5c52bb1020434363d083') in 0.326558 seconds
- Import took 0.382595 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 5.748044 seconds.
- path: Assets/Scenes/door.unity
- artifactKey: Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/door.unity using Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f1588ac63377b6dfb400dfc3f147448d') in 0.027613 seconds
- Import took 0.053296 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 83.021444 seconds.
- path: Assets/font/MSYHL.TTC
- artifactKey: Guid(baba003c233d6d74194523c0173b6f87) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/font/MSYHL.TTC using Guid(baba003c233d6d74194523c0173b6f87) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '101ca50dfe88247a6752e9e9038b2164') in 0.511044 seconds
- Import took 0.546469 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.022483 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.01 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 10.503 seconds
- Domain Reload Profiling:
- ReloadAssembly (10507ms)
- BeginReloadAssembly (937ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (19ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (132ms)
- EndReloadAssembly (3369ms)
- LoadAssemblies (840ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (1251ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (165ms)
- SetupLoadedEditorAssemblies (1058ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (17ms)
- SetLoadedEditorAssemblies (2ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (256ms)
- ProcessInitializeOnLoadAttributes (662ms)
- ProcessInitializeOnLoadMethodAttributes (30ms)
- AfterProcessingInitializeOnLoad (91ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (23ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.32 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 75.5 MB.
- System memory in use after: 75.6 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2129.
- Total: 3.914000 ms (FindLiveObjects: 0.370400 ms CreateObjectMapping: 0.093900 ms MarkObjects: 3.416600 ms DeleteObjects: 0.031300 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.056571 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 2.05 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 7.508 seconds
- Domain Reload Profiling:
- ReloadAssembly (7509ms)
- BeginReloadAssembly (483ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (29ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (74ms)
- EndReloadAssembly (6656ms)
- LoadAssemblies (586ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (1407ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (2834ms)
- SetupLoadedEditorAssemblies (1330ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (19ms)
- SetLoadedEditorAssemblies (2ms)
- RefreshPlugins (2ms)
- BeforeProcessingInitializeOnLoad (328ms)
- ProcessInitializeOnLoadAttributes (816ms)
- ProcessInitializeOnLoadMethodAttributes (45ms)
- AfterProcessingInitializeOnLoad (118ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (26ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.61 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 75.5 MB.
- System memory in use after: 75.6 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2131.
- Total: 8.046900 ms (FindLiveObjects: 0.293500 ms CreateObjectMapping: 0.096000 ms MarkObjects: 7.619100 ms DeleteObjects: 0.035500 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.011592 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.79 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 8.234 seconds
- Domain Reload Profiling:
- ReloadAssembly (8235ms)
- BeginReloadAssembly (362ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (12ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (63ms)
- EndReloadAssembly (7622ms)
- LoadAssemblies (330ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (1357ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (133ms)
- SetupLoadedEditorAssemblies (4970ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (26ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (2ms)
- BeforeProcessingInitializeOnLoad (287ms)
- ProcessInitializeOnLoadAttributes (3847ms)
- ProcessInitializeOnLoadMethodAttributes (202ms)
- AfterProcessingInitializeOnLoad (602ms)
- EditorAssembliesLoaded (2ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (157ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.43 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 75.5 MB.
- System memory in use after: 75.7 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2133.
- Total: 10.050000 ms (FindLiveObjects: 1.169000 ms CreateObjectMapping: 0.338000 ms MarkObjects: 8.484600 ms DeleteObjects: 0.048000 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.031143 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 2.25 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 4.984 seconds
- Domain Reload Profiling:
- ReloadAssembly (4985ms)
- BeginReloadAssembly (304ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (10ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (64ms)
- EndReloadAssembly (4470ms)
- LoadAssemblies (313ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (818ms)
- ReleaseScriptCaches (6ms)
- RebuildScriptCaches (1571ms)
- SetupLoadedEditorAssemblies (1255ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (232ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (7ms)
- BeforeProcessingInitializeOnLoad (435ms)
- ProcessInitializeOnLoadAttributes (496ms)
- ProcessInitializeOnLoadMethodAttributes (19ms)
- AfterProcessingInitializeOnLoad (65ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (14ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.85 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 75.5 MB.
- System memory in use after: 75.7 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2135.
- Total: 5.628200 ms (FindLiveObjects: 0.243200 ms CreateObjectMapping: 0.088300 ms MarkObjects: 5.256200 ms DeleteObjects: 0.038300 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.112865 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 8.58 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 13.022 seconds
- Domain Reload Profiling:
- ReloadAssembly (13026ms)
- BeginReloadAssembly (1038ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (22ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (201ms)
- EndReloadAssembly (8728ms)
- LoadAssemblies (820ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (1617ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (166ms)
- SetupLoadedEditorAssemblies (5341ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (232ms)
- SetLoadedEditorAssemblies (9ms)
- RefreshPlugins (9ms)
- BeforeProcessingInitializeOnLoad (550ms)
- ProcessInitializeOnLoadAttributes (3980ms)
- ProcessInitializeOnLoadMethodAttributes (118ms)
- AfterProcessingInitializeOnLoad (442ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (65ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.24 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 75.5 MB.
- System memory in use after: 75.7 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2137.
- Total: 6.298400 ms (FindLiveObjects: 0.607500 ms CreateObjectMapping: 0.808400 ms MarkObjects: 4.845000 ms DeleteObjects: 0.034600 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.042065 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 2.34 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 14.167 seconds
- Domain Reload Profiling:
- ReloadAssembly (14169ms)
- BeginReloadAssembly (3447ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (48ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (166ms)
- EndReloadAssembly (9621ms)
- LoadAssemblies (3552ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (2745ms)
- ReleaseScriptCaches (17ms)
- RebuildScriptCaches (328ms)
- SetupLoadedEditorAssemblies (2021ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (45ms)
- SetLoadedEditorAssemblies (4ms)
- RefreshPlugins (3ms)
- BeforeProcessingInitializeOnLoad (472ms)
- ProcessInitializeOnLoadAttributes (1162ms)
- ProcessInitializeOnLoadMethodAttributes (92ms)
- AfterProcessingInitializeOnLoad (236ms)
- EditorAssembliesLoaded (9ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (35ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.47 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 75.6 MB.
- System memory in use after: 75.7 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2139.
- Total: 9.232600 ms (FindLiveObjects: 0.331000 ms CreateObjectMapping: 0.112000 ms MarkObjects: 8.671200 ms DeleteObjects: 0.049200 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 892.242813 seconds.
- path: Assets/Scenes/curtains.unity
- artifactKey: Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/curtains.unity using Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '118faf718c004c1a30f6909ae618d392') in 0.485544 seconds
- Import took 0.540003 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 21.354477 seconds.
- path: Assets/Scenes/light.unity
- artifactKey: Guid(268d2d9c1542e7843867b525e8b8bf90) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/light.unity using Guid(268d2d9c1542e7843867b525e8b8bf90) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a3a403658ae842e319fdaf0dbc663a05') in 0.032641 seconds
- Import took 0.059643 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 2.286930 seconds.
- path: Assets/Scenes/curtains.unity
- artifactKey: Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/curtains.unity using Guid(123917f2c2972c34b94c13bc0888f3e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e0bf8c029fcb28cccf671c4bb8382fe7') in 0.034219 seconds
- Import took 0.048087 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 39.261056 seconds.
- path: Assets/Scenes/door.unity
- artifactKey: Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/door.unity using Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7ea6f029c505cab14889abd37a2eb23c') in 0.040920 seconds
- Import took 0.059812 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 23.848881 seconds.
- path: Assets/Scenes/door.unity
- artifactKey: Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/door.unity using Guid(38c4f74b9ecd08c42899b371663c91a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '40c5c36cd0b325a722cc2f4cf4f16ae3') in 0.020248 seconds
- Import took 0.047611 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 9.694430 seconds.
- path: Assets/Scenes/light.unity
- artifactKey: Guid(268d2d9c1542e7843867b525e8b8bf90) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/light.unity using Guid(268d2d9c1542e7843867b525e8b8bf90) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '19de474ccabd64ae593b140fb1535183') in 0.132972 seconds
- Import took 0.189606 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 102.413872 seconds.
- path: Assets/Scenes/pay.unity
- artifactKey: Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/pay.unity using Guid(fe336db699ed5534b954fc84db358618) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b7c1d429a9c49bb9a4f79c0eec3aff08') in 0.034290 seconds
- Import took 0.062460 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 56.950834 seconds.
- path: Assets/Scenes/police.unity
- artifactKey: Guid(3fd15f8ecbaaeee458776b87f509b0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/police.unity using Guid(3fd15f8ecbaaeee458776b87f509b0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7df313ac7bee90bb56c87d7ae7b03a9d') in 0.026306 seconds
- Import took 0.052973 seconds .
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 13.60 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 45.7 MB.
- System memory in use after: 45.8 MB.
- Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2139.
- Total: 5.025700 ms (FindLiveObjects: 0.305900 ms CreateObjectMapping: 0.190000 ms MarkObjects: 4.501200 ms DeleteObjects: 0.026600 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 492.560642 seconds.
- path: Assets/Scenes/necklace.unity
- artifactKey: Guid(4b39883dc7d6ad640ad6571bab9959bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Scenes/necklace.unity using Guid(4b39883dc7d6ad640ad6571bab9959bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a61cb628f43c5e5e7ea84d1303cad11') in 0.067672 seconds
- Import took 0.300461 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.061793 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.95 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 25.770 seconds
- Domain Reload Profiling:
- ReloadAssembly (25782ms)
- BeginReloadAssembly (1154ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (20ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (183ms)
- EndReloadAssembly (17354ms)
- LoadAssemblies (1382ms)
- RebuildTransferFunctionScriptingTraits (7ms)
- SetupTypeCache (8091ms)
- ReleaseScriptCaches (10ms)
- RebuildScriptCaches (541ms)
- SetupLoadedEditorAssemblies (2799ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (38ms)
- SetLoadedEditorAssemblies (11ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (564ms)
- ProcessInitializeOnLoadAttributes (1841ms)
- ProcessInitializeOnLoadMethodAttributes (62ms)
- AfterProcessingInitializeOnLoad (281ms)
- EditorAssembliesLoaded (3ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (69ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 5.44 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 75.6 MB.
- System memory in use after: 75.7 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2141.
- Total: 18.752200 ms (FindLiveObjects: 0.435300 ms CreateObjectMapping: 0.441400 ms MarkObjects: 17.737400 ms DeleteObjects: 0.103800 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 98.049178 seconds.
- path: Assets/script/MoveNecklace.cs
- artifactKey: Guid(8a097ffe345cd014abc9c567adf9f885) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/script/MoveNecklace.cs using Guid(8a097ffe345cd014abc9c567adf9f885) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f3fde68ffcf5c43016755acd62737271') in 0.079344 seconds
- Import took 0.117149 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.013962 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.47 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 5.388 seconds
- Domain Reload Profiling:
- ReloadAssembly (5391ms)
- BeginReloadAssembly (569ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (9ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (218ms)
- EndReloadAssembly (4563ms)
- LoadAssemblies (385ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (735ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (97ms)
- SetupLoadedEditorAssemblies (1282ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (82ms)
- SetLoadedEditorAssemblies (2ms)
- RefreshPlugins (2ms)
- BeforeProcessingInitializeOnLoad (392ms)
- ProcessInitializeOnLoadAttributes (655ms)
- ProcessInitializeOnLoadMethodAttributes (48ms)
- AfterProcessingInitializeOnLoad (102ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (20ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.80 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 75.6 MB.
- System memory in use after: 75.7 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2143.
- Total: 5.418900 ms (FindLiveObjects: 0.193700 ms CreateObjectMapping: 0.081900 ms MarkObjects: 5.050700 ms DeleteObjects: 0.089900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.016244 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.50 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 7.901 seconds
- Domain Reload Profiling:
- ReloadAssembly (7902ms)
- BeginReloadAssembly (371ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (13ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (85ms)
- EndReloadAssembly (7165ms)
- LoadAssemblies (401ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (1331ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (217ms)
- SetupLoadedEditorAssemblies (2148ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (55ms)
- SetLoadedEditorAssemblies (11ms)
- RefreshPlugins (2ms)
- BeforeProcessingInitializeOnLoad (670ms)
- ProcessInitializeOnLoadAttributes (1268ms)
- ProcessInitializeOnLoadMethodAttributes (31ms)
- AfterProcessingInitializeOnLoad (111ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (31ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.31 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 75.6 MB.
- System memory in use after: 75.7 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2145.
- Total: 185.196300 ms (FindLiveObjects: 104.097300 ms CreateObjectMapping: 8.471100 ms MarkObjects: 72.575300 ms DeleteObjects: 0.048500 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 65.856180 seconds.
- path: Assets/script/MoveNecklace.cs
- artifactKey: Guid(8a097ffe345cd014abc9c567adf9f885) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/script/MoveNecklace.cs using Guid(8a097ffe345cd014abc9c567adf9f885) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aea0c5575c34e2f8fea3cbac2c4c01a6') in 0.085856 seconds
- Import took 0.153636 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.024086 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 1.00 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 24.382 seconds
- Domain Reload Profiling:
- ReloadAssembly (24385ms)
- BeginReloadAssembly (730ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (51ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (120ms)
- EndReloadAssembly (23170ms)
- LoadAssemblies (578ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (5756ms)
- ReleaseScriptCaches (15ms)
- RebuildScriptCaches (2485ms)
- SetupLoadedEditorAssemblies (8499ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (133ms)
- SetLoadedEditorAssemblies (2ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (1342ms)
- ProcessInitializeOnLoadAttributes (6402ms)
- ProcessInitializeOnLoadMethodAttributes (115ms)
- AfterProcessingInitializeOnLoad (498ms)
- EditorAssembliesLoaded (6ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (118ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.92 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 75.6 MB.
- System memory in use after: 75.7 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2147.
- Total: 13.629800 ms (FindLiveObjects: 0.321500 ms CreateObjectMapping: 0.112400 ms MarkObjects: 13.140600 ms DeleteObjects: 0.051500 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 123.562896 seconds.
- path: Assets/script/MoveNecklace.cs
- artifactKey: Guid(8a097ffe345cd014abc9c567adf9f885) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/script/MoveNecklace.cs using Guid(8a097ffe345cd014abc9c567adf9f885) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '23df402dc3e9bcf7bee1a70a6e9df31e') in 0.017715 seconds
- Import took 0.073703 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.021644 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.89 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 2.756 seconds
- Domain Reload Profiling:
- ReloadAssembly (2757ms)
- BeginReloadAssembly (323ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (8ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (71ms)
- EndReloadAssembly (2202ms)
- LoadAssemblies (321ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (774ms)
- ReleaseScriptCaches (2ms)
- RebuildScriptCaches (116ms)
- SetupLoadedEditorAssemblies (787ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (19ms)
- SetLoadedEditorAssemblies (1ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (167ms)
- ProcessInitializeOnLoadAttributes (487ms)
- ProcessInitializeOnLoadMethodAttributes (33ms)
- AfterProcessingInitializeOnLoad (79ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (17ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 1.40 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 1532 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 75.6 MB.
- System memory in use after: 75.7 MB.
- Unloading 20 unused Assets to reduce memory usage. Loaded Objects now: 2149.
- Total: 35.014900 ms (FindLiveObjects: 1.443800 ms CreateObjectMapping: 0.391600 ms MarkObjects: 33.131000 ms DeleteObjects: 0.044800 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 13476.890804 seconds.
- path: Assets/Resources/logo.png
- artifactKey: Guid(765ac7df348b6ab4c9587e2c9a62d5d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Resources/logo.png using Guid(765ac7df348b6ab4c9587e2c9a62d5d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c9173463539cb45b184048d2c9ac253c') in 5.641156 seconds
- Import took 6.396968 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 42.135622 seconds.
- path: Assets/Resources/logo.png
- artifactKey: Guid(765ac7df348b6ab4c9587e2c9a62d5d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Resources/logo.png using Guid(765ac7df348b6ab4c9587e2c9a62d5d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56a1751e2f34a38df0133002a62841c6') in 2.049796 seconds
- Import took 2.272111 seconds .
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 142.13 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 45.8 MB.
- System memory in use after: 45.9 MB.
- Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2153.
- Total: 2839.585200 ms (FindLiveObjects: 3.897700 ms CreateObjectMapping: 0.680200 ms MarkObjects: 2823.293900 ms DeleteObjects: 11.709400 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 155.18 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 45.8 MB.
- System memory in use after: 45.9 MB.
- Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2153.
- Total: 1547.544600 ms (FindLiveObjects: 354.089000 ms CreateObjectMapping: 0.208300 ms MarkObjects: 1187.529500 ms DeleteObjects: 5.712000 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 188.35 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 45.8 MB.
- System memory in use after: 45.9 MB.
- Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2153.
- Total: 227.376000 ms (FindLiveObjects: 9.642100 ms CreateObjectMapping: 0.185100 ms MarkObjects: 217.465900 ms DeleteObjects: 0.079500 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 1727.591350 seconds.
- path: Assets/WebGLTemplates
- artifactKey: Guid(fc26de0399ae5bb4387d25e697c3547b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/WebGLTemplates using Guid(fc26de0399ae5bb4387d25e697c3547b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e351fec536d9a4a22e67746068a88830') in 0.201584 seconds
- Import took 0.420877 seconds .
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 84.99 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 45.8 MB.
- System memory in use after: 45.9 MB.
- Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2153.
- Total: 68.449800 ms (FindLiveObjects: 0.368700 ms CreateObjectMapping: 0.120400 ms MarkObjects: 67.896000 ms DeleteObjects: 0.060700 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 33.62 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 45.8 MB.
- System memory in use after: 45.9 MB.
- Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2153.
- Total: 15.927100 ms (FindLiveObjects: 0.821000 ms CreateObjectMapping: 0.271900 ms MarkObjects: 14.798100 ms DeleteObjects: 0.032200 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 50.89 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 45.8 MB.
- System memory in use after: 45.9 MB.
- Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2153.
- Total: 10.924100 ms (FindLiveObjects: 0.244100 ms CreateObjectMapping: 0.079400 ms MarkObjects: 10.526200 ms DeleteObjects: 0.071300 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 32.74 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 45.8 MB.
- System memory in use after: 45.9 MB.
- Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2153.
- Total: 15.363400 ms (FindLiveObjects: 0.351500 ms CreateObjectMapping: 0.133100 ms MarkObjects: 14.809000 ms DeleteObjects: 0.066100 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Refreshing native plugins compatible for Editor in 295.07 ms, found 7 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 45.8 MB.
- System memory in use after: 45.9 MB.
- Unloading 18 unused Assets to reduce memory usage. Loaded Objects now: 2153.
- Total: 2152.536400 ms (FindLiveObjects: 438.992800 ms CreateObjectMapping: 0.160100 ms MarkObjects: 1713.240200 ms DeleteObjects: 0.138700 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|