AssetImportWorker0.log 427 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656
  1. Using pre-set license
  2. Built from '2020.3/china_unity/release' branch; Version is '2020.3.28f1c1 (048a2ac0d3c1) revision 297514'; Using compiler version '192528614'; Build Type 'Release'
  3. OS: 'Windows 10 (10.0.19045) 64bit Professional' Language: 'zh' Physical Memory: 32581 MB
  4. BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
  5. COMMAND LINE ARGUMENTS:
  6. C:\Program Files\Unity\Hub\Editor\2020.3.28f1c1\Editor\Unity.exe
  7. -adb2
  8. -batchMode
  9. -noUpm
  10. -name
  11. AssetImportWorker0
  12. -projectPath
  13. C:/Users/1/Documents/SanXi
  14. -logFile
  15. Logs/AssetImportWorker0.log
  16. -srvPort
  17. 53182
  18. Successfully changed project path to: C:/Users/1/Documents/SanXi
  19. C:/Users/1/Documents/SanXi
  20. Using Asset Import Pipeline V2.
  21. AS: AutoStreaming module initializing.Refreshing native plugins compatible for Editor in 86.61 ms, found 3 plugins.
  22. Preloading 0 native plugins for Editor in 0.00 ms.
  23. Initialize engine version: 2020.3.28f1c1 (048a2ac0d3c1)
  24. [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.28f1c1/Editor/Data/Resources/UnitySubsystems
  25. [Subsystems] Discovering subsystems at path C:/Users/1/Documents/SanXi/Assets
  26. GfxDevice: creating device client; threaded=0
  27. Direct3D:
  28. Version: Direct3D 11.0 [level 11.1]
  29. Renderer: NVIDIA GeForce RTX 3060 Ti (ID=0x24c9)
  30. Vendor:
  31. VRAM: 8038 MB
  32. Driver: 31.0.15.2824
  33. Initialize mono
  34. Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.28f1c1/Editor/Data/Managed'
  35. Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.28f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
  36. Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.28f1c1/Editor/Data/MonoBleedingEdge/etc'
  37. Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56944
  38. Begin MonoManager ReloadAssembly
  39. Registering precompiled unity dll's ...
  40. Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.28f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
  41. Registered in 0.001281 seconds.
  42. Native extension for WindowsStandalone target not found
  43. Refreshing native plugins compatible for Editor in 94.53 ms, found 3 plugins.
  44. Preloading 0 native plugins for Editor in 0.00 ms.
  45. Mono: successfully reloaded assembly
  46. - Completed reload, in 0.673 seconds
  47. Domain Reload Profiling:
  48. ReloadAssembly (674ms)
  49. BeginReloadAssembly (72ms)
  50. ExecutionOrderSort (0ms)
  51. DisableScriptedObjects (0ms)
  52. BackupInstance (0ms)
  53. ReleaseScriptingObjects (0ms)
  54. CreateAndSetChildDomain (1ms)
  55. EndReloadAssembly (520ms)
  56. LoadAssemblies (71ms)
  57. RebuildTransferFunctionScriptingTraits (0ms)
  58. SetupTypeCache (137ms)
  59. ReleaseScriptCaches (0ms)
  60. RebuildScriptCaches (37ms)
  61. SetupLoadedEditorAssemblies (232ms)
  62. LogAssemblyErrors (0ms)
  63. InitializePlatformSupportModulesInManaged (5ms)
  64. SetLoadedEditorAssemblies (0ms)
  65. RefreshPlugins (95ms)
  66. BeforeProcessingInitializeOnLoad (18ms)
  67. ProcessInitializeOnLoadAttributes (86ms)
  68. ProcessInitializeOnLoadMethodAttributes (28ms)
  69. AfterProcessingInitializeOnLoad (0ms)
  70. EditorAssembliesLoaded (0ms)
  71. ExecutionOrderSort2 (0ms)
  72. AwakeInstancesAfterBackupRestoration (0ms)
  73. Platform modules already initialized, skipping
  74. Registering precompiled user dll's ...
  75. Registered in 0.007654 seconds.
  76. Begin MonoManager ReloadAssembly
  77. Native extension for WindowsStandalone target not found
  78. Refreshing native plugins compatible for Editor in 109.79 ms, found 3 plugins.
  79. Preloading 0 native plugins for Editor in 0.00 ms.
  80. Mono: successfully reloaded assembly
  81. - Completed reload, in 1.465 seconds
  82. Domain Reload Profiling:
  83. ReloadAssembly (1467ms)
  84. BeginReloadAssembly (147ms)
  85. ExecutionOrderSort (0ms)
  86. DisableScriptedObjects (5ms)
  87. BackupInstance (0ms)
  88. ReleaseScriptingObjects (0ms)
  89. CreateAndSetChildDomain (17ms)
  90. EndReloadAssembly (1264ms)
  91. LoadAssemblies (118ms)
  92. RebuildTransferFunctionScriptingTraits (0ms)
  93. SetupTypeCache (414ms)
  94. ReleaseScriptCaches (1ms)
  95. RebuildScriptCaches (86ms)
  96. SetupLoadedEditorAssemblies (508ms)
  97. LogAssemblyErrors (0ms)
  98. InitializePlatformSupportModulesInManaged (4ms)
  99. SetLoadedEditorAssemblies (0ms)
  100. RefreshPlugins (110ms)
  101. BeforeProcessingInitializeOnLoad (118ms)
  102. ProcessInitializeOnLoadAttributes (256ms)
  103. ProcessInitializeOnLoadMethodAttributes (17ms)
  104. AfterProcessingInitializeOnLoad (3ms)
  105. EditorAssembliesLoaded (0ms)
  106. ExecutionOrderSort2 (0ms)
  107. AwakeInstancesAfterBackupRestoration (8ms)
  108. Platform modules already initialized, skipping
  109. ========================================================================
  110. Worker process is ready to serve import requests
  111. Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds
  112. Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins.
  113. Preloading 0 native plugins for Editor in 0.00 ms.
  114. Unloading 3699 Unused Serialized files (Serialized files now loaded: 0)
  115. System memory in use before: 250.9 MB.
  116. System memory in use after: 251.1 MB.
  117. Unloading 34 unused Assets to reduce memory usage. Loaded Objects now: 4149.
  118. Total: 3.513500 ms (FindLiveObjects: 0.406200 ms CreateObjectMapping: 0.114000 ms MarkObjects: 2.952300 ms DeleteObjects: 0.039900 ms)
  119. AssetImportParameters requested are different than current active one (requested -> active):
  120. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  121. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  122. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  123. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  124. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  125. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  126. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  127. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  128. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  129. ========================================================================
  130. Received Import Request.
  131. path: Assets/TextMesh Pro/Resources/Fonts & Materials/SourceHanSansCN_1.000/SourceHanSansCN-1.000/SourceHanSansCN-Bold.otf
  132. artifactKey: Guid(6b60ae1e13afbbe409b15676d36fa173) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  133. Start importing Assets/TextMesh Pro/Resources/Fonts & Materials/SourceHanSansCN_1.000/SourceHanSansCN-1.000/SourceHanSansCN-Bold.otf using Guid(6b60ae1e13afbbe409b15676d36fa173) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '79a005bc5c7250b88410d1f3a248b314') in 0.266085 seconds
  134. Import took 0.272377 seconds .
  135. ========================================================================
  136. Received Prepare
  137. Refreshing native plugins compatible for Editor in 6.67 ms, found 3 plugins.
  138. Preloading 0 native plugins for Editor in 0.00 ms.
  139. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  140. System memory in use before: 176.1 MB.
  141. System memory in use after: 176.3 MB.
  142. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4260.
  143. Total: 3.859300 ms (FindLiveObjects: 0.445500 ms CreateObjectMapping: 0.114100 ms MarkObjects: 3.279500 ms DeleteObjects: 0.019200 ms)
  144. AssetImportParameters requested are different than current active one (requested -> active):
  145. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  146. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  147. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  148. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  149. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  150. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  151. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  152. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  153. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  154. ========================================================================
  155. Received Prepare
  156. Registering precompiled user dll's ...
  157. Registered in 0.007530 seconds.
  158. Begin MonoManager ReloadAssembly
  159. Native extension for WindowsStandalone target not found
  160. Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
  161. Preloading 0 native plugins for Editor in 0.00 ms.
  162. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  163. This could be due to missing scripts or compile error.
  164. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  165. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  166. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  167. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  168. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  169. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  170. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  171. Mono: successfully reloaded assembly
  172. - Completed reload, in 1.219 seconds
  173. Domain Reload Profiling:
  174. ReloadAssembly (1219ms)
  175. BeginReloadAssembly (140ms)
  176. ExecutionOrderSort (0ms)
  177. DisableScriptedObjects (7ms)
  178. BackupInstance (0ms)
  179. ReleaseScriptingObjects (0ms)
  180. CreateAndSetChildDomain (39ms)
  181. EndReloadAssembly (1018ms)
  182. LoadAssemblies (125ms)
  183. RebuildTransferFunctionScriptingTraits (0ms)
  184. SetupTypeCache (339ms)
  185. ReleaseScriptCaches (1ms)
  186. RebuildScriptCaches (55ms)
  187. SetupLoadedEditorAssemblies (359ms)
  188. LogAssemblyErrors (0ms)
  189. InitializePlatformSupportModulesInManaged (4ms)
  190. SetLoadedEditorAssemblies (1ms)
  191. RefreshPlugins (1ms)
  192. BeforeProcessingInitializeOnLoad (103ms)
  193. ProcessInitializeOnLoadAttributes (236ms)
  194. ProcessInitializeOnLoadMethodAttributes (11ms)
  195. AfterProcessingInitializeOnLoad (3ms)
  196. EditorAssembliesLoaded (0ms)
  197. ExecutionOrderSort2 (0ms)
  198. AwakeInstancesAfterBackupRestoration (25ms)
  199. Platform modules already initialized, skipping
  200. Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
  201. Preloading 0 native plugins for Editor in 0.00 ms.
  202. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  203. System memory in use before: 246.4 MB.
  204. System memory in use after: 246.6 MB.
  205. Unloading 33 unused Assets to reduce memory usage. Loaded Objects now: 4231.
  206. Total: 3.317500 ms (FindLiveObjects: 0.441300 ms CreateObjectMapping: 0.118500 ms MarkObjects: 2.724800 ms DeleteObjects: 0.032100 ms)
  207. AssetImportParameters requested are different than current active one (requested -> active):
  208. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  209. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  210. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  211. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  212. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  213. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  214. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  215. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  216. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  217. ========================================================================
  218. Received Prepare
  219. Refreshing native plugins compatible for Editor in 6.76 ms, found 3 plugins.
  220. Preloading 0 native plugins for Editor in 0.00 ms.
  221. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  222. System memory in use before: 176.7 MB.
  223. System memory in use after: 177.0 MB.
  224. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4231.
  225. Total: 3.976000 ms (FindLiveObjects: 0.696800 ms CreateObjectMapping: 0.127900 ms MarkObjects: 3.126600 ms DeleteObjects: 0.023800 ms)
  226. AssetImportParameters requested are different than current active one (requested -> active):
  227. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  228. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  229. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  230. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  231. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  232. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  233. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  234. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  235. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  236. ========================================================================
  237. Received Prepare
  238. Registering precompiled user dll's ...
  239. Registered in 0.007505 seconds.
  240. Begin MonoManager ReloadAssembly
  241. Native extension for WindowsStandalone target not found
  242. Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
  243. Preloading 0 native plugins for Editor in 0.00 ms.
  244. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  245. This could be due to missing scripts or compile error.
  246. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  247. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  248. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  249. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  250. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  251. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  252. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  253. Mono: successfully reloaded assembly
  254. - Completed reload, in 1.161 seconds
  255. Domain Reload Profiling:
  256. ReloadAssembly (1162ms)
  257. BeginReloadAssembly (126ms)
  258. ExecutionOrderSort (0ms)
  259. DisableScriptedObjects (7ms)
  260. BackupInstance (0ms)
  261. ReleaseScriptingObjects (0ms)
  262. CreateAndSetChildDomain (34ms)
  263. EndReloadAssembly (976ms)
  264. LoadAssemblies (119ms)
  265. RebuildTransferFunctionScriptingTraits (0ms)
  266. SetupTypeCache (330ms)
  267. ReleaseScriptCaches (1ms)
  268. RebuildScriptCaches (57ms)
  269. SetupLoadedEditorAssemblies (337ms)
  270. LogAssemblyErrors (0ms)
  271. InitializePlatformSupportModulesInManaged (4ms)
  272. SetLoadedEditorAssemblies (1ms)
  273. RefreshPlugins (1ms)
  274. BeforeProcessingInitializeOnLoad (97ms)
  275. ProcessInitializeOnLoadAttributes (220ms)
  276. ProcessInitializeOnLoadMethodAttributes (11ms)
  277. AfterProcessingInitializeOnLoad (3ms)
  278. EditorAssembliesLoaded (0ms)
  279. ExecutionOrderSort2 (0ms)
  280. AwakeInstancesAfterBackupRestoration (24ms)
  281. Platform modules already initialized, skipping
  282. Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
  283. Preloading 0 native plugins for Editor in 0.00 ms.
  284. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  285. System memory in use before: 246.5 MB.
  286. System memory in use after: 246.7 MB.
  287. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4233.
  288. Total: 3.297100 ms (FindLiveObjects: 0.398200 ms CreateObjectMapping: 0.103900 ms MarkObjects: 2.764400 ms DeleteObjects: 0.029700 ms)
  289. AssetImportParameters requested are different than current active one (requested -> active):
  290. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  291. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  292. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  293. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  294. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  295. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  296. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  297. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  298. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  299. ========================================================================
  300. Received Prepare
  301. Registering precompiled user dll's ...
  302. Registered in 0.007330 seconds.
  303. Begin MonoManager ReloadAssembly
  304. Native extension for WindowsStandalone target not found
  305. Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
  306. Preloading 0 native plugins for Editor in 0.00 ms.
  307. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  308. This could be due to missing scripts or compile error.
  309. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  310. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  311. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  312. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  313. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  314. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  315. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  316. Mono: successfully reloaded assembly
  317. - Completed reload, in 1.396 seconds
  318. Domain Reload Profiling:
  319. ReloadAssembly (1397ms)
  320. BeginReloadAssembly (128ms)
  321. ExecutionOrderSort (0ms)
  322. DisableScriptedObjects (6ms)
  323. BackupInstance (0ms)
  324. ReleaseScriptingObjects (0ms)
  325. CreateAndSetChildDomain (35ms)
  326. EndReloadAssembly (1207ms)
  327. LoadAssemblies (131ms)
  328. RebuildTransferFunctionScriptingTraits (0ms)
  329. SetupTypeCache (499ms)
  330. ReleaseScriptCaches (1ms)
  331. RebuildScriptCaches (58ms)
  332. SetupLoadedEditorAssemblies (384ms)
  333. LogAssemblyErrors (0ms)
  334. InitializePlatformSupportModulesInManaged (4ms)
  335. SetLoadedEditorAssemblies (1ms)
  336. RefreshPlugins (1ms)
  337. BeforeProcessingInitializeOnLoad (142ms)
  338. ProcessInitializeOnLoadAttributes (221ms)
  339. ProcessInitializeOnLoadMethodAttributes (12ms)
  340. AfterProcessingInitializeOnLoad (3ms)
  341. EditorAssembliesLoaded (0ms)
  342. ExecutionOrderSort2 (0ms)
  343. AwakeInstancesAfterBackupRestoration (25ms)
  344. Platform modules already initialized, skipping
  345. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  346. Preloading 0 native plugins for Editor in 0.00 ms.
  347. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  348. System memory in use before: 246.5 MB.
  349. System memory in use after: 246.7 MB.
  350. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4235.
  351. Total: 3.681400 ms (FindLiveObjects: 0.458600 ms CreateObjectMapping: 0.117800 ms MarkObjects: 3.063900 ms DeleteObjects: 0.039700 ms)
  352. AssetImportParameters requested are different than current active one (requested -> active):
  353. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  354. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  355. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  356. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  357. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  358. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  359. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  360. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  361. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  362. ========================================================================
  363. Received Prepare
  364. Refreshing native plugins compatible for Editor in 7.53 ms, found 3 plugins.
  365. Preloading 0 native plugins for Editor in 0.00 ms.
  366. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  367. System memory in use before: 176.8 MB.
  368. System memory in use after: 177.1 MB.
  369. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4235.
  370. Total: 3.849900 ms (FindLiveObjects: 0.493000 ms CreateObjectMapping: 0.124800 ms MarkObjects: 3.199000 ms DeleteObjects: 0.031900 ms)
  371. AssetImportParameters requested are different than current active one (requested -> active):
  372. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  373. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  374. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  375. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  376. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  377. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  378. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  379. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  380. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  381. ========================================================================
  382. Received Prepare
  383. Registering precompiled user dll's ...
  384. Registered in 0.008761 seconds.
  385. Begin MonoManager ReloadAssembly
  386. Native extension for WindowsStandalone target not found
  387. Refreshing native plugins compatible for Editor in 1.28 ms, found 3 plugins.
  388. Preloading 0 native plugins for Editor in 0.00 ms.
  389. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  390. This could be due to missing scripts or compile error.
  391. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  392. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  393. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  394. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  395. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  396. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  397. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  398. Mono: successfully reloaded assembly
  399. - Completed reload, in 1.319 seconds
  400. Domain Reload Profiling:
  401. ReloadAssembly (1320ms)
  402. BeginReloadAssembly (118ms)
  403. ExecutionOrderSort (0ms)
  404. DisableScriptedObjects (6ms)
  405. BackupInstance (0ms)
  406. ReleaseScriptingObjects (0ms)
  407. CreateAndSetChildDomain (36ms)
  408. EndReloadAssembly (1141ms)
  409. LoadAssemblies (115ms)
  410. RebuildTransferFunctionScriptingTraits (0ms)
  411. SetupTypeCache (348ms)
  412. ReleaseScriptCaches (1ms)
  413. RebuildScriptCaches (68ms)
  414. SetupLoadedEditorAssemblies (425ms)
  415. LogAssemblyErrors (0ms)
  416. InitializePlatformSupportModulesInManaged (5ms)
  417. SetLoadedEditorAssemblies (1ms)
  418. RefreshPlugins (1ms)
  419. BeforeProcessingInitializeOnLoad (123ms)
  420. ProcessInitializeOnLoadAttributes (277ms)
  421. ProcessInitializeOnLoadMethodAttributes (14ms)
  422. AfterProcessingInitializeOnLoad (4ms)
  423. EditorAssembliesLoaded (0ms)
  424. ExecutionOrderSort2 (0ms)
  425. AwakeInstancesAfterBackupRestoration (31ms)
  426. Platform modules already initialized, skipping
  427. Refreshing native plugins compatible for Editor in 0.99 ms, found 3 plugins.
  428. Preloading 0 native plugins for Editor in 0.00 ms.
  429. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  430. System memory in use before: 246.5 MB.
  431. System memory in use after: 246.8 MB.
  432. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4237.
  433. Total: 3.258000 ms (FindLiveObjects: 0.392500 ms CreateObjectMapping: 0.104000 ms MarkObjects: 2.730000 ms DeleteObjects: 0.030500 ms)
  434. AssetImportParameters requested are different than current active one (requested -> active):
  435. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  436. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  437. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  438. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  439. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  440. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  441. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  442. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  443. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  444. ========================================================================
  445. Received Prepare
  446. Registering precompiled user dll's ...
  447. Registered in 0.007504 seconds.
  448. Begin MonoManager ReloadAssembly
  449. Native extension for WindowsStandalone target not found
  450. Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins.
  451. Preloading 0 native plugins for Editor in 0.00 ms.
  452. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  453. This could be due to missing scripts or compile error.
  454. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  455. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  456. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  457. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  458. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  459. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  460. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  461. Mono: successfully reloaded assembly
  462. - Completed reload, in 1.192 seconds
  463. Domain Reload Profiling:
  464. ReloadAssembly (1192ms)
  465. BeginReloadAssembly (122ms)
  466. ExecutionOrderSort (0ms)
  467. DisableScriptedObjects (6ms)
  468. BackupInstance (0ms)
  469. ReleaseScriptingObjects (0ms)
  470. CreateAndSetChildDomain (34ms)
  471. EndReloadAssembly (1015ms)
  472. LoadAssemblies (112ms)
  473. RebuildTransferFunctionScriptingTraits (0ms)
  474. SetupTypeCache (331ms)
  475. ReleaseScriptCaches (1ms)
  476. RebuildScriptCaches (59ms)
  477. SetupLoadedEditorAssemblies (378ms)
  478. LogAssemblyErrors (0ms)
  479. InitializePlatformSupportModulesInManaged (5ms)
  480. SetLoadedEditorAssemblies (1ms)
  481. RefreshPlugins (2ms)
  482. BeforeProcessingInitializeOnLoad (129ms)
  483. ProcessInitializeOnLoadAttributes (225ms)
  484. ProcessInitializeOnLoadMethodAttributes (13ms)
  485. AfterProcessingInitializeOnLoad (3ms)
  486. EditorAssembliesLoaded (0ms)
  487. ExecutionOrderSort2 (0ms)
  488. AwakeInstancesAfterBackupRestoration (24ms)
  489. Platform modules already initialized, skipping
  490. Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
  491. Preloading 0 native plugins for Editor in 0.00 ms.
  492. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  493. System memory in use before: 246.5 MB.
  494. System memory in use after: 246.8 MB.
  495. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4239.
  496. Total: 3.641700 ms (FindLiveObjects: 0.435400 ms CreateObjectMapping: 0.106900 ms MarkObjects: 3.057500 ms DeleteObjects: 0.040700 ms)
  497. AssetImportParameters requested are different than current active one (requested -> active):
  498. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  499. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  500. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  501. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  502. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  503. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  504. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  505. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  506. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  507. ========================================================================
  508. Received Prepare
  509. Registering precompiled user dll's ...
  510. Registered in 0.007455 seconds.
  511. Begin MonoManager ReloadAssembly
  512. Native extension for WindowsStandalone target not found
  513. Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins.
  514. Preloading 0 native plugins for Editor in 0.00 ms.
  515. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  516. This could be due to missing scripts or compile error.
  517. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  518. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  519. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  520. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  521. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  522. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  523. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  524. Mono: successfully reloaded assembly
  525. - Completed reload, in 2.181 seconds
  526. Domain Reload Profiling:
  527. ReloadAssembly (2182ms)
  528. BeginReloadAssembly (816ms)
  529. ExecutionOrderSort (0ms)
  530. DisableScriptedObjects (7ms)
  531. BackupInstance (0ms)
  532. ReleaseScriptingObjects (0ms)
  533. CreateAndSetChildDomain (703ms)
  534. EndReloadAssembly (1308ms)
  535. LoadAssemblies (126ms)
  536. RebuildTransferFunctionScriptingTraits (0ms)
  537. SetupTypeCache (350ms)
  538. ReleaseScriptCaches (1ms)
  539. RebuildScriptCaches (67ms)
  540. SetupLoadedEditorAssemblies (425ms)
  541. LogAssemblyErrors (0ms)
  542. InitializePlatformSupportModulesInManaged (4ms)
  543. SetLoadedEditorAssemblies (1ms)
  544. RefreshPlugins (1ms)
  545. BeforeProcessingInitializeOnLoad (99ms)
  546. ProcessInitializeOnLoadAttributes (305ms)
  547. ProcessInitializeOnLoadMethodAttributes (12ms)
  548. AfterProcessingInitializeOnLoad (3ms)
  549. EditorAssembliesLoaded (0ms)
  550. ExecutionOrderSort2 (0ms)
  551. AwakeInstancesAfterBackupRestoration (26ms)
  552. Platform modules already initialized, skipping
  553. Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins.
  554. Preloading 0 native plugins for Editor in 0.00 ms.
  555. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  556. System memory in use before: 246.5 MB.
  557. System memory in use after: 246.8 MB.
  558. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4241.
  559. Total: 3.661700 ms (FindLiveObjects: 0.400800 ms CreateObjectMapping: 0.114100 ms MarkObjects: 3.110100 ms DeleteObjects: 0.035600 ms)
  560. AssetImportParameters requested are different than current active one (requested -> active):
  561. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  562. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  563. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  564. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  565. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  566. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  567. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  568. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  569. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  570. ========================================================================
  571. Received Prepare
  572. Refreshing native plugins compatible for Editor in 6.62 ms, found 3 plugins.
  573. Preloading 0 native plugins for Editor in 0.00 ms.
  574. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  575. System memory in use before: 176.9 MB.
  576. System memory in use after: 177.1 MB.
  577. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4241.
  578. Total: 3.272700 ms (FindLiveObjects: 0.429600 ms CreateObjectMapping: 0.114600 ms MarkObjects: 2.707300 ms DeleteObjects: 0.020400 ms)
  579. AssetImportParameters requested are different than current active one (requested -> active):
  580. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  581. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  582. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  583. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  584. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  585. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  586. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  587. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  588. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  589. ========================================================================
  590. Received Prepare
  591. Registering precompiled user dll's ...
  592. Registered in 0.007031 seconds.
  593. Begin MonoManager ReloadAssembly
  594. Native extension for WindowsStandalone target not found
  595. Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
  596. Preloading 0 native plugins for Editor in 0.00 ms.
  597. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  598. This could be due to missing scripts or compile error.
  599. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  600. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  601. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  602. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  603. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  604. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  605. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  606. Mono: successfully reloaded assembly
  607. - Completed reload, in 1.148 seconds
  608. Domain Reload Profiling:
  609. ReloadAssembly (1148ms)
  610. BeginReloadAssembly (119ms)
  611. ExecutionOrderSort (0ms)
  612. DisableScriptedObjects (5ms)
  613. BackupInstance (0ms)
  614. ReleaseScriptingObjects (0ms)
  615. CreateAndSetChildDomain (32ms)
  616. EndReloadAssembly (973ms)
  617. LoadAssemblies (116ms)
  618. RebuildTransferFunctionScriptingTraits (0ms)
  619. SetupTypeCache (328ms)
  620. ReleaseScriptCaches (1ms)
  621. RebuildScriptCaches (55ms)
  622. SetupLoadedEditorAssemblies (342ms)
  623. LogAssemblyErrors (0ms)
  624. InitializePlatformSupportModulesInManaged (4ms)
  625. SetLoadedEditorAssemblies (1ms)
  626. RefreshPlugins (1ms)
  627. BeforeProcessingInitializeOnLoad (98ms)
  628. ProcessInitializeOnLoadAttributes (225ms)
  629. ProcessInitializeOnLoadMethodAttributes (11ms)
  630. AfterProcessingInitializeOnLoad (3ms)
  631. EditorAssembliesLoaded (0ms)
  632. ExecutionOrderSort2 (0ms)
  633. AwakeInstancesAfterBackupRestoration (24ms)
  634. Platform modules already initialized, skipping
  635. Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins.
  636. Preloading 0 native plugins for Editor in 0.00 ms.
  637. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  638. System memory in use before: 246.5 MB.
  639. System memory in use after: 246.8 MB.
  640. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4243.
  641. Total: 3.897100 ms (FindLiveObjects: 0.625100 ms CreateObjectMapping: 0.178200 ms MarkObjects: 3.059700 ms DeleteObjects: 0.032400 ms)
  642. AssetImportParameters requested are different than current active one (requested -> active):
  643. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  644. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  645. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  646. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  647. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  648. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  649. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  650. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  651. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  652. ========================================================================
  653. Received Prepare
  654. Registering precompiled user dll's ...
  655. Registered in 0.009256 seconds.
  656. Begin MonoManager ReloadAssembly
  657. Native extension for WindowsStandalone target not found
  658. Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
  659. Preloading 0 native plugins for Editor in 0.00 ms.
  660. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  661. This could be due to missing scripts or compile error.
  662. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  663. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  664. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  665. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  666. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  667. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  668. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  669. Mono: successfully reloaded assembly
  670. - Completed reload, in 1.210 seconds
  671. Domain Reload Profiling:
  672. ReloadAssembly (1210ms)
  673. BeginReloadAssembly (135ms)
  674. ExecutionOrderSort (0ms)
  675. DisableScriptedObjects (6ms)
  676. BackupInstance (0ms)
  677. ReleaseScriptingObjects (0ms)
  678. CreateAndSetChildDomain (36ms)
  679. EndReloadAssembly (1014ms)
  680. LoadAssemblies (127ms)
  681. RebuildTransferFunctionScriptingTraits (0ms)
  682. SetupTypeCache (337ms)
  683. ReleaseScriptCaches (1ms)
  684. RebuildScriptCaches (58ms)
  685. SetupLoadedEditorAssemblies (360ms)
  686. LogAssemblyErrors (0ms)
  687. InitializePlatformSupportModulesInManaged (4ms)
  688. SetLoadedEditorAssemblies (1ms)
  689. RefreshPlugins (1ms)
  690. BeforeProcessingInitializeOnLoad (106ms)
  691. ProcessInitializeOnLoadAttributes (234ms)
  692. ProcessInitializeOnLoadMethodAttributes (12ms)
  693. AfterProcessingInitializeOnLoad (3ms)
  694. EditorAssembliesLoaded (0ms)
  695. ExecutionOrderSort2 (0ms)
  696. AwakeInstancesAfterBackupRestoration (25ms)
  697. Platform modules already initialized, skipping
  698. Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins.
  699. Preloading 0 native plugins for Editor in 0.00 ms.
  700. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  701. System memory in use before: 246.5 MB.
  702. System memory in use after: 246.8 MB.
  703. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4245.
  704. Total: 3.352000 ms (FindLiveObjects: 0.417300 ms CreateObjectMapping: 0.110000 ms MarkObjects: 2.792000 ms DeleteObjects: 0.031700 ms)
  705. AssetImportParameters requested are different than current active one (requested -> active):
  706. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  707. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  708. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  709. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  710. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  711. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  712. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  713. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  714. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  715. ========================================================================
  716. Received Import Request.
  717. Time since last request: 1703.529628 seconds.
  718. path: Assets/TextMesh Pro/Fonts/LiberationSans.ttf
  719. artifactKey: Guid(e3265ab4bf004d28a9537516768c1c75) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  720. Start importing Assets/TextMesh Pro/Fonts/LiberationSans.ttf using Guid(e3265ab4bf004d28a9537516768c1c75) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e130e8da59c13bb7a1d1af0c2abaa3ff') in 0.439916 seconds
  721. Import took 0.446841 seconds .
  722. ========================================================================
  723. Received Import Request.
  724. Time since last request: 0.000199 seconds.
  725. path: Assets/TextMesh Pro/Resources/Fonts & Materials/1620207074305284.ttf
  726. artifactKey: Guid(b0ee452e022937546858a14007deee97) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  727. Start importing Assets/TextMesh Pro/Resources/Fonts & Materials/1620207074305284.ttf using Guid(b0ee452e022937546858a14007deee97) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd2de8ecb7dca25290ef05e0b724dd4f9') in 0.075101 seconds
  728. Import took 0.081478 seconds .
  729. ========================================================================
  730. Received Import Request.
  731. Time since last request: 0.313571 seconds.
  732. path: Assets/Rec/Export3/电动调节阀012.obj
  733. artifactKey: Guid(f4833585a8c44a74ab34c0e08ff56e94) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  734. Start importing Assets/Rec/Export3/电动调节阀012.obj using Guid(f4833585a8c44a74ab34c0e08ff56e94) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '44323a3a0a05a70c4ac9072ce140b236') in 0.099869 seconds
  735. Import took 0.105386 seconds .
  736. ========================================================================
  737. Received Import Request.
  738. Time since last request: 0.000210 seconds.
  739. path: Assets/Rec/Export3/电脑主机010.obj
  740. artifactKey: Guid(149b70781adfc6749b2f0604d3bf8b42) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  741. Start importing Assets/Rec/Export3/电脑主机010.obj using Guid(149b70781adfc6749b2f0604d3bf8b42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '01d56e01d486fac7c3a62f766c6e67ed') in 0.080188 seconds
  742. Import took 0.085047 seconds .
  743. ========================================================================
  744. Received Import Request.
  745. Time since last request: 0.000227 seconds.
  746. path: Assets/Rec/Export3/电脑主机005.obj
  747. artifactKey: Guid(0a18b7de540523b498e577e81f40f9ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  748. Start importing Assets/Rec/Export3/电脑主机005.obj using Guid(0a18b7de540523b498e577e81f40f9ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cc1116c8bdb77f680e4cff2e33aa88cc') in 0.077436 seconds
  749. Import took 0.082570 seconds .
  750. ========================================================================
  751. Received Import Request.
  752. Time since last request: 1.214011 seconds.
  753. path: Assets/Rec/Export3/电脑主机009.obj
  754. artifactKey: Guid(2dfe8476753be0f4f93167f00a393fbc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  755. Start importing Assets/Rec/Export3/电脑主机009.obj using Guid(2dfe8476753be0f4f93167f00a393fbc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd4eb76c67329160608e36e2356077990') in 0.030760 seconds
  756. Import took 0.036189 seconds .
  757. ========================================================================
  758. Received Import Request.
  759. Time since last request: 0.000194 seconds.
  760. path: Assets/Rec/Export3/负1层控制箱.obj
  761. artifactKey: Guid(38d564536fa2d3045a6323086b208d88) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  762. Start importing Assets/Rec/Export3/负1层控制箱.obj using Guid(38d564536fa2d3045a6323086b208d88) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '336267ae90c4bb92bcfed1e2edaa8966') in 0.053088 seconds
  763. Import took 0.058139 seconds .
  764. ========================================================================
  765. Received Import Request.
  766. Time since last request: 0.000221 seconds.
  767. path: Assets/Rec/Export3/管道开关G103.obj
  768. artifactKey: Guid(7de0e7d9e2c3f9e47aea3c6ddf743421) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  769. Start importing Assets/Rec/Export3/管道开关G103.obj using Guid(7de0e7d9e2c3f9e47aea3c6ddf743421) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5923a1750f17c1ff26cec05f8334468f') in 0.042640 seconds
  770. Import took 0.047939 seconds .
  771. ========================================================================
  772. Received Import Request.
  773. Time since last request: 0.000236 seconds.
  774. path: Assets/Rec/Export3/管道开关G093.obj
  775. artifactKey: Guid(3a8b32b36f2947c4fa4c7791429e9114) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  776. Start importing Assets/Rec/Export3/管道开关G093.obj using Guid(3a8b32b36f2947c4fa4c7791429e9114) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6327904617f2a8475cba3fbab25be645') in 0.043108 seconds
  777. Import took 0.048755 seconds .
  778. ========================================================================
  779. Received Import Request.
  780. Time since last request: 0.000301 seconds.
  781. path: Assets/Rec/ui/Material/Main_one/Material_A001.mat
  782. artifactKey: Guid(69a785ea49d1e47459b0a3976293e830) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  783. Start importing Assets/Rec/ui/Material/Main_one/Material_A001.mat using Guid(69a785ea49d1e47459b0a3976293e830) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '59a02ff9828cdd640a130b67d01e28c7') in 0.017216 seconds
  784. Import took 0.023213 seconds .
  785. ========================================================================
  786. Received Import Request.
  787. Time since last request: 0.000206 seconds.
  788. path: Assets/Rec/Export3/1层控制室椅子007.obj
  789. artifactKey: Guid(6c92d0ac411df0441b4048c2b215f706) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  790. Start importing Assets/Rec/Export3/1层控制室椅子007.obj using Guid(6c92d0ac411df0441b4048c2b215f706) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3bcf0fd7d07ccf8d4a4c97c60828f600') in 0.035306 seconds
  791. Import took 0.040690 seconds .
  792. ========================================================================
  793. Received Import Request.
  794. Time since last request: 0.000220 seconds.
  795. path: Assets/Rec/Export3/储水箱.obj
  796. artifactKey: Guid(e8a7997c728334b4890b25272f71074f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  797. Start importing Assets/Rec/Export3/储水箱.obj using Guid(e8a7997c728334b4890b25272f71074f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6beba73b46fe3fbf1a18adfab37d966d') in 0.033982 seconds
  798. Import took 0.039425 seconds .
  799. ========================================================================
  800. Received Import Request.
  801. Time since last request: 0.000180 seconds.
  802. path: Assets/Rec/Export3/液位计003.obj
  803. artifactKey: Guid(c321c3b4e64ee254db102f736766c5a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  804. Start importing Assets/Rec/Export3/液位计003.obj using Guid(c321c3b4e64ee254db102f736766c5a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aa80353868014cc8ea7a0adbefd2c558') in 0.032785 seconds
  805. Import took 0.037755 seconds .
  806. ========================================================================
  807. Received Import Request.
  808. Time since last request: 0.000203 seconds.
  809. path: Assets/Rec/Export3/管道开关G102.obj
  810. artifactKey: Guid(18e97ca53fdaaff4f92dd6b9eeae50a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  811. Start importing Assets/Rec/Export3/管道开关G102.obj using Guid(18e97ca53fdaaff4f92dd6b9eeae50a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7533edf0a6281bb4a818c40140741c25') in 0.037208 seconds
  812. Import took 0.042243 seconds .
  813. ========================================================================
  814. Received Import Request.
  815. Time since last request: 0.000203 seconds.
  816. path: Assets/Rec/Export3/BR1-I005-03-V002-01.obj
  817. artifactKey: Guid(9b17614c80472a44ca391905abd41a29) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  818. Start importing Assets/Rec/Export3/BR1-I005-03-V002-01.obj using Guid(9b17614c80472a44ca391905abd41a29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bcb905de67a79231644563f862bf5ea7') in 0.037335 seconds
  819. Import took 0.042089 seconds .
  820. ========================================================================
  821. Received Import Request.
  822. Time since last request: 0.000197 seconds.
  823. path: Assets/Rec/Export3/BR1-I005-04-P001-01.obj
  824. artifactKey: Guid(c342fe4e93d3dd946830a30c0a1ec441) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  825. Start importing Assets/Rec/Export3/BR1-I005-04-P001-01.obj using Guid(c342fe4e93d3dd946830a30c0a1ec441) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a17f38d37379abb9c2c6ef65431780e') in 0.033795 seconds
  826. Import took 0.038578 seconds .
  827. ========================================================================
  828. Received Import Request.
  829. Time since last request: 0.000196 seconds.
  830. path: Assets/Rec/Export3/BR1-X005-02-V001-01.obj
  831. artifactKey: Guid(ecdcbfb59ac2591439d10e7b8c5b8ca5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  832. Start importing Assets/Rec/Export3/BR1-X005-02-V001-01.obj using Guid(ecdcbfb59ac2591439d10e7b8c5b8ca5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '495baed9ebcf81c31461cb190bb151b6') in 0.036330 seconds
  833. Import took 0.041091 seconds .
  834. ========================================================================
  835. Received Import Request.
  836. Time since last request: 0.000205 seconds.
  837. path: Assets/Rec/Export3/软水箱.obj
  838. artifactKey: Guid(51cd53396ed1c4346a00965b25af0b0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  839. Start importing Assets/Rec/Export3/软水箱.obj using Guid(51cd53396ed1c4346a00965b25af0b0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f3d66b66596e2fb7e0c580883863b87e') in 0.030102 seconds
  840. Import took 0.035113 seconds .
  841. ========================================================================
  842. Received Import Request.
  843. Time since last request: 0.000199 seconds.
  844. path: Assets/Rec/Export3/管道开关D022.obj
  845. artifactKey: Guid(40e35b3f582243e4ea8c435cc551b771) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  846. Start importing Assets/Rec/Export3/管道开关D022.obj using Guid(40e35b3f582243e4ea8c435cc551b771) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ca41b2de2d47c110be7cec22e1c3e14b') in 0.033377 seconds
  847. Import took 0.038183 seconds .
  848. ========================================================================
  849. Received Import Request.
  850. Time since last request: 0.000206 seconds.
  851. path: Assets/Rec/Export3/设备_气动调节阀(套筒).obj
  852. artifactKey: Guid(726e7bc51d4e46643956377199b58343) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  853. Start importing Assets/Rec/Export3/设备_气动调节阀(套筒).obj using Guid(726e7bc51d4e46643956377199b58343) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e3405d969c7662a12397ea8ccbc616d8') in 0.040890 seconds
  854. Import took 0.045673 seconds .
  855. ========================================================================
  856. Received Import Request.
  857. Time since last request: 0.000201 seconds.
  858. path: Assets/Rec/Export3/除氧器液位差压变送器.obj
  859. artifactKey: Guid(d52b3511f6191e445ac0a6e338469c66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  860. Start importing Assets/Rec/Export3/除氧器液位差压变送器.obj using Guid(d52b3511f6191e445ac0a6e338469c66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a6aeda7c31a6f0056847dcfe0c8b441') in 0.032753 seconds
  861. Import took 0.037479 seconds .
  862. ========================================================================
  863. Received Import Request.
  864. Time since last request: 0.000196 seconds.
  865. path: Assets/Rec/Export3/管道开关D014.obj
  866. artifactKey: Guid(67de9e656ccb75a4f8d72c5d4cd4aef4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  867. Start importing Assets/Rec/Export3/管道开关D014.obj using Guid(67de9e656ccb75a4f8d72c5d4cd4aef4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '953141ae8612b45174109743d39c701e') in 0.032106 seconds
  868. Import took 0.036992 seconds .
  869. ========================================================================
  870. Received Import Request.
  871. Time since last request: 0.000201 seconds.
  872. path: Assets/Rec/Export3/管道开关D021.obj
  873. artifactKey: Guid(063730e3f4324ea4abf1f89c006d1e2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  874. Start importing Assets/Rec/Export3/管道开关D021.obj using Guid(063730e3f4324ea4abf1f89c006d1e2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4733a3c2867a8f9e2d8666c5918e1b33') in 0.031547 seconds
  875. Import took 0.036363 seconds .
  876. ========================================================================
  877. Received Import Request.
  878. Time since last request: 0.000201 seconds.
  879. path: Assets/Rec/Export3/管道开关G092.obj
  880. artifactKey: Guid(bc59cee8ce5fdf340ae33517a364c7fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  881. Start importing Assets/Rec/Export3/管道开关G092.obj using Guid(bc59cee8ce5fdf340ae33517a364c7fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '85e366e143567fe86c3c6c7389a9c6cb') in 0.038761 seconds
  882. Import took 0.043621 seconds .
  883. ========================================================================
  884. Received Import Request.
  885. Time since last request: 0.000203 seconds.
  886. path: Assets/Rec/Export3/日用油箱.obj
  887. artifactKey: Guid(dc0d409f78fe90b4ea598f2da784ad32) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  888. Start importing Assets/Rec/Export3/日用油箱.obj using Guid(dc0d409f78fe90b4ea598f2da784ad32) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b57dc6121949c9d60ac63faec90c52e7') in 0.042479 seconds
  889. Import took 0.047382 seconds .
  890. ========================================================================
  891. Received Import Request.
  892. Time since last request: 0.000201 seconds.
  893. path: Assets/Rec/Export3/液位计005.obj
  894. artifactKey: Guid(242f8c162871dab458b7212c8621031f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  895. Start importing Assets/Rec/Export3/液位计005.obj using Guid(242f8c162871dab458b7212c8621031f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '93cc099a3e397533456075209676fdcb') in 0.034009 seconds
  896. Import took 0.038853 seconds .
  897. ========================================================================
  898. Received Import Request.
  899. Time since last request: 0.000186 seconds.
  900. path: Assets/Rec/Export3/BR1-X008-02-S001-01.obj
  901. artifactKey: Guid(894f539fd94d15946a35e062d53fdae9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  902. Start importing Assets/Rec/Export3/BR1-X008-02-S001-01.obj using Guid(894f539fd94d15946a35e062d53fdae9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e617e2fbcdee1cc155c5c7b13ff934b8') in 0.035507 seconds
  903. Import took 0.040522 seconds .
  904. ========================================================================
  905. Received Import Request.
  906. Time since last request: 0.000194 seconds.
  907. path: Assets/Rec/Export3/油箱阀门001.obj
  908. artifactKey: Guid(144346aca8104ea4ba7631a6d80b4e95) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  909. Start importing Assets/Rec/Export3/油箱阀门001.obj using Guid(144346aca8104ea4ba7631a6d80b4e95) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a97e5fcfb2882d7cb346bcecf34df5b') in 0.031682 seconds
  910. Import took 0.036579 seconds .
  911. ========================================================================
  912. Received Import Request.
  913. Time since last request: 0.000189 seconds.
  914. path: Assets/Rec/Export3/BR1-I002-05-V001-01.obj
  915. artifactKey: Guid(dd23312246f31e647aafac7abff9118f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  916. Start importing Assets/Rec/Export3/BR1-I002-05-V001-01.obj using Guid(dd23312246f31e647aafac7abff9118f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38471fb18113a89712f844006515e3dc') in 0.041655 seconds
  917. Import took 0.046682 seconds .
  918. ========================================================================
  919. Received Import Request.
  920. Time since last request: 0.000204 seconds.
  921. path: Assets/Rec/Export3/管道开关G109.obj
  922. artifactKey: Guid(76de74e807a08a04ab1008d86782c118) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  923. Start importing Assets/Rec/Export3/管道开关G109.obj using Guid(76de74e807a08a04ab1008d86782c118) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '59075344671c4c4db0231b84012bc3f6') in 0.036361 seconds
  924. Import took 0.041117 seconds .
  925. ========================================================================
  926. Received Import Request.
  927. Time since last request: 0.000201 seconds.
  928. path: Assets/Rec/Export3/设备_汽轮机.obj
  929. artifactKey: Guid(fd9f8bb34439bd543889547a90298ca7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  930. Start importing Assets/Rec/Export3/设备_汽轮机.obj using Guid(fd9f8bb34439bd543889547a90298ca7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '99210937afa958c3a8940ddcb8793583') in 0.039892 seconds
  931. Import took 0.044873 seconds .
  932. ========================================================================
  933. Received Import Request.
  934. Time since last request: 0.000212 seconds.
  935. path: Assets/Rec/Export3/管道开关D015.obj
  936. artifactKey: Guid(8bbd4c6df7b8a5d4e844c6d47c29e46a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  937. Start importing Assets/Rec/Export3/管道开关D015.obj using Guid(8bbd4c6df7b8a5d4e844c6d47c29e46a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bfe662da00d984eb401af9cc0e831844') in 0.035284 seconds
  938. Import took 0.040279 seconds .
  939. ========================================================================
  940. Received Import Request.
  941. Time since last request: 0.000186 seconds.
  942. path: Assets/Rec/Export3/BR1-I002-01-V007-01.obj
  943. artifactKey: Guid(37c923f01d012d848bdeeec74b743fa4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  944. Start importing Assets/Rec/Export3/BR1-I002-01-V007-01.obj using Guid(37c923f01d012d848bdeeec74b743fa4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '933e55137cb77fb8c2651f4dc51c23b1') in 0.037116 seconds
  945. Import took 0.042081 seconds .
  946. ========================================================================
  947. Received Import Request.
  948. Time since last request: 0.000182 seconds.
  949. path: Assets/Rec/Export3/BR0-I000-01-M001-01.obj
  950. artifactKey: Guid(6142a58ea5dce584d9d7ac49d469d3bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  951. Start importing Assets/Rec/Export3/BR0-I000-01-M001-01.obj using Guid(6142a58ea5dce584d9d7ac49d469d3bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd337f46a5c5e1d71a7bb81be336f5d3f') in 0.037037 seconds
  952. Import took 0.041820 seconds .
  953. ========================================================================
  954. Received Import Request.
  955. Time since last request: 0.000187 seconds.
  956. path: Assets/Rec/Export3/BR1-X006-02-S001-01.obj
  957. artifactKey: Guid(f100b9747d7be0a409c366e39039e2db) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  958. Start importing Assets/Rec/Export3/BR1-X006-02-S001-01.obj using Guid(f100b9747d7be0a409c366e39039e2db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd6f01507520d8e7d1ae9c9aa0ab8bf46') in 0.034685 seconds
  959. Import took 0.039401 seconds .
  960. ========================================================================
  961. Received Import Request.
  962. Time since last request: 0.000201 seconds.
  963. path: Assets/Rec/Export3/管道开关G058.obj
  964. artifactKey: Guid(ae0eb7436dad54645a3eadfb750d45c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  965. Start importing Assets/Rec/Export3/管道开关G058.obj using Guid(ae0eb7436dad54645a3eadfb750d45c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'abac1a5bb5130dc53cf29af834049f21') in 0.034919 seconds
  966. Import took 0.039672 seconds .
  967. ========================================================================
  968. Received Import Request.
  969. Time since last request: 0.000200 seconds.
  970. path: Assets/Rec/Export3/BR1-I002-01-S003-01.obj
  971. artifactKey: Guid(b5f504921dc354044b671f9eff55b545) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  972. Start importing Assets/Rec/Export3/BR1-I002-01-S003-01.obj using Guid(b5f504921dc354044b671f9eff55b545) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f616162688d01592250d33a007c2ae38') in 0.039025 seconds
  973. Import took 0.043946 seconds .
  974. ========================================================================
  975. Received Import Request.
  976. Time since last request: 0.000200 seconds.
  977. path: Assets/Rec/Export3/水处理过滤器.obj
  978. artifactKey: Guid(36ff270f7c525794894e88c1c63ed6d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  979. Start importing Assets/Rec/Export3/水处理过滤器.obj using Guid(36ff270f7c525794894e88c1c63ed6d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd72844ec5244de8b533b07d6e1b902f4') in 0.033428 seconds
  980. Import took 0.038249 seconds .
  981. ========================================================================
  982. Received Import Request.
  983. Time since last request: 0.000184 seconds.
  984. path: Assets/Rec/Export3/BR2-I001-03-S001-01.obj
  985. artifactKey: Guid(53dec4057478d864a9ee7f827c271237) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  986. Start importing Assets/Rec/Export3/BR2-I001-03-S001-01.obj using Guid(53dec4057478d864a9ee7f827c271237) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '950afb4952e80e4b66e89cf31aa8e0f7') in 0.030168 seconds
  987. Import took 0.034826 seconds .
  988. ========================================================================
  989. Received Import Request.
  990. Time since last request: 0.000194 seconds.
  991. path: Assets/Rec/Export3/管道开关D017.obj
  992. artifactKey: Guid(12e091bb7f739c849a3a21a14408661a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  993. Start importing Assets/Rec/Export3/管道开关D017.obj using Guid(12e091bb7f739c849a3a21a14408661a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '334ec233741601329e0a4369791ce4b6') in 0.032536 seconds
  994. Import took 0.037586 seconds .
  995. ========================================================================
  996. Received Import Request.
  997. Time since last request: 0.000199 seconds.
  998. path: Assets/Rec/Export3/BR1-I002-03-V002-01.obj
  999. artifactKey: Guid(fb832ecbf6737b44985a6bea1b01bafc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1000. Start importing Assets/Rec/Export3/BR1-I002-03-V002-01.obj using Guid(fb832ecbf6737b44985a6bea1b01bafc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '98d438baae9505ec3aaf030807573280') in 0.036919 seconds
  1001. Import took 0.041816 seconds .
  1002. ========================================================================
  1003. Received Import Request.
  1004. Time since last request: 0.000189 seconds.
  1005. path: Assets/Rec/Export3/1层除氧器控制柜.obj
  1006. artifactKey: Guid(8e1bc8d7d91933747b82ee466e455d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1007. Start importing Assets/Rec/Export3/1层除氧器控制柜.obj using Guid(8e1bc8d7d91933747b82ee466e455d2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8e8bf5f81ad0b2a7a76f38f30b8ca94f') in 0.034530 seconds
  1008. Import took 0.039399 seconds .
  1009. ========================================================================
  1010. Received Import Request.
  1011. Time since last request: 0.000185 seconds.
  1012. path: Assets/Rec/Export3/变送器000.obj
  1013. artifactKey: Guid(cc300d200cad8ec4bae6974050dd4866) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1014. Start importing Assets/Rec/Export3/变送器000.obj using Guid(cc300d200cad8ec4bae6974050dd4866) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b996f74a1ab43453e4ed09684c526180') in 0.031614 seconds
  1015. Import took 0.036368 seconds .
  1016. ========================================================================
  1017. Received Import Request.
  1018. Time since last request: 0.000198 seconds.
  1019. path: Assets/Rec/Export3/液位计004.obj
  1020. artifactKey: Guid(ac9d4891ab8ece740b77887b76288abc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1021. Start importing Assets/Rec/Export3/液位计004.obj using Guid(ac9d4891ab8ece740b77887b76288abc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6fcbf653345f4bfcab938ca79e83392b') in 0.030741 seconds
  1022. Import took 0.035569 seconds .
  1023. ========================================================================
  1024. Received Import Request.
  1025. Time since last request: 0.000162 seconds.
  1026. path: Assets/Rec/Export3/BR1-X008-01-V002-01.obj
  1027. artifactKey: Guid(a6af6ed5dd51a364bb66e492c1620eb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1028. Start importing Assets/Rec/Export3/BR1-X008-01-V002-01.obj using Guid(a6af6ed5dd51a364bb66e492c1620eb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd8079d5b1267a279d7f231aed66b2877') in 0.036926 seconds
  1029. Import took 0.041917 seconds .
  1030. ========================================================================
  1031. Received Import Request.
  1032. Time since last request: 0.000179 seconds.
  1033. path: Assets/Rec/Export3/BR1-X005-03-V001-01.obj
  1034. artifactKey: Guid(852f336f5d125f64392972e2eba23d24) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1035. Start importing Assets/Rec/Export3/BR1-X005-03-V001-01.obj using Guid(852f336f5d125f64392972e2eba23d24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'be0370f5c010d77dc2305ecd5f1d3b47') in 0.040638 seconds
  1036. Import took 0.045427 seconds .
  1037. ========================================================================
  1038. Received Import Request.
  1039. Time since last request: 0.000189 seconds.
  1040. path: Assets/Rec/Export3/BR1-I001-03-V002-01.obj
  1041. artifactKey: Guid(1866f912f162a4d46833775bcee1b9bb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1042. Start importing Assets/Rec/Export3/BR1-I001-03-V002-01.obj using Guid(1866f912f162a4d46833775bcee1b9bb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f43b5e52471623c1e33a0cc29ca99980') in 0.039991 seconds
  1043. Import took 0.044839 seconds .
  1044. ========================================================================
  1045. Received Import Request.
  1046. Time since last request: 0.000194 seconds.
  1047. path: Assets/Rec/Export3/BR1-I005-03-S001-01.obj
  1048. artifactKey: Guid(994532cb7ad0b0943b6c1e6d3a0dbb00) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1049. Start importing Assets/Rec/Export3/BR1-I005-03-S001-01.obj using Guid(994532cb7ad0b0943b6c1e6d3a0dbb00) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '97c926a1ee1b12a8e39eea8da492a809') in 0.033391 seconds
  1050. Import took 0.038176 seconds .
  1051. ========================================================================
  1052. Received Import Request.
  1053. Time since last request: 0.000251 seconds.
  1054. path: Assets/Rec/ui/Material/Mainmater/WaterMaterial.mat
  1055. artifactKey: Guid(08555bcadd893e54d98ca8f8e5d17536) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1056. Start importing Assets/Rec/ui/Material/Mainmater/WaterMaterial.mat using Guid(08555bcadd893e54d98ca8f8e5d17536) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2a993fba8422f490412ac0e8e80345a8') in 0.011470 seconds
  1057. Import took 0.016926 seconds .
  1058. ========================================================================
  1059. Received Import Request.
  1060. Time since last request: 0.000199 seconds.
  1061. path: Assets/Rec/Export3/设备_循环水泵.obj
  1062. artifactKey: Guid(1335c8d5b63c2834e90584813da68998) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1063. Start importing Assets/Rec/Export3/设备_循环水泵.obj using Guid(1335c8d5b63c2834e90584813da68998) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '70ebed68626fd4966eb51bdf444cfb0f') in 0.034555 seconds
  1064. Import took 0.040008 seconds .
  1065. ========================================================================
  1066. Received Import Request.
  1067. Time since last request: 0.000191 seconds.
  1068. path: Assets/Rec/Export3/管道开关G107.obj
  1069. artifactKey: Guid(d015c346cbacf9c41a7d02ff2465cba0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1070. Start importing Assets/Rec/Export3/管道开关G107.obj using Guid(d015c346cbacf9c41a7d02ff2465cba0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c59d66354378ae82364b95a4454c7163') in 0.035962 seconds
  1071. Import took 0.040813 seconds .
  1072. ========================================================================
  1073. Received Import Request.
  1074. Time since last request: 0.000199 seconds.
  1075. path: Assets/Rec/Export3/BR1-X005-02-S001-01.obj
  1076. artifactKey: Guid(4a96330e3053396469ef42a9eaa7ea2b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1077. Start importing Assets/Rec/Export3/BR1-X005-02-S001-01.obj using Guid(4a96330e3053396469ef42a9eaa7ea2b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '96b5b57acfc7c00b4ab0a524acd0e50b') in 0.029924 seconds
  1078. Import took 0.034658 seconds .
  1079. ========================================================================
  1080. Received Import Request.
  1081. Time since last request: 0.000196 seconds.
  1082. path: Assets/Rec/Export3/油箱阀门002.obj
  1083. artifactKey: Guid(ab0ed7518b9a7394c9dcf0c1723c244c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1084. Start importing Assets/Rec/Export3/油箱阀门002.obj using Guid(ab0ed7518b9a7394c9dcf0c1723c244c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd03a93279b703ae3b6900e91c80c7a8d') in 0.032590 seconds
  1085. Import took 0.037376 seconds .
  1086. ========================================================================
  1087. Received Import Request.
  1088. Time since last request: 0.000189 seconds.
  1089. path: Assets/Rec/Export3/管道开关G090.obj
  1090. artifactKey: Guid(8bf7672709a41a741979db9688b65460) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1091. Start importing Assets/Rec/Export3/管道开关G090.obj using Guid(8bf7672709a41a741979db9688b65460) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f6c7f3a4e47b082d3397cb30333ce258') in 0.040935 seconds
  1092. Import took 0.046049 seconds .
  1093. ========================================================================
  1094. Received Import Request.
  1095. Time since last request: 0.000231 seconds.
  1096. path: Assets/Rec/Export3/BR1-I002-03-V001-01.obj
  1097. artifactKey: Guid(b69fdee6aabc15641b2776a79a710aab) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1098. Start importing Assets/Rec/Export3/BR1-I002-03-V001-01.obj using Guid(b69fdee6aabc15641b2776a79a710aab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c9e0d26c83f6de14e4086bcc12e17676') in 0.040564 seconds
  1099. Import took 0.046113 seconds .
  1100. ========================================================================
  1101. Received Import Request.
  1102. Time since last request: 0.000196 seconds.
  1103. path: Assets/Rec/ui/Material/Main_one/Material_A003.mat
  1104. artifactKey: Guid(3b9f2b85b46265e42bb4b97edd1dd0ea) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1105. Start importing Assets/Rec/ui/Material/Main_one/Material_A003.mat using Guid(3b9f2b85b46265e42bb4b97edd1dd0ea) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '58f89ad731d0bdb1c7c7ac4f2053c9e1') in 0.012337 seconds
  1106. Import took 0.018269 seconds .
  1107. ========================================================================
  1108. Received Import Request.
  1109. Time since last request: 0.000300 seconds.
  1110. path: Assets/Rec/ui/Material/Main_one/Material_A004.mat
  1111. artifactKey: Guid(0467b850c92e72841bbc9283ca28048e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1112. Start importing Assets/Rec/ui/Material/Main_one/Material_A004.mat using Guid(0467b850c92e72841bbc9283ca28048e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a72a2ec8aab80a59687c23ae4b45c040') in 0.010380 seconds
  1113. Import took 0.016040 seconds .
  1114. ========================================================================
  1115. Received Import Request.
  1116. Time since last request: 0.000236 seconds.
  1117. path: Assets/Rec/Export3/guandaokaiguan.obj
  1118. artifactKey: Guid(50182590c0328cf4397676c83b6a169f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1119. Start importing Assets/Rec/Export3/guandaokaiguan.obj using Guid(50182590c0328cf4397676c83b6a169f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6fb5fb45cfdd7f0ec5e9ebeb2453bc1d') in 0.037143 seconds
  1120. Import took 0.042764 seconds .
  1121. ========================================================================
  1122. Received Import Request.
  1123. Time since last request: 0.000193 seconds.
  1124. path: Assets/Test/New Material 1.mat
  1125. artifactKey: Guid(56df3b43e1ff26c44b40c3dd99c6ac11) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1126. Start importing Assets/Test/New Material 1.mat using Guid(56df3b43e1ff26c44b40c3dd99c6ac11) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '815de8a48779cdbd8022164b675bfd2d') in 0.011017 seconds
  1127. Import took 0.016165 seconds .
  1128. ========================================================================
  1129. Received Import Request.
  1130. Time since last request: 0.000188 seconds.
  1131. path: Assets/Rec/Export3/1层控制室椅子008.obj
  1132. artifactKey: Guid(ff6bf1a53f6f2d345ac181ce21ab4fcf) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1133. Start importing Assets/Rec/Export3/1层控制室椅子008.obj using Guid(ff6bf1a53f6f2d345ac181ce21ab4fcf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5f9c1d03c5d857b9c645c8ac0e4edf8e') in 0.034019 seconds
  1134. Import took 0.039901 seconds .
  1135. ========================================================================
  1136. Received Import Request.
  1137. Time since last request: 0.000243 seconds.
  1138. path: Assets/Rec/Export3/BR1-X010-01-V003-01.obj
  1139. artifactKey: Guid(8ec163134286abc4990f74f68abbe067) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1140. Start importing Assets/Rec/Export3/BR1-X010-01-V003-01.obj using Guid(8ec163134286abc4990f74f68abbe067) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c0853797afdd7c68f96b126f2682e8d6') in 0.044129 seconds
  1141. Import took 0.049532 seconds .
  1142. ========================================================================
  1143. Received Import Request.
  1144. Time since last request: 0.000211 seconds.
  1145. path: Assets/Rec/Export3/1层控制室椅子009.obj
  1146. artifactKey: Guid(6436565bc535d914eb3227b07e761d59) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1147. Start importing Assets/Rec/Export3/1层控制室椅子009.obj using Guid(6436565bc535d914eb3227b07e761d59) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd483c4cc9a0d4cb382a92c5b4a440825') in 0.031878 seconds
  1148. Import took 0.036794 seconds .
  1149. ========================================================================
  1150. Received Import Request.
  1151. Time since last request: 0.000192 seconds.
  1152. path: Assets/Rec/Export3/液位计006.obj
  1153. artifactKey: Guid(99d6eb48cf12e394c96fa05ef8f061dd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1154. Start importing Assets/Rec/Export3/液位计006.obj using Guid(99d6eb48cf12e394c96fa05ef8f061dd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c80cdc9058a2e66c151f304e5f1306d6') in 0.032914 seconds
  1155. Import took 0.037700 seconds .
  1156. ========================================================================
  1157. Received Import Request.
  1158. Time since last request: 0.000194 seconds.
  1159. path: Assets/Rec/Export3/BR1-I002-01-V001-01.obj
  1160. artifactKey: Guid(751a9138d450e6042a2c0952b86ba6d4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1161. Start importing Assets/Rec/Export3/BR1-I002-01-V001-01.obj using Guid(751a9138d450e6042a2c0952b86ba6d4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7dac3cb299ad78e9e21bfc4e890826d2') in 0.043842 seconds
  1162. Import took 0.048702 seconds .
  1163. ========================================================================
  1164. Received Import Request.
  1165. Time since last request: 0.000251 seconds.
  1166. path: Assets/Rec/Export3/BR1-I002-01-V005-01.obj
  1167. artifactKey: Guid(b1c367788ce6dfa4da73630ea61b70bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1168. Start importing Assets/Rec/Export3/BR1-I002-01-V005-01.obj using Guid(b1c367788ce6dfa4da73630ea61b70bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '35e76ef64c8a480370eef0c1a6c813a6') in 0.034464 seconds
  1169. Import took 0.039485 seconds .
  1170. ========================================================================
  1171. Received Import Request.
  1172. Time since last request: 0.000199 seconds.
  1173. path: Assets/Rec/Export3/BR1-X010-02-S001-01.obj
  1174. artifactKey: Guid(599c053a59b88674b80362a3d1e33207) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1175. Start importing Assets/Rec/Export3/BR1-X010-02-S001-01.obj using Guid(599c053a59b88674b80362a3d1e33207) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c99cebcfe7684aabbba234778eaa02b3') in 0.028320 seconds
  1176. Import took 0.033283 seconds .
  1177. ========================================================================
  1178. Received Import Request.
  1179. Time since last request: 0.000197 seconds.
  1180. path: Assets/Scripts/Manager/MaterialsManager.cs
  1181. artifactKey: Guid(010bd63ae00c27b4ba82cbc7676866f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1182. Start importing Assets/Scripts/Manager/MaterialsManager.cs using Guid(010bd63ae00c27b4ba82cbc7676866f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '35517ac69fd277393a318de3ee0fff8e') in 0.009985 seconds
  1183. Import took 0.014898 seconds .
  1184. ========================================================================
  1185. Received Import Request.
  1186. Time since last request: 0.000183 seconds.
  1187. path: Assets/Rec/Export3/BR1-X010-01-V002-01.obj
  1188. artifactKey: Guid(703acbe08f34bec419a709491803ce6f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1189. Start importing Assets/Rec/Export3/BR1-X010-01-V002-01.obj using Guid(703acbe08f34bec419a709491803ce6f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1a622cf71dbe4876ae4e431d2336453f') in 0.034325 seconds
  1190. Import took 0.039407 seconds .
  1191. ========================================================================
  1192. Received Import Request.
  1193. Time since last request: 0.000213 seconds.
  1194. path: Assets/Rec/Export3/液位计.obj
  1195. artifactKey: Guid(0562f941ba4c2c940b65f8524f48939d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1196. Start importing Assets/Rec/Export3/液位计.obj using Guid(0562f941ba4c2c940b65f8524f48939d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b79951dd97010a2e9422908775882642') in 0.032800 seconds
  1197. Import took 0.037583 seconds .
  1198. ========================================================================
  1199. Received Import Request.
  1200. Time since last request: 0.000213 seconds.
  1201. path: Assets/Rec/Export3/BR1-X006-01-V003-01.obj
  1202. artifactKey: Guid(3fcc7a00d97b8244ab343fd37420742c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1203. Start importing Assets/Rec/Export3/BR1-X006-01-V003-01.obj using Guid(3fcc7a00d97b8244ab343fd37420742c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c8f757864130b5e885b39c6bc16031dc') in 0.035723 seconds
  1204. Import took 0.040941 seconds .
  1205. ========================================================================
  1206. Received Import Request.
  1207. Time since last request: 0.000216 seconds.
  1208. path: Assets/Rec/Export3/液位计007.obj
  1209. artifactKey: Guid(98be9396a7c484b458e74807b6a661fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1210. Start importing Assets/Rec/Export3/液位计007.obj using Guid(98be9396a7c484b458e74807b6a661fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd430f92212c00f1387ee129943f3843e') in 0.040727 seconds
  1211. Import took 0.045732 seconds .
  1212. ========================================================================
  1213. Received Import Request.
  1214. Time since last request: 0.000252 seconds.
  1215. path: Assets/Rec/Export3/BR1-I002-01-V004-01.obj
  1216. artifactKey: Guid(37d7dfbf64d2a7741a215297a4637b27) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1217. Start importing Assets/Rec/Export3/BR1-I002-01-V004-01.obj using Guid(37d7dfbf64d2a7741a215297a4637b27) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b4f80e61b13f85a0dd85f90d2f806ee2') in 0.058646 seconds
  1218. Import took 0.063379 seconds .
  1219. ========================================================================
  1220. Received Import Request.
  1221. Time since last request: 0.000213 seconds.
  1222. path: Assets/Rec/ui/Material/Main_two/Material_A005.mat
  1223. artifactKey: Guid(97850c38565c63a4ca3dbc2609c47cbb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1224. Start importing Assets/Rec/ui/Material/Main_two/Material_A005.mat using Guid(97850c38565c63a4ca3dbc2609c47cbb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '831fbd97fda75f991e20ba69c2e15769') in 0.010423 seconds
  1225. Import took 0.015086 seconds .
  1226. ========================================================================
  1227. Received Import Request.
  1228. Time since last request: 0.000162 seconds.
  1229. path: Assets/Rec/Export3/电脑主机.obj
  1230. artifactKey: Guid(002572deef561a54798ca8044b954ffa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1231. Start importing Assets/Rec/Export3/电脑主机.obj using Guid(002572deef561a54798ca8044b954ffa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bad3d3ac586a4603ea73a853b66cbea9') in 0.026265 seconds
  1232. Import took 0.030998 seconds .
  1233. ========================================================================
  1234. Received Import Request.
  1235. Time since last request: 0.000204 seconds.
  1236. path: Assets/Rec/Export3/管道开关D019.obj
  1237. artifactKey: Guid(0c16f66757eea6f4c8d813cc53fda605) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1238. Start importing Assets/Rec/Export3/管道开关D019.obj using Guid(0c16f66757eea6f4c8d813cc53fda605) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '562f0f542b203f413d246647d6cc75c0') in 0.033596 seconds
  1239. Import took 0.038616 seconds .
  1240. ========================================================================
  1241. Received Import Request.
  1242. Time since last request: 0.000195 seconds.
  1243. path: Assets/Rec/Export3/管道开关G105.obj
  1244. artifactKey: Guid(d72c6026f3e659b4a9bdb793487e3505) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1245. Start importing Assets/Rec/Export3/管道开关G105.obj using Guid(d72c6026f3e659b4a9bdb793487e3505) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2da70c3f02f43e5de333ab430fd99310') in 0.032912 seconds
  1246. Import took 0.037828 seconds .
  1247. ========================================================================
  1248. Received Import Request.
  1249. Time since last request: 0.000203 seconds.
  1250. path: Assets/Rec/Export3/电脑主机003.obj
  1251. artifactKey: Guid(7b0bb92203e91364690f12a838b96466) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1252. Start importing Assets/Rec/Export3/电脑主机003.obj using Guid(7b0bb92203e91364690f12a838b96466) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a2aa86a45257b4bb835572a4db969b3b') in 0.026955 seconds
  1253. Import took 0.031645 seconds .
  1254. ========================================================================
  1255. Received Import Request.
  1256. Time since last request: 0.000200 seconds.
  1257. path: Assets/Rec/Export3/BR1-X017-01-E001-01.obj
  1258. artifactKey: Guid(1144bdd70ad46e54987d071894639aa6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1259. Start importing Assets/Rec/Export3/BR1-X017-01-E001-01.obj using Guid(1144bdd70ad46e54987d071894639aa6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '58eecd860db2bea669af71f46d558eb7') in 0.028456 seconds
  1260. Import took 0.033276 seconds .
  1261. ========================================================================
  1262. Received Import Request.
  1263. Time since last request: 0.000189 seconds.
  1264. path: Assets/Rec/Export3/电脑主机002.obj
  1265. artifactKey: Guid(6f7a4bc1f4e84ba4983a8559208b7727) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1266. Start importing Assets/Rec/Export3/电脑主机002.obj using Guid(6f7a4bc1f4e84ba4983a8559208b7727) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0dced6673b5f0f469153ceeeff2f88c9') in 0.034892 seconds
  1267. Import took 0.040142 seconds .
  1268. ========================================================================
  1269. Received Import Request.
  1270. Time since last request: 0.000192 seconds.
  1271. path: Assets/Rec/Export3/除氧器液位差压变送器002.obj
  1272. artifactKey: Guid(d0d86786c1cfc4b469c73e661e9a779b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1273. Start importing Assets/Rec/Export3/除氧器液位差压变送器002.obj using Guid(d0d86786c1cfc4b469c73e661e9a779b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7c93ac87c49a3ea98709b4f9ffa2928d') in 0.026732 seconds
  1274. Import took 0.031538 seconds .
  1275. ========================================================================
  1276. Received Import Request.
  1277. Time since last request: 0.000215 seconds.
  1278. path: Assets/Rec/Export3/BR1-X016-02-S001-01.obj
  1279. artifactKey: Guid(28f6a123afcf2be44b910eb6999be789) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1280. Start importing Assets/Rec/Export3/BR1-X016-02-S001-01.obj using Guid(28f6a123afcf2be44b910eb6999be789) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0927508f5cb6942055329c33d0a76e36') in 0.026838 seconds
  1281. Import took 0.031603 seconds .
  1282. ========================================================================
  1283. Received Import Request.
  1284. Time since last request: 0.000199 seconds.
  1285. path: Assets/Rec/Export3/BR1-I001-03-V001-01.obj
  1286. artifactKey: Guid(376e92c60bfbf20469407bcb2319a68b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1287. Start importing Assets/Rec/Export3/BR1-I001-03-V001-01.obj using Guid(376e92c60bfbf20469407bcb2319a68b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8c8b7d3024b2d69682e2b942ee322568') in 0.033268 seconds
  1288. Import took 0.038074 seconds .
  1289. ========================================================================
  1290. Received Import Request.
  1291. Time since last request: 0.000220 seconds.
  1292. path: Assets/Rec/Export3/管道开关G079.obj
  1293. artifactKey: Guid(13ce81ec92583dd489af884ff9168756) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1294. Start importing Assets/Rec/Export3/管道开关G079.obj using Guid(13ce81ec92583dd489af884ff9168756) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b6e1a7db1c02a5be935a7bf3df61ec18') in 0.046312 seconds
  1295. Import took 0.052054 seconds .
  1296. ========================================================================
  1297. Received Import Request.
  1298. Time since last request: 0.000211 seconds.
  1299. path: Assets/Rec/Export3/铁架006.obj
  1300. artifactKey: Guid(41ec7f0423122fa49aba896f8404d51f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1301. Start importing Assets/Rec/Export3/铁架006.obj using Guid(41ec7f0423122fa49aba896f8404d51f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b25c142e8d5b621c182d1f31b6bfefc3') in 0.028221 seconds
  1302. Import took 0.033321 seconds .
  1303. ========================================================================
  1304. Received Import Request.
  1305. Time since last request: 0.000220 seconds.
  1306. path: Assets/Rec/Export3/BR1-X001-04-V001-01.obj
  1307. artifactKey: Guid(3204a309b98ec9a448fc90c24ac82fbd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1308. Start importing Assets/Rec/Export3/BR1-X001-04-V001-01.obj using Guid(3204a309b98ec9a448fc90c24ac82fbd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fb7498947831f2e52c98e81ac445409d') in 0.034118 seconds
  1309. Import took 0.039320 seconds .
  1310. ========================================================================
  1311. Received Import Request.
  1312. Time since last request: 0.000199 seconds.
  1313. path: Assets/Rec/ui/Material/Main_two/Material_A032.mat
  1314. artifactKey: Guid(d53a0be03c61f224c835c74b958074ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1315. Start importing Assets/Rec/ui/Material/Main_two/Material_A032.mat using Guid(d53a0be03c61f224c835c74b958074ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9b31a630d263cb913f7b745bb9d14995') in 0.012605 seconds
  1316. Import took 0.019917 seconds .
  1317. ========================================================================
  1318. Received Import Request.
  1319. Time since last request: 0.000382 seconds.
  1320. path: Assets/Rec/Export3/BR1-X009-01-V002-01.obj
  1321. artifactKey: Guid(0971c41cf2605174088cacb05d525638) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1322. Start importing Assets/Rec/Export3/BR1-X009-01-V002-01.obj using Guid(0971c41cf2605174088cacb05d525638) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '750ecfcf2ede10e71a27eef66c4db680') in 0.053161 seconds
  1323. Import took 0.059231 seconds .
  1324. ========================================================================
  1325. Received Import Request.
  1326. Time since last request: 0.000248 seconds.
  1327. path: Assets/Rec/Export3/BR1-I002-01-V003-01.obj
  1328. artifactKey: Guid(2b70b53ae70e26f40b7935f8c31c3cdd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1329. Start importing Assets/Rec/Export3/BR1-I002-01-V003-01.obj using Guid(2b70b53ae70e26f40b7935f8c31c3cdd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '06de46b7c95c4845b41d9280b626817e') in 0.033115 seconds
  1330. Import took 0.038003 seconds .
  1331. ========================================================================
  1332. Received Import Request.
  1333. Time since last request: 0.000200 seconds.
  1334. path: Assets/Rec/Export3/BR1-X006-02-V001-01.obj
  1335. artifactKey: Guid(124e3d16c2eb80b4ba3d6d606593a6e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1336. Start importing Assets/Rec/Export3/BR1-X006-02-V001-01.obj using Guid(124e3d16c2eb80b4ba3d6d606593a6e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c2db1cfd25534a1de9549000f34f67e0') in 0.032573 seconds
  1337. Import took 0.037251 seconds .
  1338. ========================================================================
  1339. Received Import Request.
  1340. Time since last request: 0.000201 seconds.
  1341. path: Assets/Rec/ui/Material/Main_one/Material_A005.mat
  1342. artifactKey: Guid(821409778740e6b4ba544db261aa41d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1343. Start importing Assets/Rec/ui/Material/Main_one/Material_A005.mat using Guid(821409778740e6b4ba544db261aa41d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fed668611f2bd249e2d5f4b38d3ef607') in 0.009996 seconds
  1344. Import took 0.015020 seconds .
  1345. ========================================================================
  1346. Received Import Request.
  1347. Time since last request: 0.000180 seconds.
  1348. path: Assets/Rec/ui/Material/Main_two/Material_A016.mat
  1349. artifactKey: Guid(193d559b3a27b6044a52870fa44bd27e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1350. Start importing Assets/Rec/ui/Material/Main_two/Material_A016.mat using Guid(193d559b3a27b6044a52870fa44bd27e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3d38d038ce4b129efb48b3788f2c676b') in 0.011723 seconds
  1351. Import took 0.017606 seconds .
  1352. ========================================================================
  1353. Received Import Request.
  1354. Time since last request: 0.000206 seconds.
  1355. path: Assets/Rec/Export3/变送器003.obj
  1356. artifactKey: Guid(02d0a9a1afbf2d541863c6516bc7c88a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1357. Start importing Assets/Rec/Export3/变送器003.obj using Guid(02d0a9a1afbf2d541863c6516bc7c88a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0134ae1f821ad99b9777b1ae948ca2b2') in 0.034641 seconds
  1358. Import took 0.040717 seconds .
  1359. ========================================================================
  1360. Received Import Request.
  1361. Time since last request: 0.000220 seconds.
  1362. path: Assets/Rec/Export3/BR1-X009-01-V003-01.obj
  1363. artifactKey: Guid(09815a7853b21a34794bb5d71d225142) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1364. Start importing Assets/Rec/Export3/BR1-X009-01-V003-01.obj using Guid(09815a7853b21a34794bb5d71d225142) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd70b568075f90bd444521dc455085cae') in 0.050800 seconds
  1365. Import took 0.057173 seconds .
  1366. ========================================================================
  1367. Received Import Request.
  1368. Time since last request: 0.000230 seconds.
  1369. path: Assets/Rec/Export3/1层控制室办公桌1.obj
  1370. artifactKey: Guid(09a684daaa0769842beacbb6bb9fc1f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1371. Start importing Assets/Rec/Export3/1层控制室办公桌1.obj using Guid(09a684daaa0769842beacbb6bb9fc1f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f50bf0daeedf63c15851662fe7f56a9b') in 0.027137 seconds
  1372. Import took 0.032387 seconds .
  1373. ========================================================================
  1374. Received Import Request.
  1375. Time since last request: 0.000212 seconds.
  1376. path: Assets/Rec/Export3/BR2-I001-04-V002-01.obj
  1377. artifactKey: Guid(d3354156731f82b41b0ef2274c7d93b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1378. Start importing Assets/Rec/Export3/BR2-I001-04-V002-01.obj using Guid(d3354156731f82b41b0ef2274c7d93b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '71b1b45640abd717347897c3e95e194e') in 0.042447 seconds
  1379. Import took 0.047632 seconds .
  1380. ========================================================================
  1381. Received Import Request.
  1382. Time since last request: 0.000198 seconds.
  1383. path: Assets/Rec/Export3/进风压力变送器001.obj
  1384. artifactKey: Guid(7f51bf35db1a67044a2009f95cee237c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1385. Start importing Assets/Rec/Export3/进风压力变送器001.obj using Guid(7f51bf35db1a67044a2009f95cee237c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7d50adeec3c4b09cdf9ea58286ac1873') in 0.026744 seconds
  1386. Import took 0.031506 seconds .
  1387. ========================================================================
  1388. Received Import Request.
  1389. Time since last request: 0.000201 seconds.
  1390. path: Assets/Rec/Export3/油箱阀门.obj
  1391. artifactKey: Guid(b2b354fa3b8a7e7498e6d6a84523905d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1392. Start importing Assets/Rec/Export3/油箱阀门.obj using Guid(b2b354fa3b8a7e7498e6d6a84523905d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a5cc39350f9edf0660c32ce09345f586') in 0.027442 seconds
  1393. Import took 0.032243 seconds .
  1394. ========================================================================
  1395. Received Import Request.
  1396. Time since last request: 0.000211 seconds.
  1397. path: Assets/Rec/Export3/BR2-I001-03-V001-01.obj
  1398. artifactKey: Guid(70b840562be63404c90257b8b381c336) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1399. Start importing Assets/Rec/Export3/BR2-I001-03-V001-01.obj using Guid(70b840562be63404c90257b8b381c336) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0bf0da309cbd133139df5db0c6ce3146') in 0.038351 seconds
  1400. Import took 0.044000 seconds .
  1401. ========================================================================
  1402. Received Import Request.
  1403. Time since last request: 0.000197 seconds.
  1404. path: Assets/Rec/Export3/管道开关D016.obj
  1405. artifactKey: Guid(59a11e5e2158edb4f8e02ec537721d40) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1406. Start importing Assets/Rec/Export3/管道开关D016.obj using Guid(59a11e5e2158edb4f8e02ec537721d40) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '080efe2b3f5f5ff7aec53eceff6bcec9') in 0.027389 seconds
  1407. Import took 0.032633 seconds .
  1408. ========================================================================
  1409. Received Import Request.
  1410. Time since last request: 0.000199 seconds.
  1411. path: Assets/Rec/Export3/BR1-I002-01-V002-01.obj
  1412. artifactKey: Guid(3bf428350fb40cc41a8d5053328add4a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1413. Start importing Assets/Rec/Export3/BR1-I002-01-V002-01.obj using Guid(3bf428350fb40cc41a8d5053328add4a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6c62032b300ac8f58e81e38765a5aec5') in 0.033150 seconds
  1414. Import took 0.037971 seconds .
  1415. ========================================================================
  1416. Received Import Request.
  1417. Time since last request: 0.000227 seconds.
  1418. path: Assets/Rec/Export3/管道开关G104.obj
  1419. artifactKey: Guid(63f947f44d5a8914fa7388e0b78c8ae5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1420. Start importing Assets/Rec/Export3/管道开关G104.obj using Guid(63f947f44d5a8914fa7388e0b78c8ae5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '98c40b747fdd326b38f806ecea4c7844') in 0.040688 seconds
  1421. Import took 0.046494 seconds .
  1422. ========================================================================
  1423. Received Import Request.
  1424. Time since last request: 0.000226 seconds.
  1425. path: Assets/Rec/Export3/管道开关G091.obj
  1426. artifactKey: Guid(fb3d8871a8b1fdd46820dffc73a9b769) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1427. Start importing Assets/Rec/Export3/管道开关G091.obj using Guid(fb3d8871a8b1fdd46820dffc73a9b769) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a5827786b6284a2bd6cc5ae8180ed55') in 0.040017 seconds
  1428. Import took 0.045917 seconds .
  1429. ========================================================================
  1430. Received Import Request.
  1431. Time since last request: 0.000211 seconds.
  1432. path: Assets/Rec/Export3/BR1-X005-02-V002-01.obj
  1433. artifactKey: Guid(8e1893ba10c25df4089f946ae277edcb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1434. Start importing Assets/Rec/Export3/BR1-X005-02-V002-01.obj using Guid(8e1893ba10c25df4089f946ae277edcb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4a0367529b61b48ca2b04cbd2198d1c2') in 0.030986 seconds
  1435. Import took 0.035878 seconds .
  1436. ========================================================================
  1437. Received Import Request.
  1438. Time since last request: 0.000255 seconds.
  1439. path: Assets/Rec/Export3/给水压力变送器001.obj
  1440. artifactKey: Guid(efe33e89e10bd4d439dd19d5a729be3a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1441. Start importing Assets/Rec/Export3/给水压力变送器001.obj using Guid(efe33e89e10bd4d439dd19d5a729be3a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4eb4c7d13a70cb95d74d23f44f43fc47') in 0.025472 seconds
  1442. Import took 0.030584 seconds .
  1443. ========================================================================
  1444. Received Import Request.
  1445. Time since last request: 0.000204 seconds.
  1446. path: Assets/Rec/Export3/设备_加药设备.obj
  1447. artifactKey: Guid(40b015daaf46cd1438b3b9f3bfb2f97a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1448. Start importing Assets/Rec/Export3/设备_加药设备.obj using Guid(40b015daaf46cd1438b3b9f3bfb2f97a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2e0708dcf3917e0fd368d642607863b1') in 0.030639 seconds
  1449. Import took 0.035755 seconds .
  1450. ========================================================================
  1451. Received Import Request.
  1452. Time since last request: 0.000212 seconds.
  1453. path: Assets/Rec/Export3/储气筒部件.obj
  1454. artifactKey: Guid(a4ef5b001d92d0e47b951ee3657450c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1455. Start importing Assets/Rec/Export3/储气筒部件.obj using Guid(a4ef5b001d92d0e47b951ee3657450c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '90da353ec846417edf1d141c608890c8') in 0.026703 seconds
  1456. Import took 0.031484 seconds .
  1457. ========================================================================
  1458. Received Import Request.
  1459. Time since last request: 0.000213 seconds.
  1460. path: Assets/Rec/Export3/管道开关G101.obj
  1461. artifactKey: Guid(106d5344dc7e7da4f9cb2ad80409dad4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1462. Start importing Assets/Rec/Export3/管道开关G101.obj using Guid(106d5344dc7e7da4f9cb2ad80409dad4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c4fd7849ad111b7a57b6dcf50df6e5f8') in 0.031050 seconds
  1463. Import took 0.035946 seconds .
  1464. ========================================================================
  1465. Received Import Request.
  1466. Time since last request: 0.000198 seconds.
  1467. path: Assets/Test/New Material.mat
  1468. artifactKey: Guid(33aab81a42ef31145af56beb1150bac5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1469. Start importing Assets/Test/New Material.mat using Guid(33aab81a42ef31145af56beb1150bac5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1fd36d0ed3eae31666eae9bf1408af2e') in 0.015361 seconds
  1470. Import took 0.020105 seconds .
  1471. ========================================================================
  1472. Received Import Request.
  1473. Time since last request: 0.000177 seconds.
  1474. path: Assets/Rec/Export3/储气筒部件001.obj
  1475. artifactKey: Guid(dc494e9d6d390da4191e79ae6736e74c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1476. Start importing Assets/Rec/Export3/储气筒部件001.obj using Guid(dc494e9d6d390da4191e79ae6736e74c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ef4fe547ae1b26f6d1bc574c53217b49') in 0.034486 seconds
  1477. Import took 0.039316 seconds .
  1478. ========================================================================
  1479. Received Import Request.
  1480. Time since last request: 0.000207 seconds.
  1481. path: Assets/Rec/Export3/BR2-I001-04-V001-01.obj
  1482. artifactKey: Guid(9f9b78dc006befc42be2fdce5af6553c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1483. Start importing Assets/Rec/Export3/BR2-I001-04-V001-01.obj using Guid(9f9b78dc006befc42be2fdce5af6553c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29dd85a6f288bba0c1bb280806e7e258') in 0.031734 seconds
  1484. Import took 0.036571 seconds .
  1485. ========================================================================
  1486. Received Import Request.
  1487. Time since last request: 0.000212 seconds.
  1488. path: Assets/Rec/Export3/BR1-X006-01-V002-01.obj
  1489. artifactKey: Guid(9ad51146b37f6ef458635854cd5dd182) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1490. Start importing Assets/Rec/Export3/BR1-X006-01-V002-01.obj using Guid(9ad51146b37f6ef458635854cd5dd182) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f975a171d68b2f20c5ea2d74c39dfd56') in 0.031177 seconds
  1491. Import took 0.036031 seconds .
  1492. ========================================================================
  1493. Received Import Request.
  1494. Time since last request: 0.000211 seconds.
  1495. path: Assets/Rec/Export3/管道开关G061.obj
  1496. artifactKey: Guid(e8369ee137f1cb04e894fa526ea3b359) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1497. Start importing Assets/Rec/Export3/管道开关G061.obj using Guid(e8369ee137f1cb04e894fa526ea3b359) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4783a4a97135cb2880d9314b110a6d19') in 0.035060 seconds
  1498. Import took 0.040286 seconds .
  1499. ========================================================================
  1500. Received Import Request.
  1501. Time since last request: 0.000204 seconds.
  1502. path: Assets/Rec/Export3/1层控制室椅子.obj
  1503. artifactKey: Guid(cbf5c15cf4063aa449103712a64eb4ea) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1504. Start importing Assets/Rec/Export3/1层控制室椅子.obj using Guid(cbf5c15cf4063aa449103712a64eb4ea) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '19f0cf602b88594d1e2f3c787578c83f') in 0.026100 seconds
  1505. Import took 0.030973 seconds .
  1506. ========================================================================
  1507. Received Import Request.
  1508. Time since last request: 0.000210 seconds.
  1509. path: Assets/Rec/Export3/BR1-I002-04-V001-01.obj
  1510. artifactKey: Guid(dbe6e0426c311f24c8083418b91d8ab7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1511. Start importing Assets/Rec/Export3/BR1-I002-04-V001-01.obj using Guid(dbe6e0426c311f24c8083418b91d8ab7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cf784629f926af588b3a05832bcd499b') in 0.040857 seconds
  1512. Import took 0.045914 seconds .
  1513. ========================================================================
  1514. Received Import Request.
  1515. Time since last request: 0.000208 seconds.
  1516. path: Assets/Rec/Export3/BR1-I002-01-V009-01.obj
  1517. artifactKey: Guid(878955e7f6e3cfd49a58e6ca22df0156) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1518. Start importing Assets/Rec/Export3/BR1-I002-01-V009-01.obj using Guid(878955e7f6e3cfd49a58e6ca22df0156) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '77cd8b5e996bbef891ae082d46f8e25d') in 0.042191 seconds
  1519. Import took 0.047917 seconds .
  1520. ========================================================================
  1521. Received Import Request.
  1522. Time since last request: 0.000215 seconds.
  1523. path: Assets/Rec/Export3/BR1-I001-04-V001-01.obj
  1524. artifactKey: Guid(1e447b753db47ad4f8416752e68fe231) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1525. Start importing Assets/Rec/Export3/BR1-I001-04-V001-01.obj using Guid(1e447b753db47ad4f8416752e68fe231) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1c50c76964732d6a946ba0cf83d389f5') in 0.041652 seconds
  1526. Import took 0.047122 seconds .
  1527. ========================================================================
  1528. Received Import Request.
  1529. Time since last request: 0.000225 seconds.
  1530. path: Assets/Rec/Export3/管道开关D.obj
  1531. artifactKey: Guid(841aca7dcd62e29458678168571bf738) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1532. Start importing Assets/Rec/Export3/管道开关D.obj using Guid(841aca7dcd62e29458678168571bf738) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd3afb3ebf709d4373f9d45645209898e') in 0.025060 seconds
  1533. Import took 0.029962 seconds .
  1534. ========================================================================
  1535. Received Import Request.
  1536. Time since last request: 0.000213 seconds.
  1537. path: Assets/Rec/Export3/BR2-I001-02-V001-01.obj
  1538. artifactKey: Guid(18a91176432cb7f4893a0a58fcc912df) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1539. Start importing Assets/Rec/Export3/BR2-I001-02-V001-01.obj using Guid(18a91176432cb7f4893a0a58fcc912df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '860f1f9a2cfeb21bf250bcbe7ed0d8d5') in 0.033721 seconds
  1540. Import took 0.039289 seconds .
  1541. ========================================================================
  1542. Received Import Request.
  1543. Time since last request: 0.000221 seconds.
  1544. path: Assets/Rec/Export3/管道开关G063.obj
  1545. artifactKey: Guid(67cb3df7408ce754f9a4e97d312664db) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1546. Start importing Assets/Rec/Export3/管道开关G063.obj using Guid(67cb3df7408ce754f9a4e97d312664db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '957d109a019a861db8553a69ac0b54a7') in 0.044208 seconds
  1547. Import took 0.050232 seconds .
  1548. ========================================================================
  1549. Received Import Request.
  1550. Time since last request: 0.000205 seconds.
  1551. path: Assets/Rec/Export3/管道开关G108.obj
  1552. artifactKey: Guid(45242d8a3a742474cbeb72cbe486236f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1553. Start importing Assets/Rec/Export3/管道开关G108.obj using Guid(45242d8a3a742474cbeb72cbe486236f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '98b0df4b87a28b1b564961ff989f0507') in 0.031769 seconds
  1554. Import took 0.036635 seconds .
  1555. ========================================================================
  1556. Received Import Request.
  1557. Time since last request: 0.000224 seconds.
  1558. path: Assets/Rec/Export3/BR1-X011-01-V003-01.obj
  1559. artifactKey: Guid(398036e8da03c1048ba4d99de2faf1ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1560. Start importing Assets/Rec/Export3/BR1-X011-01-V003-01.obj using Guid(398036e8da03c1048ba4d99de2faf1ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a3dcea8037e5b0adb43ec8f67da52783') in 0.036976 seconds
  1561. Import took 0.042513 seconds .
  1562. ========================================================================
  1563. Received Import Request.
  1564. Time since last request: 0.000191 seconds.
  1565. path: Assets/Rec/Export3/设备_气动调节阀(单座).obj
  1566. artifactKey: Guid(32a35186402031143a543dbb3fda30e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1567. Start importing Assets/Rec/Export3/设备_气动调节阀(单座).obj using Guid(32a35186402031143a543dbb3fda30e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f562585ad4910fad6bfba3f3e619c307') in 0.033695 seconds
  1568. Import took 0.039302 seconds .
  1569. ========================================================================
  1570. Received Import Request.
  1571. Time since last request: 0.000187 seconds.
  1572. path: Assets/Rec/Export3/BR1-I001-03-S001-01.obj
  1573. artifactKey: Guid(1ff17e6ad8f403a48b7c97d3f18f58e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1574. Start importing Assets/Rec/Export3/BR1-I001-03-S001-01.obj using Guid(1ff17e6ad8f403a48b7c97d3f18f58e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '744711dce7858c2e71c5132a2283c395') in 0.026419 seconds
  1575. Import took 0.031560 seconds .
  1576. ========================================================================
  1577. Received Import Request.
  1578. Time since last request: 0.000204 seconds.
  1579. path: Assets/Rec/Export3/BR1-I002-04-S001-01.obj
  1580. artifactKey: Guid(d6af23a29e4701f42a3b1d260dd1d2f8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1581. Start importing Assets/Rec/Export3/BR1-I002-04-S001-01.obj using Guid(d6af23a29e4701f42a3b1d260dd1d2f8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b9c72fd7dc467d6665213072d9fdc41') in 0.029760 seconds
  1582. Import took 0.035485 seconds .
  1583. ========================================================================
  1584. Received Import Request.
  1585. Time since last request: 0.000215 seconds.
  1586. path: Assets/Rec/Export3/管道开关G110.obj
  1587. artifactKey: Guid(b972840869dc92248beba164b6d552c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1588. Start importing Assets/Rec/Export3/管道开关G110.obj using Guid(b972840869dc92248beba164b6d552c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '44b57c6c929991ee9300238066be9cdd') in 0.032679 seconds
  1589. Import took 0.038076 seconds .
  1590. ========================================================================
  1591. Received Prepare
  1592. Registering precompiled user dll's ...
  1593. Registered in 0.007205 seconds.
  1594. Begin MonoManager ReloadAssembly
  1595. Native extension for WindowsStandalone target not found
  1596. Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins.
  1597. Preloading 0 native plugins for Editor in 0.00 ms.
  1598. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  1599. This could be due to missing scripts or compile error.
  1600. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  1601. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  1602. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  1603. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  1604. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  1605. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  1606. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  1607. Mono: successfully reloaded assembly
  1608. - Completed reload, in 1.312 seconds
  1609. Domain Reload Profiling:
  1610. ReloadAssembly (1312ms)
  1611. BeginReloadAssembly (129ms)
  1612. ExecutionOrderSort (0ms)
  1613. DisableScriptedObjects (7ms)
  1614. BackupInstance (0ms)
  1615. ReleaseScriptingObjects (0ms)
  1616. CreateAndSetChildDomain (41ms)
  1617. EndReloadAssembly (1127ms)
  1618. LoadAssemblies (125ms)
  1619. RebuildTransferFunctionScriptingTraits (0ms)
  1620. SetupTypeCache (368ms)
  1621. ReleaseScriptCaches (2ms)
  1622. RebuildScriptCaches (65ms)
  1623. SetupLoadedEditorAssemblies (400ms)
  1624. LogAssemblyErrors (0ms)
  1625. InitializePlatformSupportModulesInManaged (4ms)
  1626. SetLoadedEditorAssemblies (1ms)
  1627. RefreshPlugins (1ms)
  1628. BeforeProcessingInitializeOnLoad (108ms)
  1629. ProcessInitializeOnLoadAttributes (269ms)
  1630. ProcessInitializeOnLoadMethodAttributes (13ms)
  1631. AfterProcessingInitializeOnLoad (4ms)
  1632. EditorAssembliesLoaded (0ms)
  1633. ExecutionOrderSort2 (0ms)
  1634. AwakeInstancesAfterBackupRestoration (31ms)
  1635. Platform modules already initialized, skipping
  1636. Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
  1637. Preloading 0 native plugins for Editor in 0.00 ms.
  1638. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  1639. System memory in use before: 248.3 MB.
  1640. System memory in use after: 248.5 MB.
  1641. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4287.
  1642. Total: 3.458500 ms (FindLiveObjects: 0.402100 ms CreateObjectMapping: 0.112700 ms MarkObjects: 2.909300 ms DeleteObjects: 0.033100 ms)
  1643. AssetImportParameters requested are different than current active one (requested -> active):
  1644. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1645. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1646. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1647. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1648. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1649. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1650. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1651. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1652. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1653. ========================================================================
  1654. Received Prepare
  1655. Registering precompiled user dll's ...
  1656. Registered in 0.008296 seconds.
  1657. Begin MonoManager ReloadAssembly
  1658. Native extension for WindowsStandalone target not found
  1659. Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins.
  1660. Preloading 0 native plugins for Editor in 0.00 ms.
  1661. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  1662. This could be due to missing scripts or compile error.
  1663. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  1664. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  1665. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  1666. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  1667. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  1668. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  1669. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  1670. Mono: successfully reloaded assembly
  1671. - Completed reload, in 1.421 seconds
  1672. Domain Reload Profiling:
  1673. ReloadAssembly (1421ms)
  1674. BeginReloadAssembly (151ms)
  1675. ExecutionOrderSort (0ms)
  1676. DisableScriptedObjects (10ms)
  1677. BackupInstance (0ms)
  1678. ReleaseScriptingObjects (0ms)
  1679. CreateAndSetChildDomain (41ms)
  1680. EndReloadAssembly (1209ms)
  1681. LoadAssemblies (141ms)
  1682. RebuildTransferFunctionScriptingTraits (0ms)
  1683. SetupTypeCache (390ms)
  1684. ReleaseScriptCaches (2ms)
  1685. RebuildScriptCaches (73ms)
  1686. SetupLoadedEditorAssemblies (428ms)
  1687. LogAssemblyErrors (0ms)
  1688. InitializePlatformSupportModulesInManaged (5ms)
  1689. SetLoadedEditorAssemblies (1ms)
  1690. RefreshPlugins (1ms)
  1691. BeforeProcessingInitializeOnLoad (128ms)
  1692. ProcessInitializeOnLoadAttributes (275ms)
  1693. ProcessInitializeOnLoadMethodAttributes (14ms)
  1694. AfterProcessingInitializeOnLoad (4ms)
  1695. EditorAssembliesLoaded (0ms)
  1696. ExecutionOrderSort2 (0ms)
  1697. AwakeInstancesAfterBackupRestoration (32ms)
  1698. Platform modules already initialized, skipping
  1699. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  1700. Preloading 0 native plugins for Editor in 0.00 ms.
  1701. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  1702. System memory in use before: 248.3 MB.
  1703. System memory in use after: 248.5 MB.
  1704. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4289.
  1705. Total: 3.426800 ms (FindLiveObjects: 0.394400 ms CreateObjectMapping: 0.110300 ms MarkObjects: 2.888400 ms DeleteObjects: 0.032900 ms)
  1706. AssetImportParameters requested are different than current active one (requested -> active):
  1707. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1708. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1709. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1710. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1711. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1712. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1713. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1714. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1715. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1716. ========================================================================
  1717. Received Prepare
  1718. Registering precompiled user dll's ...
  1719. Registered in 0.008516 seconds.
  1720. Begin MonoManager ReloadAssembly
  1721. Native extension for WindowsStandalone target not found
  1722. Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
  1723. Preloading 0 native plugins for Editor in 0.00 ms.
  1724. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  1725. This could be due to missing scripts or compile error.
  1726. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  1727. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  1728. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  1729. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  1730. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  1731. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  1732. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  1733. Mono: successfully reloaded assembly
  1734. - Completed reload, in 1.291 seconds
  1735. Domain Reload Profiling:
  1736. ReloadAssembly (1291ms)
  1737. BeginReloadAssembly (128ms)
  1738. ExecutionOrderSort (0ms)
  1739. DisableScriptedObjects (6ms)
  1740. BackupInstance (0ms)
  1741. ReleaseScriptingObjects (0ms)
  1742. CreateAndSetChildDomain (34ms)
  1743. EndReloadAssembly (1098ms)
  1744. LoadAssemblies (134ms)
  1745. RebuildTransferFunctionScriptingTraits (0ms)
  1746. SetupTypeCache (378ms)
  1747. ReleaseScriptCaches (1ms)
  1748. RebuildScriptCaches (60ms)
  1749. SetupLoadedEditorAssemblies (377ms)
  1750. LogAssemblyErrors (0ms)
  1751. InitializePlatformSupportModulesInManaged (39ms)
  1752. SetLoadedEditorAssemblies (1ms)
  1753. RefreshPlugins (1ms)
  1754. BeforeProcessingInitializeOnLoad (99ms)
  1755. ProcessInitializeOnLoadAttributes (223ms)
  1756. ProcessInitializeOnLoadMethodAttributes (11ms)
  1757. AfterProcessingInitializeOnLoad (3ms)
  1758. EditorAssembliesLoaded (0ms)
  1759. ExecutionOrderSort2 (0ms)
  1760. AwakeInstancesAfterBackupRestoration (26ms)
  1761. Platform modules already initialized, skipping
  1762. Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
  1763. Preloading 0 native plugins for Editor in 0.00 ms.
  1764. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  1765. System memory in use before: 248.3 MB.
  1766. System memory in use after: 248.5 MB.
  1767. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4291.
  1768. Total: 3.639500 ms (FindLiveObjects: 0.429600 ms CreateObjectMapping: 0.131400 ms MarkObjects: 3.038200 ms DeleteObjects: 0.039100 ms)
  1769. AssetImportParameters requested are different than current active one (requested -> active):
  1770. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1771. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1772. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1773. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1774. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1775. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1776. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1777. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1778. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1779. ========================================================================
  1780. Received Prepare
  1781. Registering precompiled user dll's ...
  1782. Registered in 0.008371 seconds.
  1783. Begin MonoManager ReloadAssembly
  1784. Native extension for WindowsStandalone target not found
  1785. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  1786. Preloading 0 native plugins for Editor in 0.00 ms.
  1787. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  1788. This could be due to missing scripts or compile error.
  1789. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  1790. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  1791. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  1792. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  1793. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  1794. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  1795. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  1796. Mono: successfully reloaded assembly
  1797. - Completed reload, in 1.180 seconds
  1798. Domain Reload Profiling:
  1799. ReloadAssembly (1181ms)
  1800. BeginReloadAssembly (123ms)
  1801. ExecutionOrderSort (0ms)
  1802. DisableScriptedObjects (5ms)
  1803. BackupInstance (0ms)
  1804. ReleaseScriptingObjects (0ms)
  1805. CreateAndSetChildDomain (33ms)
  1806. EndReloadAssembly (1001ms)
  1807. LoadAssemblies (119ms)
  1808. RebuildTransferFunctionScriptingTraits (0ms)
  1809. SetupTypeCache (336ms)
  1810. ReleaseScriptCaches (1ms)
  1811. RebuildScriptCaches (54ms)
  1812. SetupLoadedEditorAssemblies (364ms)
  1813. LogAssemblyErrors (0ms)
  1814. InitializePlatformSupportModulesInManaged (4ms)
  1815. SetLoadedEditorAssemblies (1ms)
  1816. RefreshPlugins (1ms)
  1817. BeforeProcessingInitializeOnLoad (118ms)
  1818. ProcessInitializeOnLoadAttributes (227ms)
  1819. ProcessInitializeOnLoadMethodAttributes (11ms)
  1820. AfterProcessingInitializeOnLoad (3ms)
  1821. EditorAssembliesLoaded (0ms)
  1822. ExecutionOrderSort2 (0ms)
  1823. AwakeInstancesAfterBackupRestoration (25ms)
  1824. Platform modules already initialized, skipping
  1825. Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
  1826. Preloading 0 native plugins for Editor in 0.00 ms.
  1827. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  1828. System memory in use before: 248.3 MB.
  1829. System memory in use after: 248.5 MB.
  1830. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4293.
  1831. Total: 4.112900 ms (FindLiveObjects: 0.613500 ms CreateObjectMapping: 0.145800 ms MarkObjects: 3.312900 ms DeleteObjects: 0.039500 ms)
  1832. AssetImportParameters requested are different than current active one (requested -> active):
  1833. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1834. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1835. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1836. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1837. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1838. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1839. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1840. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1841. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1842. ========================================================================
  1843. Received Prepare
  1844. Registering precompiled user dll's ...
  1845. Registered in 0.007628 seconds.
  1846. Begin MonoManager ReloadAssembly
  1847. Native extension for WindowsStandalone target not found
  1848. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  1849. Preloading 0 native plugins for Editor in 0.00 ms.
  1850. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  1851. This could be due to missing scripts or compile error.
  1852. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  1853. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  1854. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  1855. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  1856. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  1857. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  1858. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  1859. Mono: successfully reloaded assembly
  1860. - Completed reload, in 1.172 seconds
  1861. Domain Reload Profiling:
  1862. ReloadAssembly (1173ms)
  1863. BeginReloadAssembly (111ms)
  1864. ExecutionOrderSort (0ms)
  1865. DisableScriptedObjects (5ms)
  1866. BackupInstance (0ms)
  1867. ReleaseScriptingObjects (0ms)
  1868. CreateAndSetChildDomain (32ms)
  1869. EndReloadAssembly (1006ms)
  1870. LoadAssemblies (111ms)
  1871. RebuildTransferFunctionScriptingTraits (0ms)
  1872. SetupTypeCache (328ms)
  1873. ReleaseScriptCaches (1ms)
  1874. RebuildScriptCaches (54ms)
  1875. SetupLoadedEditorAssemblies (370ms)
  1876. LogAssemblyErrors (0ms)
  1877. InitializePlatformSupportModulesInManaged (4ms)
  1878. SetLoadedEditorAssemblies (1ms)
  1879. RefreshPlugins (1ms)
  1880. BeforeProcessingInitializeOnLoad (109ms)
  1881. ProcessInitializeOnLoadAttributes (241ms)
  1882. ProcessInitializeOnLoadMethodAttributes (11ms)
  1883. AfterProcessingInitializeOnLoad (3ms)
  1884. EditorAssembliesLoaded (0ms)
  1885. ExecutionOrderSort2 (0ms)
  1886. AwakeInstancesAfterBackupRestoration (25ms)
  1887. Platform modules already initialized, skipping
  1888. Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins.
  1889. Preloading 0 native plugins for Editor in 0.00 ms.
  1890. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  1891. System memory in use before: 248.3 MB.
  1892. System memory in use after: 248.6 MB.
  1893. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4295.
  1894. Total: 3.439000 ms (FindLiveObjects: 0.401100 ms CreateObjectMapping: 0.109200 ms MarkObjects: 2.885900 ms DeleteObjects: 0.041500 ms)
  1895. AssetImportParameters requested are different than current active one (requested -> active):
  1896. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1897. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1898. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1899. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1900. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1901. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1902. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1903. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1904. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1905. ========================================================================
  1906. Received Prepare
  1907. Refreshing native plugins compatible for Editor in 6.53 ms, found 3 plugins.
  1908. Preloading 0 native plugins for Editor in 0.00 ms.
  1909. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  1910. System memory in use before: 178.6 MB.
  1911. System memory in use after: 178.9 MB.
  1912. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4295.
  1913. Total: 3.624900 ms (FindLiveObjects: 0.421900 ms CreateObjectMapping: 0.110900 ms MarkObjects: 3.066600 ms DeleteObjects: 0.024300 ms)
  1914. AssetImportParameters requested are different than current active one (requested -> active):
  1915. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1916. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1917. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1918. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1919. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1920. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1921. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1922. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1923. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1924. ========================================================================
  1925. Received Prepare
  1926. Registering precompiled user dll's ...
  1927. Registered in 0.007264 seconds.
  1928. Begin MonoManager ReloadAssembly
  1929. Native extension for WindowsStandalone target not found
  1930. Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins.
  1931. Preloading 0 native plugins for Editor in 0.00 ms.
  1932. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  1933. This could be due to missing scripts or compile error.
  1934. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  1935. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  1936. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  1937. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  1938. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  1939. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  1940. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  1941. Mono: successfully reloaded assembly
  1942. - Completed reload, in 1.276 seconds
  1943. Domain Reload Profiling:
  1944. ReloadAssembly (1276ms)
  1945. BeginReloadAssembly (140ms)
  1946. ExecutionOrderSort (0ms)
  1947. DisableScriptedObjects (6ms)
  1948. BackupInstance (0ms)
  1949. ReleaseScriptingObjects (0ms)
  1950. CreateAndSetChildDomain (40ms)
  1951. EndReloadAssembly (1076ms)
  1952. LoadAssemblies (131ms)
  1953. RebuildTransferFunctionScriptingTraits (0ms)
  1954. SetupTypeCache (364ms)
  1955. ReleaseScriptCaches (2ms)
  1956. RebuildScriptCaches (61ms)
  1957. SetupLoadedEditorAssemblies (367ms)
  1958. LogAssemblyErrors (0ms)
  1959. InitializePlatformSupportModulesInManaged (4ms)
  1960. SetLoadedEditorAssemblies (1ms)
  1961. RefreshPlugins (1ms)
  1962. BeforeProcessingInitializeOnLoad (105ms)
  1963. ProcessInitializeOnLoadAttributes (241ms)
  1964. ProcessInitializeOnLoadMethodAttributes (12ms)
  1965. AfterProcessingInitializeOnLoad (3ms)
  1966. EditorAssembliesLoaded (0ms)
  1967. ExecutionOrderSort2 (0ms)
  1968. AwakeInstancesAfterBackupRestoration (29ms)
  1969. Platform modules already initialized, skipping
  1970. Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins.
  1971. Preloading 0 native plugins for Editor in 0.00 ms.
  1972. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  1973. System memory in use before: 248.3 MB.
  1974. System memory in use after: 248.6 MB.
  1975. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4297.
  1976. Total: 4.415600 ms (FindLiveObjects: 0.506700 ms CreateObjectMapping: 0.127800 ms MarkObjects: 3.734100 ms DeleteObjects: 0.045400 ms)
  1977. AssetImportParameters requested are different than current active one (requested -> active):
  1978. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1979. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1980. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1981. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1982. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1983. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1984. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1985. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1986. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1987. ========================================================================
  1988. Received Prepare
  1989. Refreshing native plugins compatible for Editor in 7.09 ms, found 3 plugins.
  1990. Preloading 0 native plugins for Editor in 0.00 ms.
  1991. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  1992. System memory in use before: 178.6 MB.
  1993. System memory in use after: 178.9 MB.
  1994. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4297.
  1995. Total: 3.617900 ms (FindLiveObjects: 0.473200 ms CreateObjectMapping: 0.108900 ms MarkObjects: 3.011800 ms DeleteObjects: 0.022900 ms)
  1996. AssetImportParameters requested are different than current active one (requested -> active):
  1997. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1998. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1999. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2000. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2001. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2002. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2003. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2004. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2005. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2006. ========================================================================
  2007. Received Prepare
  2008. Registering precompiled user dll's ...
  2009. Registered in 0.007544 seconds.
  2010. Begin MonoManager ReloadAssembly
  2011. Native extension for WindowsStandalone target not found
  2012. Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins.
  2013. Preloading 0 native plugins for Editor in 0.00 ms.
  2014. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  2015. This could be due to missing scripts or compile error.
  2016. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2017. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2018. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  2019. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  2020. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  2021. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  2022. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  2023. Mono: successfully reloaded assembly
  2024. - Completed reload, in 1.157 seconds
  2025. Domain Reload Profiling:
  2026. ReloadAssembly (1157ms)
  2027. BeginReloadAssembly (128ms)
  2028. ExecutionOrderSort (0ms)
  2029. DisableScriptedObjects (5ms)
  2030. BackupInstance (0ms)
  2031. ReleaseScriptingObjects (0ms)
  2032. CreateAndSetChildDomain (33ms)
  2033. EndReloadAssembly (973ms)
  2034. LoadAssemblies (121ms)
  2035. RebuildTransferFunctionScriptingTraits (0ms)
  2036. SetupTypeCache (326ms)
  2037. ReleaseScriptCaches (1ms)
  2038. RebuildScriptCaches (52ms)
  2039. SetupLoadedEditorAssemblies (344ms)
  2040. LogAssemblyErrors (0ms)
  2041. InitializePlatformSupportModulesInManaged (4ms)
  2042. SetLoadedEditorAssemblies (1ms)
  2043. RefreshPlugins (1ms)
  2044. BeforeProcessingInitializeOnLoad (99ms)
  2045. ProcessInitializeOnLoadAttributes (225ms)
  2046. ProcessInitializeOnLoadMethodAttributes (11ms)
  2047. AfterProcessingInitializeOnLoad (3ms)
  2048. EditorAssembliesLoaded (0ms)
  2049. ExecutionOrderSort2 (0ms)
  2050. AwakeInstancesAfterBackupRestoration (24ms)
  2051. Platform modules already initialized, skipping
  2052. Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
  2053. Preloading 0 native plugins for Editor in 0.00 ms.
  2054. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  2055. System memory in use before: 248.3 MB.
  2056. System memory in use after: 248.6 MB.
  2057. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4299.
  2058. Total: 3.387300 ms (FindLiveObjects: 0.413600 ms CreateObjectMapping: 0.110000 ms MarkObjects: 2.831100 ms DeleteObjects: 0.031400 ms)
  2059. AssetImportParameters requested are different than current active one (requested -> active):
  2060. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2061. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2062. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2063. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2064. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2065. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2066. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2067. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2068. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2069. ========================================================================
  2070. Received Prepare
  2071. Registering precompiled user dll's ...
  2072. Registered in 0.007159 seconds.
  2073. Begin MonoManager ReloadAssembly
  2074. Native extension for WindowsStandalone target not found
  2075. Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins.
  2076. Preloading 0 native plugins for Editor in 0.00 ms.
  2077. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  2078. This could be due to missing scripts or compile error.
  2079. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2080. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2081. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  2082. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  2083. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  2084. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  2085. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  2086. Mono: successfully reloaded assembly
  2087. - Completed reload, in 1.230 seconds
  2088. Domain Reload Profiling:
  2089. ReloadAssembly (1230ms)
  2090. BeginReloadAssembly (130ms)
  2091. ExecutionOrderSort (0ms)
  2092. DisableScriptedObjects (7ms)
  2093. BackupInstance (0ms)
  2094. ReleaseScriptingObjects (0ms)
  2095. CreateAndSetChildDomain (35ms)
  2096. EndReloadAssembly (1041ms)
  2097. LoadAssemblies (125ms)
  2098. RebuildTransferFunctionScriptingTraits (0ms)
  2099. SetupTypeCache (347ms)
  2100. ReleaseScriptCaches (1ms)
  2101. RebuildScriptCaches (59ms)
  2102. SetupLoadedEditorAssemblies (366ms)
  2103. LogAssemblyErrors (0ms)
  2104. InitializePlatformSupportModulesInManaged (5ms)
  2105. SetLoadedEditorAssemblies (1ms)
  2106. RefreshPlugins (1ms)
  2107. BeforeProcessingInitializeOnLoad (108ms)
  2108. ProcessInitializeOnLoadAttributes (236ms)
  2109. ProcessInitializeOnLoadMethodAttributes (12ms)
  2110. AfterProcessingInitializeOnLoad (3ms)
  2111. EditorAssembliesLoaded (0ms)
  2112. ExecutionOrderSort2 (0ms)
  2113. AwakeInstancesAfterBackupRestoration (28ms)
  2114. Platform modules already initialized, skipping
  2115. Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins.
  2116. Preloading 0 native plugins for Editor in 0.00 ms.
  2117. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  2118. System memory in use before: 248.3 MB.
  2119. System memory in use after: 248.6 MB.
  2120. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4301.
  2121. Total: 3.787600 ms (FindLiveObjects: 0.461000 ms CreateObjectMapping: 0.115900 ms MarkObjects: 3.173200 ms DeleteObjects: 0.036300 ms)
  2122. AssetImportParameters requested are different than current active one (requested -> active):
  2123. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2124. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2125. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2126. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2127. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2128. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2129. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2130. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2131. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2132. ========================================================================
  2133. Received Prepare
  2134. Registering precompiled user dll's ...
  2135. Registered in 0.008411 seconds.
  2136. Begin MonoManager ReloadAssembly
  2137. Native extension for WindowsStandalone target not found
  2138. Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins.
  2139. Preloading 0 native plugins for Editor in 0.00 ms.
  2140. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  2141. This could be due to missing scripts or compile error.
  2142. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2143. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2144. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  2145. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  2146. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  2147. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  2148. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  2149. Mono: successfully reloaded assembly
  2150. - Completed reload, in 1.182 seconds
  2151. Domain Reload Profiling:
  2152. ReloadAssembly (1182ms)
  2153. BeginReloadAssembly (147ms)
  2154. ExecutionOrderSort (0ms)
  2155. DisableScriptedObjects (5ms)
  2156. BackupInstance (0ms)
  2157. ReleaseScriptingObjects (0ms)
  2158. CreateAndSetChildDomain (56ms)
  2159. EndReloadAssembly (978ms)
  2160. LoadAssemblies (117ms)
  2161. RebuildTransferFunctionScriptingTraits (0ms)
  2162. SetupTypeCache (322ms)
  2163. ReleaseScriptCaches (1ms)
  2164. RebuildScriptCaches (53ms)
  2165. SetupLoadedEditorAssemblies (350ms)
  2166. LogAssemblyErrors (0ms)
  2167. InitializePlatformSupportModulesInManaged (4ms)
  2168. SetLoadedEditorAssemblies (1ms)
  2169. RefreshPlugins (1ms)
  2170. BeforeProcessingInitializeOnLoad (96ms)
  2171. ProcessInitializeOnLoadAttributes (232ms)
  2172. ProcessInitializeOnLoadMethodAttributes (12ms)
  2173. AfterProcessingInitializeOnLoad (4ms)
  2174. EditorAssembliesLoaded (0ms)
  2175. ExecutionOrderSort2 (0ms)
  2176. AwakeInstancesAfterBackupRestoration (28ms)
  2177. Platform modules already initialized, skipping
  2178. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  2179. Preloading 0 native plugins for Editor in 0.00 ms.
  2180. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  2181. System memory in use before: 248.3 MB.
  2182. System memory in use after: 248.6 MB.
  2183. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4303.
  2184. Total: 3.398800 ms (FindLiveObjects: 0.408200 ms CreateObjectMapping: 0.112900 ms MarkObjects: 2.844800 ms DeleteObjects: 0.031900 ms)
  2185. AssetImportParameters requested are different than current active one (requested -> active):
  2186. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2187. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2188. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2189. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2190. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2191. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2192. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2193. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2194. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2195. ========================================================================
  2196. Received Prepare
  2197. Registering precompiled user dll's ...
  2198. Registered in 0.007759 seconds.
  2199. Begin MonoManager ReloadAssembly
  2200. Native extension for WindowsStandalone target not found
  2201. Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
  2202. Preloading 0 native plugins for Editor in 0.00 ms.
  2203. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  2204. This could be due to missing scripts or compile error.
  2205. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2206. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2207. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  2208. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  2209. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  2210. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  2211. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  2212. Mono: successfully reloaded assembly
  2213. - Completed reload, in 1.166 seconds
  2214. Domain Reload Profiling:
  2215. ReloadAssembly (1166ms)
  2216. BeginReloadAssembly (119ms)
  2217. ExecutionOrderSort (0ms)
  2218. DisableScriptedObjects (5ms)
  2219. BackupInstance (0ms)
  2220. ReleaseScriptingObjects (0ms)
  2221. CreateAndSetChildDomain (33ms)
  2222. EndReloadAssembly (990ms)
  2223. LoadAssemblies (118ms)
  2224. RebuildTransferFunctionScriptingTraits (0ms)
  2225. SetupTypeCache (318ms)
  2226. ReleaseScriptCaches (1ms)
  2227. RebuildScriptCaches (56ms)
  2228. SetupLoadedEditorAssemblies (349ms)
  2229. LogAssemblyErrors (0ms)
  2230. InitializePlatformSupportModulesInManaged (4ms)
  2231. SetLoadedEditorAssemblies (1ms)
  2232. RefreshPlugins (1ms)
  2233. BeforeProcessingInitializeOnLoad (95ms)
  2234. ProcessInitializeOnLoadAttributes (232ms)
  2235. ProcessInitializeOnLoadMethodAttributes (13ms)
  2236. AfterProcessingInitializeOnLoad (3ms)
  2237. EditorAssembliesLoaded (0ms)
  2238. ExecutionOrderSort2 (0ms)
  2239. AwakeInstancesAfterBackupRestoration (30ms)
  2240. Platform modules already initialized, skipping
  2241. Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins.
  2242. Preloading 0 native plugins for Editor in 0.00 ms.
  2243. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  2244. System memory in use before: 248.3 MB.
  2245. System memory in use after: 248.6 MB.
  2246. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4305.
  2247. Total: 3.760100 ms (FindLiveObjects: 0.434600 ms CreateObjectMapping: 0.130900 ms MarkObjects: 3.155600 ms DeleteObjects: 0.037700 ms)
  2248. AssetImportParameters requested are different than current active one (requested -> active):
  2249. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2250. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2251. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2252. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2253. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2254. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2255. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2256. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2257. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2258. ========================================================================
  2259. Received Prepare
  2260. Registering precompiled user dll's ...
  2261. Registered in 0.007576 seconds.
  2262. Begin MonoManager ReloadAssembly
  2263. Native extension for WindowsStandalone target not found
  2264. Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins.
  2265. Preloading 0 native plugins for Editor in 0.00 ms.
  2266. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  2267. This could be due to missing scripts or compile error.
  2268. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2269. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2270. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  2271. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  2272. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  2273. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  2274. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  2275. Mono: successfully reloaded assembly
  2276. - Completed reload, in 1.190 seconds
  2277. Domain Reload Profiling:
  2278. ReloadAssembly (1191ms)
  2279. BeginReloadAssembly (119ms)
  2280. ExecutionOrderSort (0ms)
  2281. DisableScriptedObjects (6ms)
  2282. BackupInstance (0ms)
  2283. ReleaseScriptingObjects (0ms)
  2284. CreateAndSetChildDomain (33ms)
  2285. EndReloadAssembly (1015ms)
  2286. LoadAssemblies (123ms)
  2287. RebuildTransferFunctionScriptingTraits (0ms)
  2288. SetupTypeCache (341ms)
  2289. ReleaseScriptCaches (1ms)
  2290. RebuildScriptCaches (58ms)
  2291. SetupLoadedEditorAssemblies (345ms)
  2292. LogAssemblyErrors (0ms)
  2293. InitializePlatformSupportModulesInManaged (4ms)
  2294. SetLoadedEditorAssemblies (1ms)
  2295. RefreshPlugins (1ms)
  2296. BeforeProcessingInitializeOnLoad (97ms)
  2297. ProcessInitializeOnLoadAttributes (226ms)
  2298. ProcessInitializeOnLoadMethodAttributes (12ms)
  2299. AfterProcessingInitializeOnLoad (3ms)
  2300. EditorAssembliesLoaded (0ms)
  2301. ExecutionOrderSort2 (0ms)
  2302. AwakeInstancesAfterBackupRestoration (31ms)
  2303. Platform modules already initialized, skipping
  2304. Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins.
  2305. Preloading 0 native plugins for Editor in 0.00 ms.
  2306. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  2307. System memory in use before: 248.3 MB.
  2308. System memory in use after: 248.6 MB.
  2309. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4307.
  2310. Total: 3.864900 ms (FindLiveObjects: 0.497900 ms CreateObjectMapping: 0.131200 ms MarkObjects: 3.194800 ms DeleteObjects: 0.039400 ms)
  2311. AssetImportParameters requested are different than current active one (requested -> active):
  2312. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2313. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2314. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2315. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2316. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2317. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2318. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2319. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2320. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2321. ========================================================================
  2322. Received Prepare
  2323. Registering precompiled user dll's ...
  2324. Registered in 0.007694 seconds.
  2325. Begin MonoManager ReloadAssembly
  2326. Native extension for WindowsStandalone target not found
  2327. Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins.
  2328. Preloading 0 native plugins for Editor in 0.00 ms.
  2329. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  2330. This could be due to missing scripts or compile error.
  2331. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2332. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2333. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  2334. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  2335. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  2336. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  2337. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  2338. Mono: successfully reloaded assembly
  2339. - Completed reload, in 1.270 seconds
  2340. Domain Reload Profiling:
  2341. ReloadAssembly (1270ms)
  2342. BeginReloadAssembly (130ms)
  2343. ExecutionOrderSort (0ms)
  2344. DisableScriptedObjects (6ms)
  2345. BackupInstance (0ms)
  2346. ReleaseScriptingObjects (0ms)
  2347. CreateAndSetChildDomain (36ms)
  2348. EndReloadAssembly (1080ms)
  2349. LoadAssemblies (126ms)
  2350. RebuildTransferFunctionScriptingTraits (0ms)
  2351. SetupTypeCache (376ms)
  2352. ReleaseScriptCaches (1ms)
  2353. RebuildScriptCaches (59ms)
  2354. SetupLoadedEditorAssemblies (375ms)
  2355. LogAssemblyErrors (0ms)
  2356. InitializePlatformSupportModulesInManaged (4ms)
  2357. SetLoadedEditorAssemblies (1ms)
  2358. RefreshPlugins (1ms)
  2359. BeforeProcessingInitializeOnLoad (109ms)
  2360. ProcessInitializeOnLoadAttributes (245ms)
  2361. ProcessInitializeOnLoadMethodAttributes (13ms)
  2362. AfterProcessingInitializeOnLoad (3ms)
  2363. EditorAssembliesLoaded (0ms)
  2364. ExecutionOrderSort2 (0ms)
  2365. AwakeInstancesAfterBackupRestoration (28ms)
  2366. Platform modules already initialized, skipping
  2367. Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins.
  2368. Preloading 0 native plugins for Editor in 0.00 ms.
  2369. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  2370. System memory in use before: 248.3 MB.
  2371. System memory in use after: 248.6 MB.
  2372. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4309.
  2373. Total: 3.935400 ms (FindLiveObjects: 0.437100 ms CreateObjectMapping: 0.127400 ms MarkObjects: 3.328000 ms DeleteObjects: 0.041700 ms)
  2374. AssetImportParameters requested are different than current active one (requested -> active):
  2375. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2376. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2377. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2378. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2379. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2380. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2381. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2382. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2383. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2384. ========================================================================
  2385. Received Prepare
  2386. Registering precompiled user dll's ...
  2387. Registered in 0.007042 seconds.
  2388. Begin MonoManager ReloadAssembly
  2389. Native extension for WindowsStandalone target not found
  2390. Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins.
  2391. Preloading 0 native plugins for Editor in 0.00 ms.
  2392. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  2393. This could be due to missing scripts or compile error.
  2394. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2395. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2396. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  2397. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  2398. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  2399. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  2400. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  2401. Mono: successfully reloaded assembly
  2402. - Completed reload, in 1.155 seconds
  2403. Domain Reload Profiling:
  2404. ReloadAssembly (1155ms)
  2405. BeginReloadAssembly (134ms)
  2406. ExecutionOrderSort (0ms)
  2407. DisableScriptedObjects (8ms)
  2408. BackupInstance (0ms)
  2409. ReleaseScriptingObjects (0ms)
  2410. CreateAndSetChildDomain (37ms)
  2411. EndReloadAssembly (968ms)
  2412. LoadAssemblies (118ms)
  2413. RebuildTransferFunctionScriptingTraits (0ms)
  2414. SetupTypeCache (329ms)
  2415. ReleaseScriptCaches (1ms)
  2416. RebuildScriptCaches (58ms)
  2417. SetupLoadedEditorAssemblies (333ms)
  2418. LogAssemblyErrors (0ms)
  2419. InitializePlatformSupportModulesInManaged (4ms)
  2420. SetLoadedEditorAssemblies (1ms)
  2421. RefreshPlugins (1ms)
  2422. BeforeProcessingInitializeOnLoad (100ms)
  2423. ProcessInitializeOnLoadAttributes (213ms)
  2424. ProcessInitializeOnLoadMethodAttributes (11ms)
  2425. AfterProcessingInitializeOnLoad (3ms)
  2426. EditorAssembliesLoaded (0ms)
  2427. ExecutionOrderSort2 (0ms)
  2428. AwakeInstancesAfterBackupRestoration (26ms)
  2429. Platform modules already initialized, skipping
  2430. Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins.
  2431. Preloading 0 native plugins for Editor in 0.00 ms.
  2432. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  2433. System memory in use before: 248.4 MB.
  2434. System memory in use after: 248.6 MB.
  2435. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4311.
  2436. Total: 3.487100 ms (FindLiveObjects: 0.393500 ms CreateObjectMapping: 0.106900 ms MarkObjects: 2.950900 ms DeleteObjects: 0.034800 ms)
  2437. AssetImportParameters requested are different than current active one (requested -> active):
  2438. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2439. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2440. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2441. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2442. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2443. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2444. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2445. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2446. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2447. ========================================================================
  2448. Received Prepare
  2449. Registering precompiled user dll's ...
  2450. Registered in 0.007989 seconds.
  2451. Begin MonoManager ReloadAssembly
  2452. Native extension for WindowsStandalone target not found
  2453. Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
  2454. Preloading 0 native plugins for Editor in 0.00 ms.
  2455. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  2456. This could be due to missing scripts or compile error.
  2457. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2458. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2459. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  2460. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  2461. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  2462. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  2463. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  2464. Mono: successfully reloaded assembly
  2465. - Completed reload, in 1.207 seconds
  2466. Domain Reload Profiling:
  2467. ReloadAssembly (1208ms)
  2468. BeginReloadAssembly (140ms)
  2469. ExecutionOrderSort (0ms)
  2470. DisableScriptedObjects (7ms)
  2471. BackupInstance (0ms)
  2472. ReleaseScriptingObjects (0ms)
  2473. CreateAndSetChildDomain (40ms)
  2474. EndReloadAssembly (1007ms)
  2475. LoadAssemblies (128ms)
  2476. RebuildTransferFunctionScriptingTraits (0ms)
  2477. SetupTypeCache (331ms)
  2478. ReleaseScriptCaches (1ms)
  2479. RebuildScriptCaches (61ms)
  2480. SetupLoadedEditorAssemblies (349ms)
  2481. LogAssemblyErrors (0ms)
  2482. InitializePlatformSupportModulesInManaged (4ms)
  2483. SetLoadedEditorAssemblies (1ms)
  2484. RefreshPlugins (1ms)
  2485. BeforeProcessingInitializeOnLoad (96ms)
  2486. ProcessInitializeOnLoadAttributes (231ms)
  2487. ProcessInitializeOnLoadMethodAttributes (13ms)
  2488. AfterProcessingInitializeOnLoad (3ms)
  2489. EditorAssembliesLoaded (0ms)
  2490. ExecutionOrderSort2 (0ms)
  2491. AwakeInstancesAfterBackupRestoration (30ms)
  2492. Platform modules already initialized, skipping
  2493. Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins.
  2494. Preloading 0 native plugins for Editor in 0.00 ms.
  2495. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  2496. System memory in use before: 248.4 MB.
  2497. System memory in use after: 248.6 MB.
  2498. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4313.
  2499. Total: 4.438700 ms (FindLiveObjects: 0.456800 ms CreateObjectMapping: 0.126400 ms MarkObjects: 3.812200 ms DeleteObjects: 0.041400 ms)
  2500. AssetImportParameters requested are different than current active one (requested -> active):
  2501. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2502. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2503. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2504. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2505. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2506. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2507. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2508. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2509. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2510. ========================================================================
  2511. Received Prepare
  2512. Registering precompiled user dll's ...
  2513. Registered in 0.008823 seconds.
  2514. Begin MonoManager ReloadAssembly
  2515. Native extension for WindowsStandalone target not found
  2516. Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins.
  2517. Preloading 0 native plugins for Editor in 0.00 ms.
  2518. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  2519. This could be due to missing scripts or compile error.
  2520. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2521. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2522. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  2523. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  2524. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  2525. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  2526. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  2527. Mono: successfully reloaded assembly
  2528. - Completed reload, in 1.300 seconds
  2529. Domain Reload Profiling:
  2530. ReloadAssembly (1301ms)
  2531. BeginReloadAssembly (151ms)
  2532. ExecutionOrderSort (0ms)
  2533. DisableScriptedObjects (7ms)
  2534. BackupInstance (0ms)
  2535. ReleaseScriptingObjects (0ms)
  2536. CreateAndSetChildDomain (39ms)
  2537. EndReloadAssembly (1082ms)
  2538. LoadAssemblies (149ms)
  2539. RebuildTransferFunctionScriptingTraits (0ms)
  2540. SetupTypeCache (360ms)
  2541. ReleaseScriptCaches (1ms)
  2542. RebuildScriptCaches (55ms)
  2543. SetupLoadedEditorAssemblies (374ms)
  2544. LogAssemblyErrors (0ms)
  2545. InitializePlatformSupportModulesInManaged (4ms)
  2546. SetLoadedEditorAssemblies (1ms)
  2547. RefreshPlugins (1ms)
  2548. BeforeProcessingInitializeOnLoad (106ms)
  2549. ProcessInitializeOnLoadAttributes (246ms)
  2550. ProcessInitializeOnLoadMethodAttributes (12ms)
  2551. AfterProcessingInitializeOnLoad (3ms)
  2552. EditorAssembliesLoaded (0ms)
  2553. ExecutionOrderSort2 (0ms)
  2554. AwakeInstancesAfterBackupRestoration (29ms)
  2555. Platform modules already initialized, skipping
  2556. Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins.
  2557. Preloading 0 native plugins for Editor in 0.00 ms.
  2558. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  2559. System memory in use before: 248.4 MB.
  2560. System memory in use after: 248.6 MB.
  2561. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4315.
  2562. Total: 3.897000 ms (FindLiveObjects: 0.442800 ms CreateObjectMapping: 0.108500 ms MarkObjects: 3.307200 ms DeleteObjects: 0.037300 ms)
  2563. AssetImportParameters requested are different than current active one (requested -> active):
  2564. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2565. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2566. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2567. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2568. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2569. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2570. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2571. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2572. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2573. ========================================================================
  2574. Received Prepare
  2575. Registering precompiled user dll's ...
  2576. Registered in 0.007539 seconds.
  2577. Begin MonoManager ReloadAssembly
  2578. Native extension for WindowsStandalone target not found
  2579. Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins.
  2580. Preloading 0 native plugins for Editor in 0.00 ms.
  2581. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  2582. This could be due to missing scripts or compile error.
  2583. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2584. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2585. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  2586. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  2587. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  2588. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  2589. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  2590. Mono: successfully reloaded assembly
  2591. - Completed reload, in 1.201 seconds
  2592. Domain Reload Profiling:
  2593. ReloadAssembly (1202ms)
  2594. BeginReloadAssembly (140ms)
  2595. ExecutionOrderSort (0ms)
  2596. DisableScriptedObjects (7ms)
  2597. BackupInstance (0ms)
  2598. ReleaseScriptingObjects (0ms)
  2599. CreateAndSetChildDomain (40ms)
  2600. EndReloadAssembly (1003ms)
  2601. LoadAssemblies (129ms)
  2602. RebuildTransferFunctionScriptingTraits (0ms)
  2603. SetupTypeCache (316ms)
  2604. ReleaseScriptCaches (1ms)
  2605. RebuildScriptCaches (56ms)
  2606. SetupLoadedEditorAssemblies (376ms)
  2607. LogAssemblyErrors (0ms)
  2608. InitializePlatformSupportModulesInManaged (4ms)
  2609. SetLoadedEditorAssemblies (1ms)
  2610. RefreshPlugins (1ms)
  2611. BeforeProcessingInitializeOnLoad (106ms)
  2612. ProcessInitializeOnLoadAttributes (251ms)
  2613. ProcessInitializeOnLoadMethodAttributes (10ms)
  2614. AfterProcessingInitializeOnLoad (3ms)
  2615. EditorAssembliesLoaded (0ms)
  2616. ExecutionOrderSort2 (0ms)
  2617. AwakeInstancesAfterBackupRestoration (25ms)
  2618. Platform modules already initialized, skipping
  2619. Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
  2620. Preloading 0 native plugins for Editor in 0.00 ms.
  2621. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  2622. System memory in use before: 248.4 MB.
  2623. System memory in use after: 248.6 MB.
  2624. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4317.
  2625. Total: 3.349300 ms (FindLiveObjects: 0.383500 ms CreateObjectMapping: 0.113700 ms MarkObjects: 2.820100 ms DeleteObjects: 0.030600 ms)
  2626. AssetImportParameters requested are different than current active one (requested -> active):
  2627. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2628. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2629. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2630. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2631. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2632. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2633. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2634. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2635. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2636. ========================================================================
  2637. Received Prepare
  2638. Registering precompiled user dll's ...
  2639. Registered in 0.007900 seconds.
  2640. Begin MonoManager ReloadAssembly
  2641. Native extension for WindowsStandalone target not found
  2642. Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
  2643. Preloading 0 native plugins for Editor in 0.00 ms.
  2644. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  2645. This could be due to missing scripts or compile error.
  2646. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2647. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2648. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  2649. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  2650. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  2651. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  2652. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  2653. Mono: successfully reloaded assembly
  2654. - Completed reload, in 1.215 seconds
  2655. Domain Reload Profiling:
  2656. ReloadAssembly (1216ms)
  2657. BeginReloadAssembly (126ms)
  2658. ExecutionOrderSort (0ms)
  2659. DisableScriptedObjects (6ms)
  2660. BackupInstance (0ms)
  2661. ReleaseScriptingObjects (0ms)
  2662. CreateAndSetChildDomain (34ms)
  2663. EndReloadAssembly (991ms)
  2664. LoadAssemblies (130ms)
  2665. RebuildTransferFunctionScriptingTraits (0ms)
  2666. SetupTypeCache (331ms)
  2667. ReleaseScriptCaches (1ms)
  2668. RebuildScriptCaches (55ms)
  2669. SetupLoadedEditorAssemblies (336ms)
  2670. LogAssemblyErrors (0ms)
  2671. InitializePlatformSupportModulesInManaged (4ms)
  2672. SetLoadedEditorAssemblies (1ms)
  2673. RefreshPlugins (1ms)
  2674. BeforeProcessingInitializeOnLoad (96ms)
  2675. ProcessInitializeOnLoadAttributes (220ms)
  2676. ProcessInitializeOnLoadMethodAttributes (11ms)
  2677. AfterProcessingInitializeOnLoad (3ms)
  2678. EditorAssembliesLoaded (0ms)
  2679. ExecutionOrderSort2 (0ms)
  2680. AwakeInstancesAfterBackupRestoration (25ms)
  2681. Platform modules already initialized, skipping
  2682. Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins.
  2683. Preloading 0 native plugins for Editor in 0.00 ms.
  2684. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  2685. System memory in use before: 248.4 MB.
  2686. System memory in use after: 248.6 MB.
  2687. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4319.
  2688. Total: 3.840400 ms (FindLiveObjects: 0.423900 ms CreateObjectMapping: 0.122200 ms MarkObjects: 3.258400 ms DeleteObjects: 0.034900 ms)
  2689. AssetImportParameters requested are different than current active one (requested -> active):
  2690. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2691. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2692. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2693. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2694. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2695. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2696. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2697. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2698. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2699. ========================================================================
  2700. Received Prepare
  2701. Refreshing native plugins compatible for Editor in 7.10 ms, found 3 plugins.
  2702. Preloading 0 native plugins for Editor in 0.00 ms.
  2703. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  2704. System memory in use before: 178.7 MB.
  2705. System memory in use after: 179.0 MB.
  2706. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4319.
  2707. Total: 3.847900 ms (FindLiveObjects: 0.459000 ms CreateObjectMapping: 0.123100 ms MarkObjects: 3.242900 ms DeleteObjects: 0.022200 ms)
  2708. AssetImportParameters requested are different than current active one (requested -> active):
  2709. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2710. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2711. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2712. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2713. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2714. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2715. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2716. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2717. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2718. ========================================================================
  2719. Received Prepare
  2720. Registering precompiled user dll's ...
  2721. Registered in 0.006647 seconds.
  2722. Begin MonoManager ReloadAssembly
  2723. Native extension for WindowsStandalone target not found
  2724. Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins.
  2725. Preloading 0 native plugins for Editor in 0.00 ms.
  2726. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  2727. This could be due to missing scripts or compile error.
  2728. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2729. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2730. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  2731. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  2732. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  2733. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  2734. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  2735. Mono: successfully reloaded assembly
  2736. - Completed reload, in 1.172 seconds
  2737. Domain Reload Profiling:
  2738. ReloadAssembly (1172ms)
  2739. BeginReloadAssembly (123ms)
  2740. ExecutionOrderSort (0ms)
  2741. DisableScriptedObjects (5ms)
  2742. BackupInstance (0ms)
  2743. ReleaseScriptingObjects (0ms)
  2744. CreateAndSetChildDomain (33ms)
  2745. EndReloadAssembly (995ms)
  2746. LoadAssemblies (116ms)
  2747. RebuildTransferFunctionScriptingTraits (0ms)
  2748. SetupTypeCache (318ms)
  2749. ReleaseScriptCaches (1ms)
  2750. RebuildScriptCaches (54ms)
  2751. SetupLoadedEditorAssemblies (368ms)
  2752. LogAssemblyErrors (0ms)
  2753. InitializePlatformSupportModulesInManaged (4ms)
  2754. SetLoadedEditorAssemblies (1ms)
  2755. RefreshPlugins (1ms)
  2756. BeforeProcessingInitializeOnLoad (98ms)
  2757. ProcessInitializeOnLoadAttributes (250ms)
  2758. ProcessInitializeOnLoadMethodAttributes (12ms)
  2759. AfterProcessingInitializeOnLoad (3ms)
  2760. EditorAssembliesLoaded (0ms)
  2761. ExecutionOrderSort2 (0ms)
  2762. AwakeInstancesAfterBackupRestoration (29ms)
  2763. Platform modules already initialized, skipping
  2764. Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
  2765. Preloading 0 native plugins for Editor in 0.00 ms.
  2766. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  2767. System memory in use before: 248.4 MB.
  2768. System memory in use after: 248.6 MB.
  2769. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4321.
  2770. Total: 3.421000 ms (FindLiveObjects: 0.414600 ms CreateObjectMapping: 0.114500 ms MarkObjects: 2.859200 ms DeleteObjects: 0.031600 ms)
  2771. AssetImportParameters requested are different than current active one (requested -> active):
  2772. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2773. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2774. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2775. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2776. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2777. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2778. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2779. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2780. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2781. ========================================================================
  2782. Received Prepare
  2783. Registering precompiled user dll's ...
  2784. Registered in 0.009059 seconds.
  2785. Begin MonoManager ReloadAssembly
  2786. Native extension for WindowsStandalone target not found
  2787. Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins.
  2788. Preloading 0 native plugins for Editor in 0.00 ms.
  2789. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  2790. This could be due to missing scripts or compile error.
  2791. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2792. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2793. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  2794. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  2795. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  2796. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  2797. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  2798. Mono: successfully reloaded assembly
  2799. - Completed reload, in 1.295 seconds
  2800. Domain Reload Profiling:
  2801. ReloadAssembly (1295ms)
  2802. BeginReloadAssembly (138ms)
  2803. ExecutionOrderSort (0ms)
  2804. DisableScriptedObjects (7ms)
  2805. BackupInstance (0ms)
  2806. ReleaseScriptingObjects (0ms)
  2807. CreateAndSetChildDomain (39ms)
  2808. EndReloadAssembly (1092ms)
  2809. LoadAssemblies (139ms)
  2810. RebuildTransferFunctionScriptingTraits (0ms)
  2811. SetupTypeCache (372ms)
  2812. ReleaseScriptCaches (1ms)
  2813. RebuildScriptCaches (61ms)
  2814. SetupLoadedEditorAssemblies (373ms)
  2815. LogAssemblyErrors (0ms)
  2816. InitializePlatformSupportModulesInManaged (4ms)
  2817. SetLoadedEditorAssemblies (1ms)
  2818. RefreshPlugins (1ms)
  2819. BeforeProcessingInitializeOnLoad (107ms)
  2820. ProcessInitializeOnLoadAttributes (244ms)
  2821. ProcessInitializeOnLoadMethodAttributes (12ms)
  2822. AfterProcessingInitializeOnLoad (3ms)
  2823. EditorAssembliesLoaded (0ms)
  2824. ExecutionOrderSort2 (0ms)
  2825. AwakeInstancesAfterBackupRestoration (29ms)
  2826. Platform modules already initialized, skipping
  2827. Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins.
  2828. Preloading 0 native plugins for Editor in 0.00 ms.
  2829. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  2830. System memory in use before: 248.4 MB.
  2831. System memory in use after: 248.6 MB.
  2832. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4323.
  2833. Total: 4.256100 ms (FindLiveObjects: 0.504600 ms CreateObjectMapping: 0.122800 ms MarkObjects: 3.585500 ms DeleteObjects: 0.041900 ms)
  2834. AssetImportParameters requested are different than current active one (requested -> active):
  2835. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2836. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2837. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2838. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2839. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2840. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2841. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2842. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2843. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2844. ========================================================================
  2845. Received Import Request.
  2846. Time since last request: 1732.182714 seconds.
  2847. path: Assets/Scripts/View/RY_VIew/RY_View.cs
  2848. artifactKey: Guid(616d1221256651241953d7999e9459e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2849. Start importing Assets/Scripts/View/RY_VIew/RY_View.cs using Guid(616d1221256651241953d7999e9459e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1998866a3a17af8482ea23b2c5ee11f8') in 0.006685 seconds
  2850. Import took 0.012968 seconds .
  2851. ========================================================================
  2852. Received Prepare
  2853. Registering precompiled user dll's ...
  2854. Registered in 0.008114 seconds.
  2855. Begin MonoManager ReloadAssembly
  2856. Native extension for WindowsStandalone target not found
  2857. Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins.
  2858. Preloading 0 native plugins for Editor in 0.00 ms.
  2859. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  2860. This could be due to missing scripts or compile error.
  2861. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2862. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2863. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  2864. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  2865. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  2866. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  2867. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  2868. Mono: successfully reloaded assembly
  2869. - Completed reload, in 1.250 seconds
  2870. Domain Reload Profiling:
  2871. ReloadAssembly (1251ms)
  2872. BeginReloadAssembly (135ms)
  2873. ExecutionOrderSort (0ms)
  2874. DisableScriptedObjects (6ms)
  2875. BackupInstance (0ms)
  2876. ReleaseScriptingObjects (0ms)
  2877. CreateAndSetChildDomain (38ms)
  2878. EndReloadAssembly (1056ms)
  2879. LoadAssemblies (131ms)
  2880. RebuildTransferFunctionScriptingTraits (0ms)
  2881. SetupTypeCache (353ms)
  2882. ReleaseScriptCaches (2ms)
  2883. RebuildScriptCaches (61ms)
  2884. SetupLoadedEditorAssemblies (369ms)
  2885. LogAssemblyErrors (0ms)
  2886. InitializePlatformSupportModulesInManaged (4ms)
  2887. SetLoadedEditorAssemblies (1ms)
  2888. RefreshPlugins (1ms)
  2889. BeforeProcessingInitializeOnLoad (105ms)
  2890. ProcessInitializeOnLoadAttributes (242ms)
  2891. ProcessInitializeOnLoadMethodAttributes (12ms)
  2892. AfterProcessingInitializeOnLoad (3ms)
  2893. EditorAssembliesLoaded (0ms)
  2894. ExecutionOrderSort2 (0ms)
  2895. AwakeInstancesAfterBackupRestoration (28ms)
  2896. Platform modules already initialized, skipping
  2897. Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins.
  2898. Preloading 0 native plugins for Editor in 0.00 ms.
  2899. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  2900. System memory in use before: 248.4 MB.
  2901. System memory in use after: 248.6 MB.
  2902. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4325.
  2903. Total: 3.841800 ms (FindLiveObjects: 0.507600 ms CreateObjectMapping: 0.115300 ms MarkObjects: 3.181800 ms DeleteObjects: 0.036100 ms)
  2904. AssetImportParameters requested are different than current active one (requested -> active):
  2905. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2906. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2907. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2908. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2909. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2910. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2911. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2912. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2913. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2914. ========================================================================
  2915. Received Import Request.
  2916. Time since last request: 161.186156 seconds.
  2917. path: Assets/Rec/ui/panel/view/RY_View.prefab
  2918. artifactKey: Guid(2a71c5a007ec97048a5d0b9e304f58be) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2919. Start importing Assets/Rec/ui/panel/view/RY_View.prefab using Guid(2a71c5a007ec97048a5d0b9e304f58be) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '610dabc972ab96f91dab6a8cbd3a5bc2') in 3.012744 seconds
  2920. Import took 3.025165 seconds .
  2921. ========================================================================
  2922. Received Prepare
  2923. Registering precompiled user dll's ...
  2924. Registered in 0.007205 seconds.
  2925. Begin MonoManager ReloadAssembly
  2926. Native extension for WindowsStandalone target not found
  2927. Refreshing native plugins compatible for Editor in 0.99 ms, found 3 plugins.
  2928. Preloading 0 native plugins for Editor in 0.00 ms.
  2929. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  2930. This could be due to missing scripts or compile error.
  2931. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2932. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2933. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  2934. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  2935. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  2936. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  2937. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  2938. Mono: successfully reloaded assembly
  2939. - Completed reload, in 1.211 seconds
  2940. Domain Reload Profiling:
  2941. ReloadAssembly (1212ms)
  2942. BeginReloadAssembly (135ms)
  2943. ExecutionOrderSort (0ms)
  2944. DisableScriptedObjects (5ms)
  2945. BackupInstance (0ms)
  2946. ReleaseScriptingObjects (0ms)
  2947. CreateAndSetChildDomain (46ms)
  2948. EndReloadAssembly (1022ms)
  2949. LoadAssemblies (123ms)
  2950. RebuildTransferFunctionScriptingTraits (0ms)
  2951. SetupTypeCache (322ms)
  2952. ReleaseScriptCaches (1ms)
  2953. RebuildScriptCaches (58ms)
  2954. SetupLoadedEditorAssemblies (374ms)
  2955. LogAssemblyErrors (0ms)
  2956. InitializePlatformSupportModulesInManaged (4ms)
  2957. SetLoadedEditorAssemblies (0ms)
  2958. RefreshPlugins (1ms)
  2959. BeforeProcessingInitializeOnLoad (99ms)
  2960. ProcessInitializeOnLoadAttributes (255ms)
  2961. ProcessInitializeOnLoadMethodAttributes (12ms)
  2962. AfterProcessingInitializeOnLoad (3ms)
  2963. EditorAssembliesLoaded (0ms)
  2964. ExecutionOrderSort2 (0ms)
  2965. AwakeInstancesAfterBackupRestoration (26ms)
  2966. Platform modules already initialized, skipping
  2967. Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
  2968. Preloading 0 native plugins for Editor in 0.00 ms.
  2969. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  2970. System memory in use before: 248.5 MB.
  2971. System memory in use after: 248.8 MB.
  2972. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4329.
  2973. Total: 3.556300 ms (FindLiveObjects: 0.370800 ms CreateObjectMapping: 0.115900 ms MarkObjects: 3.034300 ms DeleteObjects: 0.034200 ms)
  2974. AssetImportParameters requested are different than current active one (requested -> active):
  2975. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2976. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2977. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2978. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2979. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2980. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2981. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2982. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2983. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2984. ========================================================================
  2985. Received Prepare
  2986. Registering precompiled user dll's ...
  2987. Registered in 0.007902 seconds.
  2988. Begin MonoManager ReloadAssembly
  2989. Native extension for WindowsStandalone target not found
  2990. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  2991. Preloading 0 native plugins for Editor in 0.00 ms.
  2992. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  2993. This could be due to missing scripts or compile error.
  2994. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2995. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2996. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  2997. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  2998. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  2999. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  3000. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  3001. Mono: successfully reloaded assembly
  3002. - Completed reload, in 1.204 seconds
  3003. Domain Reload Profiling:
  3004. ReloadAssembly (1204ms)
  3005. BeginReloadAssembly (124ms)
  3006. ExecutionOrderSort (0ms)
  3007. DisableScriptedObjects (5ms)
  3008. BackupInstance (0ms)
  3009. ReleaseScriptingObjects (0ms)
  3010. CreateAndSetChildDomain (36ms)
  3011. EndReloadAssembly (1023ms)
  3012. LoadAssemblies (119ms)
  3013. RebuildTransferFunctionScriptingTraits (0ms)
  3014. SetupTypeCache (321ms)
  3015. ReleaseScriptCaches (1ms)
  3016. RebuildScriptCaches (69ms)
  3017. SetupLoadedEditorAssemblies (349ms)
  3018. LogAssemblyErrors (0ms)
  3019. InitializePlatformSupportModulesInManaged (5ms)
  3020. SetLoadedEditorAssemblies (1ms)
  3021. RefreshPlugins (1ms)
  3022. BeforeProcessingInitializeOnLoad (98ms)
  3023. ProcessInitializeOnLoadAttributes (230ms)
  3024. ProcessInitializeOnLoadMethodAttributes (11ms)
  3025. AfterProcessingInitializeOnLoad (4ms)
  3026. EditorAssembliesLoaded (0ms)
  3027. ExecutionOrderSort2 (0ms)
  3028. AwakeInstancesAfterBackupRestoration (50ms)
  3029. Platform modules already initialized, skipping
  3030. Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins.
  3031. Preloading 0 native plugins for Editor in 0.00 ms.
  3032. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  3033. System memory in use before: 248.5 MB.
  3034. System memory in use after: 248.8 MB.
  3035. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4331.
  3036. Total: 3.755400 ms (FindLiveObjects: 0.380200 ms CreateObjectMapping: 0.117700 ms MarkObjects: 3.222700 ms DeleteObjects: 0.033600 ms)
  3037. AssetImportParameters requested are different than current active one (requested -> active):
  3038. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3039. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3040. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3041. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3042. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3043. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3044. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3045. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3046. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3047. ========================================================================
  3048. Received Prepare
  3049. Registering precompiled user dll's ...
  3050. Registered in 0.007421 seconds.
  3051. Begin MonoManager ReloadAssembly
  3052. Native extension for WindowsStandalone target not found
  3053. Refreshing native plugins compatible for Editor in 1.39 ms, found 3 plugins.
  3054. Preloading 0 native plugins for Editor in 0.00 ms.
  3055. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  3056. This could be due to missing scripts or compile error.
  3057. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3058. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3059. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  3060. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  3061. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  3062. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  3063. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  3064. Mono: successfully reloaded assembly
  3065. - Completed reload, in 1.261 seconds
  3066. Domain Reload Profiling:
  3067. ReloadAssembly (1262ms)
  3068. BeginReloadAssembly (122ms)
  3069. ExecutionOrderSort (0ms)
  3070. DisableScriptedObjects (5ms)
  3071. BackupInstance (0ms)
  3072. ReleaseScriptingObjects (0ms)
  3073. CreateAndSetChildDomain (35ms)
  3074. EndReloadAssembly (1085ms)
  3075. LoadAssemblies (120ms)
  3076. RebuildTransferFunctionScriptingTraits (0ms)
  3077. SetupTypeCache (337ms)
  3078. ReleaseScriptCaches (1ms)
  3079. RebuildScriptCaches (60ms)
  3080. SetupLoadedEditorAssemblies (394ms)
  3081. LogAssemblyErrors (0ms)
  3082. InitializePlatformSupportModulesInManaged (5ms)
  3083. SetLoadedEditorAssemblies (1ms)
  3084. RefreshPlugins (1ms)
  3085. BeforeProcessingInitializeOnLoad (112ms)
  3086. ProcessInitializeOnLoadAttributes (261ms)
  3087. ProcessInitializeOnLoadMethodAttributes (11ms)
  3088. AfterProcessingInitializeOnLoad (4ms)
  3089. EditorAssembliesLoaded (0ms)
  3090. ExecutionOrderSort2 (0ms)
  3091. AwakeInstancesAfterBackupRestoration (25ms)
  3092. Platform modules already initialized, skipping
  3093. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  3094. Preloading 0 native plugins for Editor in 0.00 ms.
  3095. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  3096. System memory in use before: 248.5 MB.
  3097. System memory in use after: 248.8 MB.
  3098. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4333.
  3099. Total: 3.776500 ms (FindLiveObjects: 0.537500 ms CreateObjectMapping: 0.121400 ms MarkObjects: 3.078100 ms DeleteObjects: 0.037900 ms)
  3100. AssetImportParameters requested are different than current active one (requested -> active):
  3101. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3102. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3103. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3104. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3105. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3106. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3107. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3108. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3109. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3110. ========================================================================
  3111. Received Prepare
  3112. Registering precompiled user dll's ...
  3113. Registered in 0.006999 seconds.
  3114. Begin MonoManager ReloadAssembly
  3115. Native extension for WindowsStandalone target not found
  3116. Refreshing native plugins compatible for Editor in 1.56 ms, found 3 plugins.
  3117. Preloading 0 native plugins for Editor in 0.00 ms.
  3118. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  3119. This could be due to missing scripts or compile error.
  3120. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3121. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3122. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  3123. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  3124. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  3125. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  3126. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  3127. Mono: successfully reloaded assembly
  3128. - Completed reload, in 1.198 seconds
  3129. Domain Reload Profiling:
  3130. ReloadAssembly (1198ms)
  3131. BeginReloadAssembly (134ms)
  3132. ExecutionOrderSort (0ms)
  3133. DisableScriptedObjects (5ms)
  3134. BackupInstance (0ms)
  3135. ReleaseScriptingObjects (0ms)
  3136. CreateAndSetChildDomain (35ms)
  3137. EndReloadAssembly (1008ms)
  3138. LoadAssemblies (130ms)
  3139. RebuildTransferFunctionScriptingTraits (0ms)
  3140. SetupTypeCache (327ms)
  3141. ReleaseScriptCaches (1ms)
  3142. RebuildScriptCaches (56ms)
  3143. SetupLoadedEditorAssemblies (359ms)
  3144. LogAssemblyErrors (0ms)
  3145. InitializePlatformSupportModulesInManaged (4ms)
  3146. SetLoadedEditorAssemblies (1ms)
  3147. RefreshPlugins (2ms)
  3148. BeforeProcessingInitializeOnLoad (102ms)
  3149. ProcessInitializeOnLoadAttributes (229ms)
  3150. ProcessInitializeOnLoadMethodAttributes (18ms)
  3151. AfterProcessingInitializeOnLoad (3ms)
  3152. EditorAssembliesLoaded (0ms)
  3153. ExecutionOrderSort2 (0ms)
  3154. AwakeInstancesAfterBackupRestoration (29ms)
  3155. Platform modules already initialized, skipping
  3156. Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
  3157. Preloading 0 native plugins for Editor in 0.00 ms.
  3158. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  3159. System memory in use before: 248.5 MB.
  3160. System memory in use after: 248.8 MB.
  3161. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4335.
  3162. Total: 3.547600 ms (FindLiveObjects: 0.388800 ms CreateObjectMapping: 0.130100 ms MarkObjects: 2.995300 ms DeleteObjects: 0.032300 ms)
  3163. AssetImportParameters requested are different than current active one (requested -> active):
  3164. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3165. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3166. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3167. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3168. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3169. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3170. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3171. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3172. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3173. ========================================================================
  3174. Received Prepare
  3175. Registering precompiled user dll's ...
  3176. Registered in 0.008065 seconds.
  3177. Begin MonoManager ReloadAssembly
  3178. Native extension for WindowsStandalone target not found
  3179. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  3180. Preloading 0 native plugins for Editor in 0.00 ms.
  3181. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  3182. This could be due to missing scripts or compile error.
  3183. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3184. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3185. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  3186. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  3187. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  3188. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  3189. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  3190. Mono: successfully reloaded assembly
  3191. - Completed reload, in 1.147 seconds
  3192. Domain Reload Profiling:
  3193. ReloadAssembly (1147ms)
  3194. BeginReloadAssembly (123ms)
  3195. ExecutionOrderSort (0ms)
  3196. DisableScriptedObjects (6ms)
  3197. BackupInstance (0ms)
  3198. ReleaseScriptingObjects (0ms)
  3199. CreateAndSetChildDomain (35ms)
  3200. EndReloadAssembly (970ms)
  3201. LoadAssemblies (118ms)
  3202. RebuildTransferFunctionScriptingTraits (0ms)
  3203. SetupTypeCache (316ms)
  3204. ReleaseScriptCaches (1ms)
  3205. RebuildScriptCaches (63ms)
  3206. SetupLoadedEditorAssemblies (341ms)
  3207. LogAssemblyErrors (0ms)
  3208. InitializePlatformSupportModulesInManaged (4ms)
  3209. SetLoadedEditorAssemblies (1ms)
  3210. RefreshPlugins (1ms)
  3211. BeforeProcessingInitializeOnLoad (100ms)
  3212. ProcessInitializeOnLoadAttributes (222ms)
  3213. ProcessInitializeOnLoadMethodAttributes (10ms)
  3214. AfterProcessingInitializeOnLoad (4ms)
  3215. EditorAssembliesLoaded (0ms)
  3216. ExecutionOrderSort2 (0ms)
  3217. AwakeInstancesAfterBackupRestoration (26ms)
  3218. Platform modules already initialized, skipping
  3219. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  3220. Preloading 0 native plugins for Editor in 0.00 ms.
  3221. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  3222. System memory in use before: 248.5 MB.
  3223. System memory in use after: 248.8 MB.
  3224. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4337.
  3225. Total: 3.568900 ms (FindLiveObjects: 0.396200 ms CreateObjectMapping: 0.128700 ms MarkObjects: 3.010100 ms DeleteObjects: 0.032800 ms)
  3226. AssetImportParameters requested are different than current active one (requested -> active):
  3227. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3228. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3229. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3230. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3231. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3232. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3233. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3234. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3235. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3236. ========================================================================
  3237. Received Import Request.
  3238. Time since last request: 320.775937 seconds.
  3239. path: Assets/Rec/ui/panel/view/PY_View.prefab
  3240. artifactKey: Guid(5dde9e67e81de514898168d0e9ead200) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3241. Start importing Assets/Rec/ui/panel/view/PY_View.prefab using Guid(5dde9e67e81de514898168d0e9ead200) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b9ca0c28e8fbdb53b7dd5d0cd93ec77') in 2.490235 seconds
  3242. Import took 2.501888 seconds .
  3243. ========================================================================
  3244. Received Import Request.
  3245. Time since last request: 36.098238 seconds.
  3246. path: Assets/Rec/ui/panel/view/Char_View.prefab
  3247. artifactKey: Guid(94490d8d48454a94d9f5f90da9b690cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3248. Start importing Assets/Rec/ui/panel/view/Char_View.prefab using Guid(94490d8d48454a94d9f5f90da9b690cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd43263921b05ef0b4576a6ef081b8079') in 0.871476 seconds
  3249. Import took 0.885227 seconds .
  3250. ========================================================================
  3251. Received Prepare
  3252. Registering precompiled user dll's ...
  3253. Registered in 0.006965 seconds.
  3254. Begin MonoManager ReloadAssembly
  3255. Native extension for WindowsStandalone target not found
  3256. Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
  3257. Preloading 0 native plugins for Editor in 0.00 ms.
  3258. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  3259. This could be due to missing scripts or compile error.
  3260. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3261. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3262. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  3263. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  3264. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  3265. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  3266. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  3267. Mono: successfully reloaded assembly
  3268. - Completed reload, in 1.167 seconds
  3269. Domain Reload Profiling:
  3270. ReloadAssembly (1167ms)
  3271. BeginReloadAssembly (133ms)
  3272. ExecutionOrderSort (0ms)
  3273. DisableScriptedObjects (6ms)
  3274. BackupInstance (0ms)
  3275. ReleaseScriptingObjects (0ms)
  3276. CreateAndSetChildDomain (43ms)
  3277. EndReloadAssembly (975ms)
  3278. LoadAssemblies (128ms)
  3279. RebuildTransferFunctionScriptingTraits (0ms)
  3280. SetupTypeCache (317ms)
  3281. ReleaseScriptCaches (1ms)
  3282. RebuildScriptCaches (55ms)
  3283. SetupLoadedEditorAssemblies (339ms)
  3284. LogAssemblyErrors (0ms)
  3285. InitializePlatformSupportModulesInManaged (4ms)
  3286. SetLoadedEditorAssemblies (1ms)
  3287. RefreshPlugins (1ms)
  3288. BeforeProcessingInitializeOnLoad (95ms)
  3289. ProcessInitializeOnLoadAttributes (222ms)
  3290. ProcessInitializeOnLoadMethodAttributes (13ms)
  3291. AfterProcessingInitializeOnLoad (4ms)
  3292. EditorAssembliesLoaded (0ms)
  3293. ExecutionOrderSort2 (0ms)
  3294. AwakeInstancesAfterBackupRestoration (26ms)
  3295. Platform modules already initialized, skipping
  3296. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  3297. Preloading 0 native plugins for Editor in 0.00 ms.
  3298. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  3299. System memory in use before: 248.7 MB.
  3300. System memory in use after: 249.0 MB.
  3301. Unloading 32 unused Assets to reduce memory usage. Loaded Objects now: 4339.
  3302. Total: 3.523600 ms (FindLiveObjects: 0.413700 ms CreateObjectMapping: 0.109300 ms MarkObjects: 2.958500 ms DeleteObjects: 0.041100 ms)
  3303. AssetImportParameters requested are different than current active one (requested -> active):
  3304. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3305. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3306. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3307. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3308. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3309. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3310. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3311. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3312. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3313. ========================================================================
  3314. Received Prepare
  3315. Registering precompiled user dll's ...
  3316. Registered in 0.006877 seconds.
  3317. Begin MonoManager ReloadAssembly
  3318. Native extension for WindowsStandalone target not found
  3319. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  3320. Preloading 0 native plugins for Editor in 0.00 ms.
  3321. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  3322. This could be due to missing scripts or compile error.
  3323. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3324. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3325. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  3326. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  3327. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  3328. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  3329. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  3330. Mono: successfully reloaded assembly
  3331. - Completed reload, in 1.169 seconds
  3332. Domain Reload Profiling:
  3333. ReloadAssembly (1169ms)
  3334. BeginReloadAssembly (126ms)
  3335. ExecutionOrderSort (0ms)
  3336. DisableScriptedObjects (6ms)
  3337. BackupInstance (0ms)
  3338. ReleaseScriptingObjects (0ms)
  3339. CreateAndSetChildDomain (36ms)
  3340. EndReloadAssembly (985ms)
  3341. LoadAssemblies (120ms)
  3342. RebuildTransferFunctionScriptingTraits (0ms)
  3343. SetupTypeCache (316ms)
  3344. ReleaseScriptCaches (3ms)
  3345. RebuildScriptCaches (57ms)
  3346. SetupLoadedEditorAssemblies (352ms)
  3347. LogAssemblyErrors (0ms)
  3348. InitializePlatformSupportModulesInManaged (4ms)
  3349. SetLoadedEditorAssemblies (1ms)
  3350. RefreshPlugins (1ms)
  3351. BeforeProcessingInitializeOnLoad (106ms)
  3352. ProcessInitializeOnLoadAttributes (227ms)
  3353. ProcessInitializeOnLoadMethodAttributes (11ms)
  3354. AfterProcessingInitializeOnLoad (3ms)
  3355. EditorAssembliesLoaded (0ms)
  3356. ExecutionOrderSort2 (0ms)
  3357. AwakeInstancesAfterBackupRestoration (26ms)
  3358. Platform modules already initialized, skipping
  3359. Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
  3360. Preloading 0 native plugins for Editor in 0.00 ms.
  3361. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  3362. System memory in use before: 248.7 MB.
  3363. System memory in use after: 249.0 MB.
  3364. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4341.
  3365. Total: 4.281100 ms (FindLiveObjects: 0.593800 ms CreateObjectMapping: 0.142100 ms MarkObjects: 3.504800 ms DeleteObjects: 0.039300 ms)
  3366. AssetImportParameters requested are different than current active one (requested -> active):
  3367. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3368. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3369. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3370. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3371. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3372. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3373. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3374. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3375. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3376. ========================================================================
  3377. Received Prepare
  3378. Registering precompiled user dll's ...
  3379. Registered in 0.007812 seconds.
  3380. Begin MonoManager ReloadAssembly
  3381. Native extension for WindowsStandalone target not found
  3382. Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins.
  3383. Preloading 0 native plugins for Editor in 0.00 ms.
  3384. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  3385. This could be due to missing scripts or compile error.
  3386. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3387. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3388. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  3389. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  3390. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  3391. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  3392. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  3393. Mono: successfully reloaded assembly
  3394. - Completed reload, in 1.170 seconds
  3395. Domain Reload Profiling:
  3396. ReloadAssembly (1171ms)
  3397. BeginReloadAssembly (135ms)
  3398. ExecutionOrderSort (0ms)
  3399. DisableScriptedObjects (6ms)
  3400. BackupInstance (0ms)
  3401. ReleaseScriptingObjects (0ms)
  3402. CreateAndSetChildDomain (35ms)
  3403. EndReloadAssembly (977ms)
  3404. LoadAssemblies (129ms)
  3405. RebuildTransferFunctionScriptingTraits (0ms)
  3406. SetupTypeCache (318ms)
  3407. ReleaseScriptCaches (1ms)
  3408. RebuildScriptCaches (57ms)
  3409. SetupLoadedEditorAssemblies (348ms)
  3410. LogAssemblyErrors (0ms)
  3411. InitializePlatformSupportModulesInManaged (5ms)
  3412. SetLoadedEditorAssemblies (1ms)
  3413. RefreshPlugins (1ms)
  3414. BeforeProcessingInitializeOnLoad (104ms)
  3415. ProcessInitializeOnLoadAttributes (222ms)
  3416. ProcessInitializeOnLoadMethodAttributes (12ms)
  3417. AfterProcessingInitializeOnLoad (4ms)
  3418. EditorAssembliesLoaded (0ms)
  3419. ExecutionOrderSort2 (0ms)
  3420. AwakeInstancesAfterBackupRestoration (26ms)
  3421. Platform modules already initialized, skipping
  3422. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  3423. Preloading 0 native plugins for Editor in 0.00 ms.
  3424. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  3425. System memory in use before: 248.7 MB.
  3426. System memory in use after: 249.0 MB.
  3427. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4343.
  3428. Total: 3.519100 ms (FindLiveObjects: 0.400100 ms CreateObjectMapping: 0.110500 ms MarkObjects: 2.975500 ms DeleteObjects: 0.032100 ms)
  3429. AssetImportParameters requested are different than current active one (requested -> active):
  3430. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3431. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3432. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3433. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3434. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3435. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3436. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3437. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3438. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3439. ========================================================================
  3440. Received Prepare
  3441. Registering precompiled user dll's ...
  3442. Registered in 0.007131 seconds.
  3443. Begin MonoManager ReloadAssembly
  3444. Native extension for WindowsStandalone target not found
  3445. Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
  3446. Preloading 0 native plugins for Editor in 0.00 ms.
  3447. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  3448. This could be due to missing scripts or compile error.
  3449. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3450. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3451. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  3452. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  3453. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  3454. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  3455. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  3456. Mono: successfully reloaded assembly
  3457. - Completed reload, in 1.237 seconds
  3458. Domain Reload Profiling:
  3459. ReloadAssembly (1237ms)
  3460. BeginReloadAssembly (127ms)
  3461. ExecutionOrderSort (0ms)
  3462. DisableScriptedObjects (5ms)
  3463. BackupInstance (0ms)
  3464. ReleaseScriptingObjects (0ms)
  3465. CreateAndSetChildDomain (37ms)
  3466. EndReloadAssembly (1053ms)
  3467. LoadAssemblies (122ms)
  3468. RebuildTransferFunctionScriptingTraits (0ms)
  3469. SetupTypeCache (367ms)
  3470. ReleaseScriptCaches (1ms)
  3471. RebuildScriptCaches (57ms)
  3472. SetupLoadedEditorAssemblies (375ms)
  3473. LogAssemblyErrors (0ms)
  3474. InitializePlatformSupportModulesInManaged (6ms)
  3475. SetLoadedEditorAssemblies (1ms)
  3476. RefreshPlugins (1ms)
  3477. BeforeProcessingInitializeOnLoad (104ms)
  3478. ProcessInitializeOnLoadAttributes (249ms)
  3479. ProcessInitializeOnLoadMethodAttributes (11ms)
  3480. AfterProcessingInitializeOnLoad (3ms)
  3481. EditorAssembliesLoaded (0ms)
  3482. ExecutionOrderSort2 (0ms)
  3483. AwakeInstancesAfterBackupRestoration (25ms)
  3484. Platform modules already initialized, skipping
  3485. Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
  3486. Preloading 0 native plugins for Editor in 0.00 ms.
  3487. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  3488. System memory in use before: 248.8 MB.
  3489. System memory in use after: 249.0 MB.
  3490. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4345.
  3491. Total: 3.693600 ms (FindLiveObjects: 0.486200 ms CreateObjectMapping: 0.113800 ms MarkObjects: 3.057300 ms DeleteObjects: 0.035200 ms)
  3492. AssetImportParameters requested are different than current active one (requested -> active):
  3493. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3494. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3495. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3496. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3497. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3498. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3499. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3500. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3501. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3502. ========================================================================
  3503. Received Prepare
  3504. Registering precompiled user dll's ...
  3505. Registered in 0.009864 seconds.
  3506. Begin MonoManager ReloadAssembly
  3507. Native extension for WindowsStandalone target not found
  3508. Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
  3509. Preloading 0 native plugins for Editor in 0.00 ms.
  3510. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  3511. This could be due to missing scripts or compile error.
  3512. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3513. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3514. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  3515. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  3516. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  3517. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  3518. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  3519. Mono: successfully reloaded assembly
  3520. - Completed reload, in 1.178 seconds
  3521. Domain Reload Profiling:
  3522. ReloadAssembly (1179ms)
  3523. BeginReloadAssembly (128ms)
  3524. ExecutionOrderSort (0ms)
  3525. DisableScriptedObjects (6ms)
  3526. BackupInstance (0ms)
  3527. ReleaseScriptingObjects (0ms)
  3528. CreateAndSetChildDomain (37ms)
  3529. EndReloadAssembly (993ms)
  3530. LoadAssemblies (121ms)
  3531. RebuildTransferFunctionScriptingTraits (0ms)
  3532. SetupTypeCache (328ms)
  3533. ReleaseScriptCaches (2ms)
  3534. RebuildScriptCaches (58ms)
  3535. SetupLoadedEditorAssemblies (347ms)
  3536. LogAssemblyErrors (0ms)
  3537. InitializePlatformSupportModulesInManaged (4ms)
  3538. SetLoadedEditorAssemblies (1ms)
  3539. RefreshPlugins (1ms)
  3540. BeforeProcessingInitializeOnLoad (95ms)
  3541. ProcessInitializeOnLoadAttributes (232ms)
  3542. ProcessInitializeOnLoadMethodAttributes (11ms)
  3543. AfterProcessingInitializeOnLoad (3ms)
  3544. EditorAssembliesLoaded (0ms)
  3545. ExecutionOrderSort2 (0ms)
  3546. AwakeInstancesAfterBackupRestoration (27ms)
  3547. Platform modules already initialized, skipping
  3548. Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins.
  3549. Preloading 0 native plugins for Editor in 0.00 ms.
  3550. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  3551. System memory in use before: 248.8 MB.
  3552. System memory in use after: 249.0 MB.
  3553. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4347.
  3554. Total: 3.703700 ms (FindLiveObjects: 0.406600 ms CreateObjectMapping: 0.156400 ms MarkObjects: 3.105000 ms DeleteObjects: 0.034600 ms)
  3555. AssetImportParameters requested are different than current active one (requested -> active):
  3556. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3557. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3558. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3559. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3560. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3561. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3562. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3563. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3564. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3565. ========================================================================
  3566. Received Prepare
  3567. Registering precompiled user dll's ...
  3568. Registered in 0.007985 seconds.
  3569. Begin MonoManager ReloadAssembly
  3570. Native extension for WindowsStandalone target not found
  3571. Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins.
  3572. Preloading 0 native plugins for Editor in 0.00 ms.
  3573. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  3574. This could be due to missing scripts or compile error.
  3575. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3576. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3577. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  3578. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  3579. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  3580. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  3581. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  3582. Mono: successfully reloaded assembly
  3583. - Completed reload, in 1.152 seconds
  3584. Domain Reload Profiling:
  3585. ReloadAssembly (1152ms)
  3586. BeginReloadAssembly (126ms)
  3587. ExecutionOrderSort (0ms)
  3588. DisableScriptedObjects (6ms)
  3589. BackupInstance (0ms)
  3590. ReleaseScriptingObjects (0ms)
  3591. CreateAndSetChildDomain (36ms)
  3592. EndReloadAssembly (967ms)
  3593. LoadAssemblies (119ms)
  3594. RebuildTransferFunctionScriptingTraits (0ms)
  3595. SetupTypeCache (324ms)
  3596. ReleaseScriptCaches (1ms)
  3597. RebuildScriptCaches (55ms)
  3598. SetupLoadedEditorAssemblies (338ms)
  3599. LogAssemblyErrors (0ms)
  3600. InitializePlatformSupportModulesInManaged (5ms)
  3601. SetLoadedEditorAssemblies (1ms)
  3602. RefreshPlugins (1ms)
  3603. BeforeProcessingInitializeOnLoad (96ms)
  3604. ProcessInitializeOnLoadAttributes (221ms)
  3605. ProcessInitializeOnLoadMethodAttributes (10ms)
  3606. AfterProcessingInitializeOnLoad (3ms)
  3607. EditorAssembliesLoaded (0ms)
  3608. ExecutionOrderSort2 (0ms)
  3609. AwakeInstancesAfterBackupRestoration (25ms)
  3610. Platform modules already initialized, skipping
  3611. Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
  3612. Preloading 0 native plugins for Editor in 0.00 ms.
  3613. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  3614. System memory in use before: 248.8 MB.
  3615. System memory in use after: 249.0 MB.
  3616. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4349.
  3617. Total: 3.537900 ms (FindLiveObjects: 0.385500 ms CreateObjectMapping: 0.109500 ms MarkObjects: 3.007800 ms DeleteObjects: 0.034100 ms)
  3618. AssetImportParameters requested are different than current active one (requested -> active):
  3619. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3620. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3621. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3622. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3623. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3624. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3625. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3626. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3627. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3628. ========================================================================
  3629. Received Prepare
  3630. Registering precompiled user dll's ...
  3631. Registered in 0.007685 seconds.
  3632. Begin MonoManager ReloadAssembly
  3633. Native extension for WindowsStandalone target not found
  3634. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  3635. Preloading 0 native plugins for Editor in 0.00 ms.
  3636. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  3637. This could be due to missing scripts or compile error.
  3638. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3639. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3640. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  3641. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  3642. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  3643. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  3644. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  3645. Mono: successfully reloaded assembly
  3646. - Completed reload, in 1.181 seconds
  3647. Domain Reload Profiling:
  3648. ReloadAssembly (1181ms)
  3649. BeginReloadAssembly (121ms)
  3650. ExecutionOrderSort (0ms)
  3651. DisableScriptedObjects (6ms)
  3652. BackupInstance (0ms)
  3653. ReleaseScriptingObjects (0ms)
  3654. CreateAndSetChildDomain (35ms)
  3655. EndReloadAssembly (1002ms)
  3656. LoadAssemblies (120ms)
  3657. RebuildTransferFunctionScriptingTraits (0ms)
  3658. SetupTypeCache (319ms)
  3659. ReleaseScriptCaches (1ms)
  3660. RebuildScriptCaches (54ms)
  3661. SetupLoadedEditorAssemblies (354ms)
  3662. LogAssemblyErrors (0ms)
  3663. InitializePlatformSupportModulesInManaged (4ms)
  3664. SetLoadedEditorAssemblies (1ms)
  3665. RefreshPlugins (1ms)
  3666. BeforeProcessingInitializeOnLoad (97ms)
  3667. ProcessInitializeOnLoadAttributes (234ms)
  3668. ProcessInitializeOnLoadMethodAttributes (11ms)
  3669. AfterProcessingInitializeOnLoad (7ms)
  3670. EditorAssembliesLoaded (0ms)
  3671. ExecutionOrderSort2 (0ms)
  3672. AwakeInstancesAfterBackupRestoration (28ms)
  3673. Platform modules already initialized, skipping
  3674. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  3675. Preloading 0 native plugins for Editor in 0.00 ms.
  3676. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  3677. System memory in use before: 248.8 MB.
  3678. System memory in use after: 249.0 MB.
  3679. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4351.
  3680. Total: 3.510900 ms (FindLiveObjects: 0.406700 ms CreateObjectMapping: 0.114400 ms MarkObjects: 2.957200 ms DeleteObjects: 0.031900 ms)
  3681. AssetImportParameters requested are different than current active one (requested -> active):
  3682. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3683. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3684. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3685. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3686. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3687. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3688. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3689. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3690. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3691. ========================================================================
  3692. Received Prepare
  3693. Registering precompiled user dll's ...
  3694. Registered in 0.007168 seconds.
  3695. Begin MonoManager ReloadAssembly
  3696. Native extension for WindowsStandalone target not found
  3697. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  3698. Preloading 0 native plugins for Editor in 0.00 ms.
  3699. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  3700. This could be due to missing scripts or compile error.
  3701. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3702. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3703. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  3704. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  3705. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  3706. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  3707. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  3708. Mono: successfully reloaded assembly
  3709. - Completed reload, in 1.167 seconds
  3710. Domain Reload Profiling:
  3711. ReloadAssembly (1168ms)
  3712. BeginReloadAssembly (127ms)
  3713. ExecutionOrderSort (0ms)
  3714. DisableScriptedObjects (6ms)
  3715. BackupInstance (0ms)
  3716. ReleaseScriptingObjects (0ms)
  3717. CreateAndSetChildDomain (35ms)
  3718. EndReloadAssembly (984ms)
  3719. LoadAssemblies (123ms)
  3720. RebuildTransferFunctionScriptingTraits (0ms)
  3721. SetupTypeCache (318ms)
  3722. ReleaseScriptCaches (1ms)
  3723. RebuildScriptCaches (58ms)
  3724. SetupLoadedEditorAssemblies (350ms)
  3725. LogAssemblyErrors (0ms)
  3726. InitializePlatformSupportModulesInManaged (4ms)
  3727. SetLoadedEditorAssemblies (1ms)
  3728. RefreshPlugins (1ms)
  3729. BeforeProcessingInitializeOnLoad (98ms)
  3730. ProcessInitializeOnLoadAttributes (232ms)
  3731. ProcessInitializeOnLoadMethodAttributes (11ms)
  3732. AfterProcessingInitializeOnLoad (3ms)
  3733. EditorAssembliesLoaded (0ms)
  3734. ExecutionOrderSort2 (0ms)
  3735. AwakeInstancesAfterBackupRestoration (25ms)
  3736. Platform modules already initialized, skipping
  3737. Refreshing native plugins compatible for Editor in 1.69 ms, found 3 plugins.
  3738. Preloading 0 native plugins for Editor in 0.00 ms.
  3739. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  3740. System memory in use before: 248.8 MB.
  3741. System memory in use after: 249.0 MB.
  3742. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4353.
  3743. Total: 3.933200 ms (FindLiveObjects: 0.443400 ms CreateObjectMapping: 0.116700 ms MarkObjects: 3.329900 ms DeleteObjects: 0.042000 ms)
  3744. AssetImportParameters requested are different than current active one (requested -> active):
  3745. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3746. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3747. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3748. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3749. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3750. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3751. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3752. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3753. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3754. ========================================================================
  3755. Received Prepare
  3756. Registering precompiled user dll's ...
  3757. Registered in 0.007111 seconds.
  3758. Begin MonoManager ReloadAssembly
  3759. Native extension for WindowsStandalone target not found
  3760. Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
  3761. Preloading 0 native plugins for Editor in 0.00 ms.
  3762. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  3763. This could be due to missing scripts or compile error.
  3764. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3765. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3766. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  3767. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  3768. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  3769. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  3770. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  3771. Mono: successfully reloaded assembly
  3772. - Completed reload, in 1.156 seconds
  3773. Domain Reload Profiling:
  3774. ReloadAssembly (1156ms)
  3775. BeginReloadAssembly (117ms)
  3776. ExecutionOrderSort (0ms)
  3777. DisableScriptedObjects (6ms)
  3778. BackupInstance (0ms)
  3779. ReleaseScriptingObjects (0ms)
  3780. CreateAndSetChildDomain (36ms)
  3781. EndReloadAssembly (983ms)
  3782. LoadAssemblies (107ms)
  3783. RebuildTransferFunctionScriptingTraits (0ms)
  3784. SetupTypeCache (324ms)
  3785. ReleaseScriptCaches (1ms)
  3786. RebuildScriptCaches (56ms)
  3787. SetupLoadedEditorAssemblies (344ms)
  3788. LogAssemblyErrors (0ms)
  3789. InitializePlatformSupportModulesInManaged (4ms)
  3790. SetLoadedEditorAssemblies (1ms)
  3791. RefreshPlugins (1ms)
  3792. BeforeProcessingInitializeOnLoad (98ms)
  3793. ProcessInitializeOnLoadAttributes (226ms)
  3794. ProcessInitializeOnLoadMethodAttributes (11ms)
  3795. AfterProcessingInitializeOnLoad (3ms)
  3796. EditorAssembliesLoaded (0ms)
  3797. ExecutionOrderSort2 (0ms)
  3798. AwakeInstancesAfterBackupRestoration (26ms)
  3799. Platform modules already initialized, skipping
  3800. Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
  3801. Preloading 0 native plugins for Editor in 0.00 ms.
  3802. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  3803. System memory in use before: 248.8 MB.
  3804. System memory in use after: 249.0 MB.
  3805. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4355.
  3806. Total: 3.685800 ms (FindLiveObjects: 0.511900 ms CreateObjectMapping: 0.133300 ms MarkObjects: 3.006700 ms DeleteObjects: 0.032700 ms)
  3807. AssetImportParameters requested are different than current active one (requested -> active):
  3808. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3809. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3810. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3811. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3812. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3813. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3814. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3815. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3816. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3817. ========================================================================
  3818. Received Prepare
  3819. Registering precompiled user dll's ...
  3820. Registered in 0.007047 seconds.
  3821. Begin MonoManager ReloadAssembly
  3822. Native extension for WindowsStandalone target not found
  3823. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  3824. Preloading 0 native plugins for Editor in 0.00 ms.
  3825. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  3826. This could be due to missing scripts or compile error.
  3827. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3828. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3829. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  3830. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  3831. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  3832. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  3833. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  3834. Mono: successfully reloaded assembly
  3835. - Completed reload, in 1.193 seconds
  3836. Domain Reload Profiling:
  3837. ReloadAssembly (1194ms)
  3838. BeginReloadAssembly (127ms)
  3839. ExecutionOrderSort (0ms)
  3840. DisableScriptedObjects (6ms)
  3841. BackupInstance (0ms)
  3842. ReleaseScriptingObjects (0ms)
  3843. CreateAndSetChildDomain (36ms)
  3844. EndReloadAssembly (1010ms)
  3845. LoadAssemblies (125ms)
  3846. RebuildTransferFunctionScriptingTraits (0ms)
  3847. SetupTypeCache (324ms)
  3848. ReleaseScriptCaches (1ms)
  3849. RebuildScriptCaches (62ms)
  3850. SetupLoadedEditorAssemblies (353ms)
  3851. LogAssemblyErrors (0ms)
  3852. InitializePlatformSupportModulesInManaged (4ms)
  3853. SetLoadedEditorAssemblies (1ms)
  3854. RefreshPlugins (1ms)
  3855. BeforeProcessingInitializeOnLoad (99ms)
  3856. ProcessInitializeOnLoadAttributes (234ms)
  3857. ProcessInitializeOnLoadMethodAttributes (11ms)
  3858. AfterProcessingInitializeOnLoad (3ms)
  3859. EditorAssembliesLoaded (0ms)
  3860. ExecutionOrderSort2 (0ms)
  3861. AwakeInstancesAfterBackupRestoration (27ms)
  3862. Platform modules already initialized, skipping
  3863. Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins.
  3864. Preloading 0 native plugins for Editor in 0.00 ms.
  3865. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  3866. System memory in use before: 248.8 MB.
  3867. System memory in use after: 249.0 MB.
  3868. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4357.
  3869. Total: 3.722300 ms (FindLiveObjects: 0.398100 ms CreateObjectMapping: 0.131900 ms MarkObjects: 3.155700 ms DeleteObjects: 0.035200 ms)
  3870. AssetImportParameters requested are different than current active one (requested -> active):
  3871. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3872. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3873. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3874. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3875. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3876. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3877. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3878. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3879. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3880. ========================================================================
  3881. Received Import Request.
  3882. Time since last request: 650.037893 seconds.
  3883. path: Assets/Rec/ui/panel/view/Main_View.prefab
  3884. artifactKey: Guid(3071b9ee048ba4a4091f9d99623a18e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3885. Start importing Assets/Rec/ui/panel/view/Main_View.prefab using Guid(3071b9ee048ba4a4091f9d99623a18e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c2cb29a7ae533f9a3c9be661f90a9041') in 2.729235 seconds
  3886. Import took 2.741716 seconds .
  3887. ========================================================================
  3888. Received Prepare
  3889. Registering precompiled user dll's ...
  3890. Registered in 0.008590 seconds.
  3891. Begin MonoManager ReloadAssembly
  3892. Native extension for WindowsStandalone target not found
  3893. Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins.
  3894. Preloading 0 native plugins for Editor in 0.00 ms.
  3895. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  3896. This could be due to missing scripts or compile error.
  3897. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3898. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3899. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  3900. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  3901. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  3902. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  3903. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  3904. Mono: successfully reloaded assembly
  3905. - Completed reload, in 1.225 seconds
  3906. Domain Reload Profiling:
  3907. ReloadAssembly (1226ms)
  3908. BeginReloadAssembly (137ms)
  3909. ExecutionOrderSort (0ms)
  3910. DisableScriptedObjects (5ms)
  3911. BackupInstance (0ms)
  3912. ReleaseScriptingObjects (0ms)
  3913. CreateAndSetChildDomain (46ms)
  3914. EndReloadAssembly (1033ms)
  3915. LoadAssemblies (127ms)
  3916. RebuildTransferFunctionScriptingTraits (0ms)
  3917. SetupTypeCache (337ms)
  3918. ReleaseScriptCaches (1ms)
  3919. RebuildScriptCaches (55ms)
  3920. SetupLoadedEditorAssemblies (362ms)
  3921. LogAssemblyErrors (0ms)
  3922. InitializePlatformSupportModulesInManaged (4ms)
  3923. SetLoadedEditorAssemblies (1ms)
  3924. RefreshPlugins (1ms)
  3925. BeforeProcessingInitializeOnLoad (104ms)
  3926. ProcessInitializeOnLoadAttributes (237ms)
  3927. ProcessInitializeOnLoadMethodAttributes (11ms)
  3928. AfterProcessingInitializeOnLoad (3ms)
  3929. EditorAssembliesLoaded (0ms)
  3930. ExecutionOrderSort2 (0ms)
  3931. AwakeInstancesAfterBackupRestoration (28ms)
  3932. Platform modules already initialized, skipping
  3933. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  3934. Preloading 0 native plugins for Editor in 0.00 ms.
  3935. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  3936. System memory in use before: 248.9 MB.
  3937. System memory in use after: 249.2 MB.
  3938. Unloading 33 unused Assets to reduce memory usage. Loaded Objects now: 4359.
  3939. Total: 3.934200 ms (FindLiveObjects: 0.408400 ms CreateObjectMapping: 0.113900 ms MarkObjects: 3.362100 ms DeleteObjects: 0.048800 ms)
  3940. AssetImportParameters requested are different than current active one (requested -> active):
  3941. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3942. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3943. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3944. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3945. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3946. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3947. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3948. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3949. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3950. ========================================================================
  3951. Received Import Request.
  3952. Time since last request: 326.848086 seconds.
  3953. path: Assets/Rec/ui/panel/view/Main_View.prefab
  3954. artifactKey: Guid(3071b9ee048ba4a4091f9d99623a18e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3955. Start importing Assets/Rec/ui/panel/view/Main_View.prefab using Guid(3071b9ee048ba4a4091f9d99623a18e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '27e0a00697f1d1e5ea20de04f3d12cb8') in 2.428564 seconds
  3956. Import took 2.441595 seconds .
  3957. ========================================================================
  3958. Received Import Request.
  3959. Time since last request: 70.741317 seconds.
  3960. path: Assets/Rec/ui/panel/view/Char_View.prefab
  3961. artifactKey: Guid(94490d8d48454a94d9f5f90da9b690cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3962. Start importing Assets/Rec/ui/panel/view/Char_View.prefab using Guid(94490d8d48454a94d9f5f90da9b690cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5226b271c92b8e937e9ac769d8eaf370') in 0.862821 seconds
  3963. Import took 0.876348 seconds .
  3964. ========================================================================
  3965. Received Prepare
  3966. Registering precompiled user dll's ...
  3967. Registered in 0.007716 seconds.
  3968. Begin MonoManager ReloadAssembly
  3969. Native extension for WindowsStandalone target not found
  3970. Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
  3971. Preloading 0 native plugins for Editor in 0.00 ms.
  3972. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  3973. This could be due to missing scripts or compile error.
  3974. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3975. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3976. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  3977. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  3978. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  3979. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  3980. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  3981. Mono: successfully reloaded assembly
  3982. - Completed reload, in 1.184 seconds
  3983. Domain Reload Profiling:
  3984. ReloadAssembly (1184ms)
  3985. BeginReloadAssembly (131ms)
  3986. ExecutionOrderSort (0ms)
  3987. DisableScriptedObjects (5ms)
  3988. BackupInstance (0ms)
  3989. ReleaseScriptingObjects (0ms)
  3990. CreateAndSetChildDomain (41ms)
  3991. EndReloadAssembly (995ms)
  3992. LoadAssemblies (130ms)
  3993. RebuildTransferFunctionScriptingTraits (0ms)
  3994. SetupTypeCache (329ms)
  3995. ReleaseScriptCaches (1ms)
  3996. RebuildScriptCaches (56ms)
  3997. SetupLoadedEditorAssemblies (343ms)
  3998. LogAssemblyErrors (0ms)
  3999. InitializePlatformSupportModulesInManaged (4ms)
  4000. SetLoadedEditorAssemblies (1ms)
  4001. RefreshPlugins (1ms)
  4002. BeforeProcessingInitializeOnLoad (98ms)
  4003. ProcessInitializeOnLoadAttributes (226ms)
  4004. ProcessInitializeOnLoadMethodAttributes (11ms)
  4005. AfterProcessingInitializeOnLoad (3ms)
  4006. EditorAssembliesLoaded (0ms)
  4007. ExecutionOrderSort2 (0ms)
  4008. AwakeInstancesAfterBackupRestoration (25ms)
  4009. Platform modules already initialized, skipping
  4010. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  4011. Preloading 0 native plugins for Editor in 0.00 ms.
  4012. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  4013. System memory in use before: 248.9 MB.
  4014. System memory in use after: 249.2 MB.
  4015. Unloading 33 unused Assets to reduce memory usage. Loaded Objects now: 4361.
  4016. Total: 4.142400 ms (FindLiveObjects: 0.468600 ms CreateObjectMapping: 0.117800 ms MarkObjects: 3.503900 ms DeleteObjects: 0.050800 ms)
  4017. AssetImportParameters requested are different than current active one (requested -> active):
  4018. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4019. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4020. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4021. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4022. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4023. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4024. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4025. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4026. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4027. ========================================================================
  4028. Received Prepare
  4029. Registering precompiled user dll's ...
  4030. Registered in 0.009218 seconds.
  4031. Begin MonoManager ReloadAssembly
  4032. Native extension for WindowsStandalone target not found
  4033. Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins.
  4034. Preloading 0 native plugins for Editor in 0.00 ms.
  4035. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  4036. This could be due to missing scripts or compile error.
  4037. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  4038. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  4039. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  4040. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  4041. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  4042. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  4043. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  4044. Mono: successfully reloaded assembly
  4045. - Completed reload, in 1.326 seconds
  4046. Domain Reload Profiling:
  4047. ReloadAssembly (1327ms)
  4048. BeginReloadAssembly (144ms)
  4049. ExecutionOrderSort (0ms)
  4050. DisableScriptedObjects (7ms)
  4051. BackupInstance (0ms)
  4052. ReleaseScriptingObjects (0ms)
  4053. CreateAndSetChildDomain (40ms)
  4054. EndReloadAssembly (1121ms)
  4055. LoadAssemblies (143ms)
  4056. RebuildTransferFunctionScriptingTraits (0ms)
  4057. SetupTypeCache (363ms)
  4058. ReleaseScriptCaches (1ms)
  4059. RebuildScriptCaches (64ms)
  4060. SetupLoadedEditorAssemblies (394ms)
  4061. LogAssemblyErrors (0ms)
  4062. InitializePlatformSupportModulesInManaged (5ms)
  4063. SetLoadedEditorAssemblies (1ms)
  4064. RefreshPlugins (1ms)
  4065. BeforeProcessingInitializeOnLoad (111ms)
  4066. ProcessInitializeOnLoadAttributes (260ms)
  4067. ProcessInitializeOnLoadMethodAttributes (13ms)
  4068. AfterProcessingInitializeOnLoad (4ms)
  4069. EditorAssembliesLoaded (0ms)
  4070. ExecutionOrderSort2 (0ms)
  4071. AwakeInstancesAfterBackupRestoration (30ms)
  4072. Platform modules already initialized, skipping
  4073. Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins.
  4074. Preloading 0 native plugins for Editor in 0.00 ms.
  4075. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  4076. System memory in use before: 248.9 MB.
  4077. System memory in use after: 249.2 MB.
  4078. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4363.
  4079. Total: 4.346800 ms (FindLiveObjects: 0.586500 ms CreateObjectMapping: 0.114300 ms MarkObjects: 3.604800 ms DeleteObjects: 0.039400 ms)
  4080. AssetImportParameters requested are different than current active one (requested -> active):
  4081. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4082. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4083. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4084. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4085. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4086. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4087. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4088. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4089. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4090. ========================================================================
  4091. Received Prepare
  4092. Registering precompiled user dll's ...
  4093. Registered in 0.008278 seconds.
  4094. Begin MonoManager ReloadAssembly
  4095. Native extension for WindowsStandalone target not found
  4096. Refreshing native plugins compatible for Editor in 0.99 ms, found 3 plugins.
  4097. Preloading 0 native plugins for Editor in 0.00 ms.
  4098. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  4099. This could be due to missing scripts or compile error.
  4100. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  4101. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  4102. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  4103. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  4104. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  4105. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  4106. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  4107. Mono: successfully reloaded assembly
  4108. - Completed reload, in 1.184 seconds
  4109. Domain Reload Profiling:
  4110. ReloadAssembly (1185ms)
  4111. BeginReloadAssembly (138ms)
  4112. ExecutionOrderSort (0ms)
  4113. DisableScriptedObjects (6ms)
  4114. BackupInstance (0ms)
  4115. ReleaseScriptingObjects (0ms)
  4116. CreateAndSetChildDomain (41ms)
  4117. EndReloadAssembly (991ms)
  4118. LoadAssemblies (126ms)
  4119. RebuildTransferFunctionScriptingTraits (0ms)
  4120. SetupTypeCache (328ms)
  4121. ReleaseScriptCaches (1ms)
  4122. RebuildScriptCaches (55ms)
  4123. SetupLoadedEditorAssemblies (346ms)
  4124. LogAssemblyErrors (0ms)
  4125. InitializePlatformSupportModulesInManaged (4ms)
  4126. SetLoadedEditorAssemblies (1ms)
  4127. RefreshPlugins (1ms)
  4128. BeforeProcessingInitializeOnLoad (99ms)
  4129. ProcessInitializeOnLoadAttributes (228ms)
  4130. ProcessInitializeOnLoadMethodAttributes (11ms)
  4131. AfterProcessingInitializeOnLoad (3ms)
  4132. EditorAssembliesLoaded (0ms)
  4133. ExecutionOrderSort2 (0ms)
  4134. AwakeInstancesAfterBackupRestoration (27ms)
  4135. Platform modules already initialized, skipping
  4136. Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins.
  4137. Preloading 0 native plugins for Editor in 0.00 ms.
  4138. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  4139. System memory in use before: 248.9 MB.
  4140. System memory in use after: 249.2 MB.
  4141. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4365.
  4142. Total: 3.492600 ms (FindLiveObjects: 0.396300 ms CreateObjectMapping: 0.113200 ms MarkObjects: 2.950700 ms DeleteObjects: 0.031500 ms)
  4143. AssetImportParameters requested are different than current active one (requested -> active):
  4144. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4145. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4146. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4147. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4148. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4149. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4150. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4151. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4152. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4153. ========================================================================
  4154. Received Prepare
  4155. Registering precompiled user dll's ...
  4156. Registered in 0.007114 seconds.
  4157. Begin MonoManager ReloadAssembly
  4158. Native extension for WindowsStandalone target not found
  4159. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  4160. Preloading 0 native plugins for Editor in 0.00 ms.
  4161. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  4162. This could be due to missing scripts or compile error.
  4163. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  4164. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  4165. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  4166. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  4167. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  4168. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  4169. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  4170. Mono: successfully reloaded assembly
  4171. - Completed reload, in 1.170 seconds
  4172. Domain Reload Profiling:
  4173. ReloadAssembly (1170ms)
  4174. BeginReloadAssembly (129ms)
  4175. ExecutionOrderSort (0ms)
  4176. DisableScriptedObjects (6ms)
  4177. BackupInstance (0ms)
  4178. ReleaseScriptingObjects (0ms)
  4179. CreateAndSetChildDomain (35ms)
  4180. EndReloadAssembly (984ms)
  4181. LoadAssemblies (125ms)
  4182. RebuildTransferFunctionScriptingTraits (0ms)
  4183. SetupTypeCache (327ms)
  4184. ReleaseScriptCaches (1ms)
  4185. RebuildScriptCaches (54ms)
  4186. SetupLoadedEditorAssemblies (345ms)
  4187. LogAssemblyErrors (0ms)
  4188. InitializePlatformSupportModulesInManaged (4ms)
  4189. SetLoadedEditorAssemblies (1ms)
  4190. RefreshPlugins (1ms)
  4191. BeforeProcessingInitializeOnLoad (97ms)
  4192. ProcessInitializeOnLoadAttributes (228ms)
  4193. ProcessInitializeOnLoadMethodAttributes (11ms)
  4194. AfterProcessingInitializeOnLoad (3ms)
  4195. EditorAssembliesLoaded (0ms)
  4196. ExecutionOrderSort2 (0ms)
  4197. AwakeInstancesAfterBackupRestoration (26ms)
  4198. Platform modules already initialized, skipping
  4199. Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins.
  4200. Preloading 0 native plugins for Editor in 0.00 ms.
  4201. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  4202. System memory in use before: 248.9 MB.
  4203. System memory in use after: 249.2 MB.
  4204. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4367.
  4205. Total: 3.721000 ms (FindLiveObjects: 0.407400 ms CreateObjectMapping: 0.110000 ms MarkObjects: 3.167500 ms DeleteObjects: 0.035100 ms)
  4206. AssetImportParameters requested are different than current active one (requested -> active):
  4207. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4208. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4209. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4210. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4211. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4212. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4213. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4214. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4215. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4216. ========================================================================
  4217. Received Import Request.
  4218. Time since last request: 382.768641 seconds.
  4219. path: Assets/Scripts/View/SGT_View/SGT_Init.cs
  4220. artifactKey: Guid(b73593dfa0a0a3048aab6f05acacd301) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4221. Start importing Assets/Scripts/View/SGT_View/SGT_Init.cs using Guid(b73593dfa0a0a3048aab6f05acacd301) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '591fbc235bcbab062454d5c2c9b2df20') in 0.007232 seconds
  4222. Import took 0.013391 seconds .
  4223. ========================================================================
  4224. Received Import Request.
  4225. Time since last request: 62.952969 seconds.
  4226. path: Assets/Scripts/View/SGT_View/SGT_Init.cs
  4227. artifactKey: Guid(b73593dfa0a0a3048aab6f05acacd301) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4228. Start importing Assets/Scripts/View/SGT_View/SGT_Init.cs using Guid(b73593dfa0a0a3048aab6f05acacd301) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '74878457d707aca2abe35eb311b2b91f') in 0.002329 seconds
  4229. Import took 0.007557 seconds .
  4230. ========================================================================
  4231. Received Prepare
  4232. Registering precompiled user dll's ...
  4233. Registered in 0.007565 seconds.
  4234. Begin MonoManager ReloadAssembly
  4235. Native extension for WindowsStandalone target not found
  4236. Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
  4237. Preloading 0 native plugins for Editor in 0.00 ms.
  4238. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  4239. This could be due to missing scripts or compile error.
  4240. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  4241. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  4242. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  4243. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  4244. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  4245. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  4246. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  4247. Mono: successfully reloaded assembly
  4248. - Completed reload, in 1.164 seconds
  4249. Domain Reload Profiling:
  4250. ReloadAssembly (1164ms)
  4251. BeginReloadAssembly (126ms)
  4252. ExecutionOrderSort (0ms)
  4253. DisableScriptedObjects (6ms)
  4254. BackupInstance (0ms)
  4255. ReleaseScriptingObjects (0ms)
  4256. CreateAndSetChildDomain (34ms)
  4257. EndReloadAssembly (982ms)
  4258. LoadAssemblies (119ms)
  4259. RebuildTransferFunctionScriptingTraits (0ms)
  4260. SetupTypeCache (321ms)
  4261. ReleaseScriptCaches (2ms)
  4262. RebuildScriptCaches (57ms)
  4263. SetupLoadedEditorAssemblies (349ms)
  4264. LogAssemblyErrors (0ms)
  4265. InitializePlatformSupportModulesInManaged (4ms)
  4266. SetLoadedEditorAssemblies (1ms)
  4267. RefreshPlugins (1ms)
  4268. BeforeProcessingInitializeOnLoad (97ms)
  4269. ProcessInitializeOnLoadAttributes (233ms)
  4270. ProcessInitializeOnLoadMethodAttributes (11ms)
  4271. AfterProcessingInitializeOnLoad (3ms)
  4272. EditorAssembliesLoaded (0ms)
  4273. ExecutionOrderSort2 (0ms)
  4274. AwakeInstancesAfterBackupRestoration (26ms)
  4275. Platform modules already initialized, skipping
  4276. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  4277. Preloading 0 native plugins for Editor in 0.00 ms.
  4278. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  4279. System memory in use before: 249.0 MB.
  4280. System memory in use after: 249.2 MB.
  4281. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4369.
  4282. Total: 3.515800 ms (FindLiveObjects: 0.399300 ms CreateObjectMapping: 0.109500 ms MarkObjects: 2.973300 ms DeleteObjects: 0.032900 ms)
  4283. AssetImportParameters requested are different than current active one (requested -> active):
  4284. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4285. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4286. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4287. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4288. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4289. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4290. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4291. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4292. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4293. ========================================================================
  4294. Received Import Request.
  4295. Time since last request: 59.571901 seconds.
  4296. path: Assets/Scripts/View/SGT_View/SGT_Init.cs
  4297. artifactKey: Guid(b73593dfa0a0a3048aab6f05acacd301) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4298. Start importing Assets/Scripts/View/SGT_View/SGT_Init.cs using Guid(b73593dfa0a0a3048aab6f05acacd301) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9b01d3097354a0827575e7c9bd9101bb') in 0.007456 seconds
  4299. Import took 0.013752 seconds .
  4300. ========================================================================
  4301. Received Prepare
  4302. Registering precompiled user dll's ...
  4303. Registered in 0.007086 seconds.
  4304. Begin MonoManager ReloadAssembly
  4305. Native extension for WindowsStandalone target not found
  4306. Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
  4307. Preloading 0 native plugins for Editor in 0.00 ms.
  4308. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  4309. This could be due to missing scripts or compile error.
  4310. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  4311. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  4312. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  4313. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  4314. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  4315. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  4316. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  4317. Mono: successfully reloaded assembly
  4318. - Completed reload, in 1.165 seconds
  4319. Domain Reload Profiling:
  4320. ReloadAssembly (1166ms)
  4321. BeginReloadAssembly (130ms)
  4322. ExecutionOrderSort (0ms)
  4323. DisableScriptedObjects (6ms)
  4324. BackupInstance (0ms)
  4325. ReleaseScriptingObjects (0ms)
  4326. CreateAndSetChildDomain (38ms)
  4327. EndReloadAssembly (980ms)
  4328. LoadAssemblies (121ms)
  4329. RebuildTransferFunctionScriptingTraits (0ms)
  4330. SetupTypeCache (325ms)
  4331. ReleaseScriptCaches (1ms)
  4332. RebuildScriptCaches (55ms)
  4333. SetupLoadedEditorAssemblies (340ms)
  4334. LogAssemblyErrors (0ms)
  4335. InitializePlatformSupportModulesInManaged (4ms)
  4336. SetLoadedEditorAssemblies (1ms)
  4337. RefreshPlugins (1ms)
  4338. BeforeProcessingInitializeOnLoad (96ms)
  4339. ProcessInitializeOnLoadAttributes (223ms)
  4340. ProcessInitializeOnLoadMethodAttributes (12ms)
  4341. AfterProcessingInitializeOnLoad (3ms)
  4342. EditorAssembliesLoaded (0ms)
  4343. ExecutionOrderSort2 (0ms)
  4344. AwakeInstancesAfterBackupRestoration (27ms)
  4345. Platform modules already initialized, skipping
  4346. Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins.
  4347. Preloading 0 native plugins for Editor in 0.00 ms.
  4348. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  4349. System memory in use before: 249.0 MB.
  4350. System memory in use after: 249.2 MB.
  4351. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4371.
  4352. Total: 3.837800 ms (FindLiveObjects: 0.457200 ms CreateObjectMapping: 0.112100 ms MarkObjects: 3.229800 ms DeleteObjects: 0.037600 ms)
  4353. AssetImportParameters requested are different than current active one (requested -> active):
  4354. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4355. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4356. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4357. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4358. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4359. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4360. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4361. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4362. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4363. ========================================================================
  4364. Received Import Request.
  4365. Time since last request: 48.291744 seconds.
  4366. path: Assets/Scripts/View/SGT_View/SGT_Init.cs
  4367. artifactKey: Guid(b73593dfa0a0a3048aab6f05acacd301) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4368. Start importing Assets/Scripts/View/SGT_View/SGT_Init.cs using Guid(b73593dfa0a0a3048aab6f05acacd301) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd28a794244df459d8ae15bf0da0a443') in 0.007221 seconds
  4369. Import took 0.014123 seconds .
  4370. ========================================================================
  4371. Received Prepare
  4372. Registering precompiled user dll's ...
  4373. Registered in 0.007086 seconds.
  4374. Begin MonoManager ReloadAssembly
  4375. Native extension for WindowsStandalone target not found
  4376. Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins.
  4377. Preloading 0 native plugins for Editor in 0.00 ms.
  4378. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  4379. This could be due to missing scripts or compile error.
  4380. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  4381. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  4382. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  4383. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  4384. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  4385. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  4386. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  4387. Mono: successfully reloaded assembly
  4388. - Completed reload, in 1.144 seconds
  4389. Domain Reload Profiling:
  4390. ReloadAssembly (1144ms)
  4391. BeginReloadAssembly (126ms)
  4392. ExecutionOrderSort (0ms)
  4393. DisableScriptedObjects (8ms)
  4394. BackupInstance (0ms)
  4395. ReleaseScriptingObjects (0ms)
  4396. CreateAndSetChildDomain (34ms)
  4397. EndReloadAssembly (964ms)
  4398. LoadAssemblies (116ms)
  4399. RebuildTransferFunctionScriptingTraits (0ms)
  4400. SetupTypeCache (316ms)
  4401. ReleaseScriptCaches (1ms)
  4402. RebuildScriptCaches (56ms)
  4403. SetupLoadedEditorAssemblies (336ms)
  4404. LogAssemblyErrors (0ms)
  4405. InitializePlatformSupportModulesInManaged (4ms)
  4406. SetLoadedEditorAssemblies (1ms)
  4407. RefreshPlugins (1ms)
  4408. BeforeProcessingInitializeOnLoad (96ms)
  4409. ProcessInitializeOnLoadAttributes (219ms)
  4410. ProcessInitializeOnLoadMethodAttributes (12ms)
  4411. AfterProcessingInitializeOnLoad (3ms)
  4412. EditorAssembliesLoaded (0ms)
  4413. ExecutionOrderSort2 (0ms)
  4414. AwakeInstancesAfterBackupRestoration (26ms)
  4415. Platform modules already initialized, skipping
  4416. Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
  4417. Preloading 0 native plugins for Editor in 0.00 ms.
  4418. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  4419. System memory in use before: 249.0 MB.
  4420. System memory in use after: 249.2 MB.
  4421. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4373.
  4422. Total: 3.646000 ms (FindLiveObjects: 0.410900 ms CreateObjectMapping: 0.110800 ms MarkObjects: 3.090200 ms DeleteObjects: 0.032900 ms)
  4423. AssetImportParameters requested are different than current active one (requested -> active):
  4424. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4425. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4426. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4427. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4428. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4429. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4430. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4431. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4432. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4433. ========================================================================
  4434. Received Import Request.
  4435. Time since last request: 70.633957 seconds.
  4436. path: Assets/Scripts/View/SGT_View/SGT_Init.cs
  4437. artifactKey: Guid(b73593dfa0a0a3048aab6f05acacd301) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4438. Start importing Assets/Scripts/View/SGT_View/SGT_Init.cs using Guid(b73593dfa0a0a3048aab6f05acacd301) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a22554b41b4cf945b80ad7bfddf6a07') in 0.006881 seconds
  4439. Import took 0.013240 seconds .
  4440. ========================================================================
  4441. Received Prepare
  4442. Registering precompiled user dll's ...
  4443. Registered in 0.007850 seconds.
  4444. Begin MonoManager ReloadAssembly
  4445. Native extension for WindowsStandalone target not found
  4446. Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins.
  4447. Preloading 0 native plugins for Editor in 0.00 ms.
  4448. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  4449. This could be due to missing scripts or compile error.
  4450. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  4451. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  4452. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  4453. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  4454. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  4455. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  4456. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  4457. Mono: successfully reloaded assembly
  4458. - Completed reload, in 1.319 seconds
  4459. Domain Reload Profiling:
  4460. ReloadAssembly (1320ms)
  4461. BeginReloadAssembly (131ms)
  4462. ExecutionOrderSort (0ms)
  4463. DisableScriptedObjects (7ms)
  4464. BackupInstance (0ms)
  4465. ReleaseScriptingObjects (0ms)
  4466. CreateAndSetChildDomain (37ms)
  4467. EndReloadAssembly (1122ms)
  4468. LoadAssemblies (125ms)
  4469. RebuildTransferFunctionScriptingTraits (0ms)
  4470. SetupTypeCache (365ms)
  4471. ReleaseScriptCaches (2ms)
  4472. RebuildScriptCaches (68ms)
  4473. SetupLoadedEditorAssemblies (403ms)
  4474. LogAssemblyErrors (0ms)
  4475. InitializePlatformSupportModulesInManaged (5ms)
  4476. SetLoadedEditorAssemblies (1ms)
  4477. RefreshPlugins (1ms)
  4478. BeforeProcessingInitializeOnLoad (113ms)
  4479. ProcessInitializeOnLoadAttributes (268ms)
  4480. ProcessInitializeOnLoadMethodAttributes (12ms)
  4481. AfterProcessingInitializeOnLoad (3ms)
  4482. EditorAssembliesLoaded (0ms)
  4483. ExecutionOrderSort2 (0ms)
  4484. AwakeInstancesAfterBackupRestoration (29ms)
  4485. Platform modules already initialized, skipping
  4486. Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins.
  4487. Preloading 0 native plugins for Editor in 0.00 ms.
  4488. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  4489. System memory in use before: 249.0 MB.
  4490. System memory in use after: 249.2 MB.
  4491. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4375.
  4492. Total: 4.229600 ms (FindLiveObjects: 0.508100 ms CreateObjectMapping: 0.124000 ms MarkObjects: 3.555100 ms DeleteObjects: 0.041100 ms)
  4493. AssetImportParameters requested are different than current active one (requested -> active):
  4494. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4495. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4496. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4497. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4498. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4499. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4500. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4501. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4502. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4503. ========================================================================
  4504. Received Prepare
  4505. Registering precompiled user dll's ...
  4506. Registered in 0.008067 seconds.
  4507. Begin MonoManager ReloadAssembly
  4508. Native extension for WindowsStandalone target not found
  4509. Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins.
  4510. Preloading 0 native plugins for Editor in 0.00 ms.
  4511. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  4512. This could be due to missing scripts or compile error.
  4513. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  4514. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  4515. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  4516. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  4517. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  4518. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  4519. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  4520. Mono: successfully reloaded assembly
  4521. - Completed reload, in 1.287 seconds
  4522. Domain Reload Profiling:
  4523. ReloadAssembly (1287ms)
  4524. BeginReloadAssembly (140ms)
  4525. ExecutionOrderSort (0ms)
  4526. DisableScriptedObjects (6ms)
  4527. BackupInstance (0ms)
  4528. ReleaseScriptingObjects (0ms)
  4529. CreateAndSetChildDomain (40ms)
  4530. EndReloadAssembly (1086ms)
  4531. LoadAssemblies (137ms)
  4532. RebuildTransferFunctionScriptingTraits (0ms)
  4533. SetupTypeCache (361ms)
  4534. ReleaseScriptCaches (1ms)
  4535. RebuildScriptCaches (59ms)
  4536. SetupLoadedEditorAssemblies (379ms)
  4537. LogAssemblyErrors (0ms)
  4538. InitializePlatformSupportModulesInManaged (4ms)
  4539. SetLoadedEditorAssemblies (1ms)
  4540. RefreshPlugins (1ms)
  4541. BeforeProcessingInitializeOnLoad (108ms)
  4542. ProcessInitializeOnLoadAttributes (248ms)
  4543. ProcessInitializeOnLoadMethodAttributes (14ms)
  4544. AfterProcessingInitializeOnLoad (3ms)
  4545. EditorAssembliesLoaded (0ms)
  4546. ExecutionOrderSort2 (0ms)
  4547. AwakeInstancesAfterBackupRestoration (30ms)
  4548. Platform modules already initialized, skipping
  4549. Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins.
  4550. Preloading 0 native plugins for Editor in 0.00 ms.
  4551. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  4552. System memory in use before: 249.0 MB.
  4553. System memory in use after: 249.2 MB.
  4554. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4377.
  4555. Total: 3.855700 ms (FindLiveObjects: 0.446900 ms CreateObjectMapping: 0.109400 ms MarkObjects: 3.259700 ms DeleteObjects: 0.038600 ms)
  4556. AssetImportParameters requested are different than current active one (requested -> active):
  4557. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4558. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4559. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4560. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4561. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4562. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4563. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4564. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4565. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4566. ========================================================================
  4567. Received Prepare
  4568. Registering precompiled user dll's ...
  4569. Registered in 0.008342 seconds.
  4570. Begin MonoManager ReloadAssembly
  4571. Native extension for WindowsStandalone target not found
  4572. Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins.
  4573. Preloading 0 native plugins for Editor in 0.00 ms.
  4574. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  4575. This could be due to missing scripts or compile error.
  4576. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  4577. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  4578. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  4579. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  4580. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  4581. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  4582. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  4583. Mono: successfully reloaded assembly
  4584. - Completed reload, in 1.278 seconds
  4585. Domain Reload Profiling:
  4586. ReloadAssembly (1278ms)
  4587. BeginReloadAssembly (141ms)
  4588. ExecutionOrderSort (0ms)
  4589. DisableScriptedObjects (6ms)
  4590. BackupInstance (0ms)
  4591. ReleaseScriptingObjects (0ms)
  4592. CreateAndSetChildDomain (40ms)
  4593. EndReloadAssembly (1075ms)
  4594. LoadAssemblies (148ms)
  4595. RebuildTransferFunctionScriptingTraits (0ms)
  4596. SetupTypeCache (353ms)
  4597. ReleaseScriptCaches (1ms)
  4598. RebuildScriptCaches (62ms)
  4599. SetupLoadedEditorAssemblies (371ms)
  4600. LogAssemblyErrors (0ms)
  4601. InitializePlatformSupportModulesInManaged (4ms)
  4602. SetLoadedEditorAssemblies (1ms)
  4603. RefreshPlugins (1ms)
  4604. BeforeProcessingInitializeOnLoad (106ms)
  4605. ProcessInitializeOnLoadAttributes (243ms)
  4606. ProcessInitializeOnLoadMethodAttributes (14ms)
  4607. AfterProcessingInitializeOnLoad (3ms)
  4608. EditorAssembliesLoaded (0ms)
  4609. ExecutionOrderSort2 (0ms)
  4610. AwakeInstancesAfterBackupRestoration (29ms)
  4611. Platform modules already initialized, skipping
  4612. Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins.
  4613. Preloading 0 native plugins for Editor in 0.00 ms.
  4614. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  4615. System memory in use before: 249.0 MB.
  4616. System memory in use after: 249.2 MB.
  4617. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4379.
  4618. Total: 3.780100 ms (FindLiveObjects: 0.423400 ms CreateObjectMapping: 0.111400 ms MarkObjects: 3.210500 ms DeleteObjects: 0.033700 ms)
  4619. AssetImportParameters requested are different than current active one (requested -> active):
  4620. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4621. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4622. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4623. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4624. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4625. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4626. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4627. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4628. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4629. ========================================================================
  4630. Received Prepare
  4631. Registering precompiled user dll's ...
  4632. Registered in 0.008961 seconds.
  4633. Begin MonoManager ReloadAssembly
  4634. Native extension for WindowsStandalone target not found
  4635. Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins.
  4636. Preloading 0 native plugins for Editor in 0.00 ms.
  4637. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  4638. This could be due to missing scripts or compile error.
  4639. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  4640. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  4641. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  4642. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  4643. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  4644. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  4645. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  4646. Mono: successfully reloaded assembly
  4647. - Completed reload, in 1.334 seconds
  4648. Domain Reload Profiling:
  4649. ReloadAssembly (1335ms)
  4650. BeginReloadAssembly (149ms)
  4651. ExecutionOrderSort (0ms)
  4652. DisableScriptedObjects (7ms)
  4653. BackupInstance (0ms)
  4654. ReleaseScriptingObjects (0ms)
  4655. CreateAndSetChildDomain (41ms)
  4656. EndReloadAssembly (1122ms)
  4657. LoadAssemblies (160ms)
  4658. RebuildTransferFunctionScriptingTraits (0ms)
  4659. SetupTypeCache (361ms)
  4660. ReleaseScriptCaches (1ms)
  4661. RebuildScriptCaches (58ms)
  4662. SetupLoadedEditorAssemblies (395ms)
  4663. LogAssemblyErrors (0ms)
  4664. InitializePlatformSupportModulesInManaged (4ms)
  4665. SetLoadedEditorAssemblies (1ms)
  4666. RefreshPlugins (1ms)
  4667. BeforeProcessingInitializeOnLoad (110ms)
  4668. ProcessInitializeOnLoadAttributes (261ms)
  4669. ProcessInitializeOnLoadMethodAttributes (13ms)
  4670. AfterProcessingInitializeOnLoad (4ms)
  4671. EditorAssembliesLoaded (0ms)
  4672. ExecutionOrderSort2 (0ms)
  4673. AwakeInstancesAfterBackupRestoration (30ms)
  4674. Platform modules already initialized, skipping
  4675. Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins.
  4676. Preloading 0 native plugins for Editor in 0.00 ms.
  4677. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  4678. System memory in use before: 249.0 MB.
  4679. System memory in use after: 249.2 MB.
  4680. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4381.
  4681. Total: 4.480100 ms (FindLiveObjects: 0.512700 ms CreateObjectMapping: 0.123800 ms MarkObjects: 3.798400 ms DeleteObjects: 0.043200 ms)
  4682. AssetImportParameters requested are different than current active one (requested -> active):
  4683. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4684. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4685. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4686. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4687. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4688. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4689. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4690. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4691. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4692. ========================================================================
  4693. Received Prepare
  4694. Refreshing native plugins compatible for Editor in 6.80 ms, found 3 plugins.
  4695. Preloading 0 native plugins for Editor in 0.00 ms.
  4696. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  4697. System memory in use before: 179.3 MB.
  4698. System memory in use after: 179.6 MB.
  4699. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4381.
  4700. Total: 3.699900 ms (FindLiveObjects: 0.431100 ms CreateObjectMapping: 0.111200 ms MarkObjects: 3.130400 ms DeleteObjects: 0.026400 ms)
  4701. AssetImportParameters requested are different than current active one (requested -> active):
  4702. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4703. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4704. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4705. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4706. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4707. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4708. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4709. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4710. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4711. ========================================================================
  4712. Received Prepare
  4713. Refreshing native plugins compatible for Editor in 7.10 ms, found 3 plugins.
  4714. Preloading 0 native plugins for Editor in 0.00 ms.
  4715. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  4716. System memory in use before: 179.3 MB.
  4717. System memory in use after: 179.6 MB.
  4718. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4381.
  4719. Total: 3.964200 ms (FindLiveObjects: 0.433400 ms CreateObjectMapping: 0.114600 ms MarkObjects: 3.384000 ms DeleteObjects: 0.031200 ms)
  4720. AssetImportParameters requested are different than current active one (requested -> active):
  4721. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4722. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4723. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4724. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4725. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4726. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4727. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4728. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4729. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4730. ========================================================================
  4731. Received Prepare
  4732. Refreshing native plugins compatible for Editor in 6.36 ms, found 3 plugins.
  4733. Preloading 0 native plugins for Editor in 0.00 ms.
  4734. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  4735. System memory in use before: 179.3 MB.
  4736. System memory in use after: 179.6 MB.
  4737. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4381.
  4738. Total: 3.630800 ms (FindLiveObjects: 0.418600 ms CreateObjectMapping: 0.116200 ms MarkObjects: 3.065800 ms DeleteObjects: 0.029200 ms)
  4739. AssetImportParameters requested are different than current active one (requested -> active):
  4740. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4741. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4742. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4743. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4744. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4745. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4746. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4747. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4748. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4749. ========================================================================
  4750. Received Prepare
  4751. Refreshing native plugins compatible for Editor in 6.30 ms, found 3 plugins.
  4752. Preloading 0 native plugins for Editor in 0.00 ms.
  4753. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  4754. System memory in use before: 179.3 MB.
  4755. System memory in use after: 179.6 MB.
  4756. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4381.
  4757. Total: 3.676000 ms (FindLiveObjects: 0.421300 ms CreateObjectMapping: 0.114100 ms MarkObjects: 3.115600 ms DeleteObjects: 0.024300 ms)
  4758. AssetImportParameters requested are different than current active one (requested -> active):
  4759. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4760. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4761. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4762. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4763. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4764. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4765. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4766. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4767. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4768. ========================================================================
  4769. Received Prepare
  4770. Refreshing native plugins compatible for Editor in 6.48 ms, found 3 plugins.
  4771. Preloading 0 native plugins for Editor in 0.00 ms.
  4772. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  4773. System memory in use before: 179.3 MB.
  4774. System memory in use after: 179.6 MB.
  4775. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4381.
  4776. Total: 3.839200 ms (FindLiveObjects: 0.430600 ms CreateObjectMapping: 0.115100 ms MarkObjects: 3.271000 ms DeleteObjects: 0.021700 ms)
  4777. AssetImportParameters requested are different than current active one (requested -> active):
  4778. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4779. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4780. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4781. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4782. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4783. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4784. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4785. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4786. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4787. ========================================================================
  4788. Received Prepare
  4789. Refreshing native plugins compatible for Editor in 7.13 ms, found 3 plugins.
  4790. Preloading 0 native plugins for Editor in 0.00 ms.
  4791. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  4792. System memory in use before: 179.3 MB.
  4793. System memory in use after: 179.6 MB.
  4794. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4381.
  4795. Total: 3.583500 ms (FindLiveObjects: 0.427000 ms CreateObjectMapping: 0.114600 ms MarkObjects: 3.017600 ms DeleteObjects: 0.023000 ms)
  4796. AssetImportParameters requested are different than current active one (requested -> active):
  4797. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4798. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4799. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4800. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4801. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4802. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4803. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4804. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4805. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4806. ========================================================================
  4807. Received Import Request.
  4808. Time since last request: 722.170119 seconds.
  4809. path: Assets/Rec/ui/texture/ViewTex/Main/state/2点.png
  4810. artifactKey: Guid(0c70000f7a011d445b0935c0a29cc88d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4811. Start importing Assets/Rec/ui/texture/ViewTex/Main/state/2点.png using Guid(0c70000f7a011d445b0935c0a29cc88d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6f6568646f47897cd4b8d04909459571') in 0.566641 seconds
  4812. Import took 0.574717 seconds .
  4813. ========================================================================
  4814. Received Import Request.
  4815. Time since last request: 0.000197 seconds.
  4816. path: Assets/Rec/ui/texture/ViewTex/bg_camera/bg_di.jpg
  4817. artifactKey: Guid(779efcd9109b764409f298cfee1b1af2) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4818. Start importing Assets/Rec/ui/texture/ViewTex/bg_camera/bg_di.jpg using Guid(779efcd9109b764409f298cfee1b1af2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c0b32976a679702af435179ad2565f9d') in 0.026596 seconds
  4819. Import took 0.031792 seconds .
  4820. ========================================================================
  4821. Received Import Request.
  4822. Time since last request: 0.000198 seconds.
  4823. path: Assets/Rec/ui/texture/ViewTex/Main/state/3点.png
  4824. artifactKey: Guid(6ce44d57cabd73e4ab10f904353cab2a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4825. Start importing Assets/Rec/ui/texture/ViewTex/Main/state/3点.png using Guid(6ce44d57cabd73e4ab10f904353cab2a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cc52b22d8245446b538b876660a896f4') in 0.029879 seconds
  4826. Import took 0.035260 seconds .
  4827. ========================================================================
  4828. Received Import Request.
  4829. Time since last request: 2508.904105 seconds.
  4830. path: Assets/Scripts/Manager/SocketManager.cs
  4831. artifactKey: Guid(d58db46d22116674caf32decc0902a8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4832. Start importing Assets/Scripts/Manager/SocketManager.cs using Guid(d58db46d22116674caf32decc0902a8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3764de73952183c64a8ac84578f111a6') in 0.002595 seconds
  4833. Import took 0.008848 seconds .
  4834. ========================================================================
  4835. Received Prepare
  4836. Registering precompiled user dll's ...
  4837. Registered in 0.007496 seconds.
  4838. Begin MonoManager ReloadAssembly
  4839. Native extension for WindowsStandalone target not found
  4840. Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins.
  4841. Preloading 0 native plugins for Editor in 0.00 ms.
  4842. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  4843. This could be due to missing scripts or compile error.
  4844. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  4845. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  4846. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  4847. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  4848. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  4849. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  4850. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  4851. Mono: successfully reloaded assembly
  4852. - Completed reload, in 1.324 seconds
  4853. Domain Reload Profiling:
  4854. ReloadAssembly (1324ms)
  4855. BeginReloadAssembly (144ms)
  4856. ExecutionOrderSort (0ms)
  4857. DisableScriptedObjects (5ms)
  4858. BackupInstance (0ms)
  4859. ReleaseScriptingObjects (0ms)
  4860. CreateAndSetChildDomain (54ms)
  4861. EndReloadAssembly (1125ms)
  4862. LoadAssemblies (128ms)
  4863. RebuildTransferFunctionScriptingTraits (0ms)
  4864. SetupTypeCache (357ms)
  4865. ReleaseScriptCaches (2ms)
  4866. RebuildScriptCaches (67ms)
  4867. SetupLoadedEditorAssemblies (390ms)
  4868. LogAssemblyErrors (0ms)
  4869. InitializePlatformSupportModulesInManaged (5ms)
  4870. SetLoadedEditorAssemblies (1ms)
  4871. RefreshPlugins (1ms)
  4872. BeforeProcessingInitializeOnLoad (106ms)
  4873. ProcessInitializeOnLoadAttributes (260ms)
  4874. ProcessInitializeOnLoadMethodAttributes (12ms)
  4875. AfterProcessingInitializeOnLoad (3ms)
  4876. EditorAssembliesLoaded (0ms)
  4877. ExecutionOrderSort2 (0ms)
  4878. AwakeInstancesAfterBackupRestoration (29ms)
  4879. Platform modules already initialized, skipping
  4880. Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
  4881. Preloading 0 native plugins for Editor in 0.00 ms.
  4882. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  4883. System memory in use before: 249.0 MB.
  4884. System memory in use after: 249.3 MB.
  4885. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4387.
  4886. Total: 4.374800 ms (FindLiveObjects: 0.451200 ms CreateObjectMapping: 0.113800 ms MarkObjects: 3.767800 ms DeleteObjects: 0.039200 ms)
  4887. AssetImportParameters requested are different than current active one (requested -> active):
  4888. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4889. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4890. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4891. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4892. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4893. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4894. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4895. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4896. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4897. ========================================================================
  4898. Received Prepare
  4899. Registering precompiled user dll's ...
  4900. Registered in 0.007083 seconds.
  4901. Begin MonoManager ReloadAssembly
  4902. Native extension for WindowsStandalone target not found
  4903. Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins.
  4904. Preloading 0 native plugins for Editor in 0.00 ms.
  4905. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  4906. This could be due to missing scripts or compile error.
  4907. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  4908. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  4909. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  4910. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  4911. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  4912. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  4913. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  4914. Mono: successfully reloaded assembly
  4915. - Completed reload, in 1.245 seconds
  4916. Domain Reload Profiling:
  4917. ReloadAssembly (1245ms)
  4918. BeginReloadAssembly (130ms)
  4919. ExecutionOrderSort (0ms)
  4920. DisableScriptedObjects (7ms)
  4921. BackupInstance (0ms)
  4922. ReleaseScriptingObjects (0ms)
  4923. CreateAndSetChildDomain (37ms)
  4924. EndReloadAssembly (1056ms)
  4925. LoadAssemblies (124ms)
  4926. RebuildTransferFunctionScriptingTraits (0ms)
  4927. SetupTypeCache (355ms)
  4928. ReleaseScriptCaches (1ms)
  4929. RebuildScriptCaches (62ms)
  4930. SetupLoadedEditorAssemblies (375ms)
  4931. LogAssemblyErrors (0ms)
  4932. InitializePlatformSupportModulesInManaged (4ms)
  4933. SetLoadedEditorAssemblies (1ms)
  4934. RefreshPlugins (1ms)
  4935. BeforeProcessingInitializeOnLoad (109ms)
  4936. ProcessInitializeOnLoadAttributes (245ms)
  4937. ProcessInitializeOnLoadMethodAttributes (11ms)
  4938. AfterProcessingInitializeOnLoad (4ms)
  4939. EditorAssembliesLoaded (0ms)
  4940. ExecutionOrderSort2 (0ms)
  4941. AwakeInstancesAfterBackupRestoration (28ms)
  4942. Platform modules already initialized, skipping
  4943. Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins.
  4944. Preloading 0 native plugins for Editor in 0.00 ms.
  4945. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  4946. System memory in use before: 249.0 MB.
  4947. System memory in use after: 249.3 MB.
  4948. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4389.
  4949. Total: 3.838100 ms (FindLiveObjects: 0.422100 ms CreateObjectMapping: 0.115100 ms MarkObjects: 3.261400 ms DeleteObjects: 0.038300 ms)
  4950. AssetImportParameters requested are different than current active one (requested -> active):
  4951. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4952. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4953. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4954. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4955. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4956. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4957. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4958. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4959. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4960. ========================================================================
  4961. Received Import Request.
  4962. Time since last request: 121.677690 seconds.
  4963. path: Assets/Resources/锅炉.png
  4964. artifactKey: Guid(c1fb8d83ac6f6d04e80a9e03ba9af8b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4965. Start importing Assets/Resources/锅炉.png using Guid(c1fb8d83ac6f6d04e80a9e03ba9af8b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f551fa14ecca1d9ac84c8fc2a20f033b') in 0.072819 seconds
  4966. Import took 0.078908 seconds .
  4967. ========================================================================
  4968. Received Import Request.
  4969. Time since last request: 9.049729 seconds.
  4970. path: Assets/Resources/锅炉.png
  4971. artifactKey: Guid(c1fb8d83ac6f6d04e80a9e03ba9af8b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4972. Start importing Assets/Resources/锅炉.png using Guid(c1fb8d83ac6f6d04e80a9e03ba9af8b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '980b1eebe32de7224d0a2f4aa423ad46') in 0.039705 seconds
  4973. Import took 0.045241 seconds .
  4974. ========================================================================
  4975. Received Import Request.
  4976. Time since last request: 11.535678 seconds.
  4977. path: Assets/Rec/ui/texture/SpecialEffects/Fire_Sprites_v2.png
  4978. artifactKey: Guid(f973743f7ae27464eb24321839d906f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4979. Start importing Assets/Rec/ui/texture/SpecialEffects/Fire_Sprites_v2.png using Guid(f973743f7ae27464eb24321839d906f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c4fc0db1b94c84ffe508b2d70456732') in 0.023118 seconds
  4980. Import took 0.030050 seconds .
  4981. ========================================================================
  4982. Received Import Request.
  4983. Time since last request: 0.000177 seconds.
  4984. path: Assets/DOTween/Editor/Imgs/Footer.png
  4985. artifactKey: Guid(39a17c534c581504ea38784a83b87f50) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4986. Start importing Assets/DOTween/Editor/Imgs/Footer.png using Guid(39a17c534c581504ea38784a83b87f50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ce5fc22a84b2f2b19fdf2a289cb62df9') in 0.022384 seconds
  4987. Import took 0.027760 seconds .
  4988. ========================================================================
  4989. Received Import Request.
  4990. Time since last request: 0.355304 seconds.
  4991. path: Assets/DOTween/Editor/Imgs/Footer_dark.png
  4992. artifactKey: Guid(bec26e6cedf39e7468d9960894bbeb14) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  4993. Start importing Assets/DOTween/Editor/Imgs/Footer_dark.png using Guid(bec26e6cedf39e7468d9960894bbeb14) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1a2b4811c77b0dba24f3bc125e9ff7e4') in 0.012163 seconds
  4994. Import took 0.019057 seconds .
  4995. ========================================================================
  4996. Received Import Request.
  4997. Time since last request: 0.000277 seconds.
  4998. path: Assets/DOTween/Editor/Imgs/Header.jpg
  4999. artifactKey: Guid(52eef5bb8db91354f8ada931eb3d621b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5000. Start importing Assets/DOTween/Editor/Imgs/Header.jpg using Guid(52eef5bb8db91354f8ada931eb3d621b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e6e1d849849a998179781615a4dec508') in 0.022924 seconds
  5001. Import took 0.028874 seconds .
  5002. ========================================================================
  5003. Received Import Request.
  5004. Time since last request: 1.234910 seconds.
  5005. path: Assets/Rec/Export3/IMG_9701.JPG.tga
  5006. artifactKey: Guid(ea97fde3ac6524c43bbffa05205f2cb6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5007. Start importing Assets/Rec/Export3/IMG_9701.JPG.tga using Guid(ea97fde3ac6524c43bbffa05205f2cb6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b74e67b80e13b83592c3f808c10a1051') in 0.022585 seconds
  5008. Import took 0.028836 seconds .
  5009. ========================================================================
  5010. Received Import Request.
  5011. Time since last request: 0.000220 seconds.
  5012. path: Assets/Rec/Texture/J_circ_pump/J_circ_pump_A003.Bmp
  5013. artifactKey: Guid(94eee07138cf4174f9da66b687d76ef0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5014. Start importing Assets/Rec/Texture/J_circ_pump/J_circ_pump_A003.Bmp using Guid(94eee07138cf4174f9da66b687d76ef0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4b9f161d989732bd408835253d3bf810') in 0.018313 seconds
  5015. Import took 0.023395 seconds .
  5016. ========================================================================
  5017. Received Import Request.
  5018. Time since last request: 0.000187 seconds.
  5019. path: Assets/Rec/Texture/M_water_heater/M_water_heater_A001.Png
  5020. artifactKey: Guid(6939f0c3d82445f4a8a06d95c4d7e1cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5021. Start importing Assets/Rec/Texture/M_water_heater/M_water_heater_A001.Png using Guid(6939f0c3d82445f4a8a06d95c4d7e1cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b29551939a000988386557af7af209a6') in 0.018311 seconds
  5022. Import took 0.023144 seconds .
  5023. ========================================================================
  5024. Received Import Request.
  5025. Time since last request: 0.000231 seconds.
  5026. path: Assets/Rec/Export3/jianpan.jpg.tga
  5027. artifactKey: Guid(1b8fe9a05467dd84cbf3544b96359996) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5028. Start importing Assets/Rec/Export3/jianpan.jpg.tga using Guid(1b8fe9a05467dd84cbf3544b96359996) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6dbf24fd509b1a44d66d413c066d45ab') in 0.008884 seconds
  5029. Import took 0.014547 seconds .
  5030. ========================================================================
  5031. Received Import Request.
  5032. Time since last request: 0.000282 seconds.
  5033. path: Assets/Rec/Texture/K_boost_fw_pump/K_boost_fw_pump_A004.Bmp
  5034. artifactKey: Guid(41074b82c1b8de141bb1d471bd4fbb51) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5035. Start importing Assets/Rec/Texture/K_boost_fw_pump/K_boost_fw_pump_A004.Bmp using Guid(41074b82c1b8de141bb1d471bd4fbb51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '47e4ca5b6757323c1dff3795693784d5') in 0.009241 seconds
  5036. Import took 0.015182 seconds .
  5037. ========================================================================
  5038. Received Import Request.
  5039. Time since last request: 0.000174 seconds.
  5040. path: Assets/Rec/Texture/K_boost_fw_pump/K_boost_fw_pump_A001.Bmp
  5041. artifactKey: Guid(f42cf69fee0cf1d4d8ab6f3e0bab8166) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5042. Start importing Assets/Rec/Texture/K_boost_fw_pump/K_boost_fw_pump_A001.Bmp using Guid(f42cf69fee0cf1d4d8ab6f3e0bab8166) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a461b4fb85454c77dac930235fa1f337') in 0.011125 seconds
  5043. Import took 0.017026 seconds .
  5044. ========================================================================
  5045. Received Import Request.
  5046. Time since last request: 7.738431 seconds.
  5047. path: Assets/Rec/Export3/上锅炉_vray.jpg.tga
  5048. artifactKey: Guid(ae95e67473dcdf0458d876a4f33412d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5049. Start importing Assets/Rec/Export3/上锅炉_vray.jpg.tga using Guid(ae95e67473dcdf0458d876a4f33412d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4711bdf51aeebc0a322fe67d1aa30d80') in 0.015241 seconds
  5050. Import took 0.021521 seconds .
  5051. ========================================================================
  5052. Received Import Request.
  5053. Time since last request: 0.000236 seconds.
  5054. path: Assets/Rec/Export3/锅炉排污闸阀.jpg.tga
  5055. artifactKey: Guid(6500049b4cd05e04cb2d7206c6cc5fd2) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5056. Start importing Assets/Rec/Export3/锅炉排污闸阀.jpg.tga using Guid(6500049b4cd05e04cb2d7206c6cc5fd2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e04f1b320360b8320da00f8dec509e8f') in 0.021191 seconds
  5057. Import took 0.026046 seconds .
  5058. ========================================================================
  5059. Received Import Request.
  5060. Time since last request: 0.000207 seconds.
  5061. path: Assets/Rec/Export3/锅炉主体_vray.jpg.tga
  5062. artifactKey: Guid(4f3e826fa92f6e346bba6bff7937ddc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5063. Start importing Assets/Rec/Export3/锅炉主体_vray.jpg.tga using Guid(4f3e826fa92f6e346bba6bff7937ddc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9a3a497ea6e41e49428506f81c9b5d0') in 0.010807 seconds
  5064. Import took 0.016358 seconds .
  5065. ========================================================================
  5066. Received Import Request.
  5067. Time since last request: 0.000170 seconds.
  5068. path: Assets/Rec/Export3/下锅炉_vray.jpg.tga
  5069. artifactKey: Guid(5144a6b09bc7ec046a3d02655a3ee9ea) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5070. Start importing Assets/Rec/Export3/下锅炉_vray.jpg.tga using Guid(5144a6b09bc7ec046a3d02655a3ee9ea) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '950a3ed0d367f029debafc16729f9204') in 0.012611 seconds
  5071. Import took 0.017922 seconds .
  5072. ========================================================================
  5073. Received Import Request.
  5074. Time since last request: 0.000236 seconds.
  5075. path: Assets/Rec/Export3/锅炉旁边管子_vray.jpg.tga
  5076. artifactKey: Guid(77622a8648ac1ed45851efba86efc9fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5077. Start importing Assets/Rec/Export3/锅炉旁边管子_vray.jpg.tga using Guid(77622a8648ac1ed45851efba86efc9fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08d78f6e0bc3844204716a71596c7342') in 0.010470 seconds
  5078. Import took 0.015518 seconds .
  5079. ========================================================================
  5080. Received Import Request.
  5081. Time since last request: 0.000173 seconds.
  5082. path: Assets/Rec/Export3/中压锅炉给水电动调节阀.jpg.tga
  5083. artifactKey: Guid(1d0e26c2de1736f42b6cabf904fadd37) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5084. Start importing Assets/Rec/Export3/中压锅炉给水电动调节阀.jpg.tga using Guid(1d0e26c2de1736f42b6cabf904fadd37) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e90773c8e3327fb23452d60f2bd6e347') in 0.008452 seconds
  5085. Import took 0.013570 seconds .
  5086. ========================================================================
  5087. Received Import Request.
  5088. Time since last request: 0.000176 seconds.
  5089. path: Assets/Rec/Export3/增压锅炉燃烧器.jpg.tga
  5090. artifactKey: Guid(640298a75e928c64ca8555ad0b723f8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5091. Start importing Assets/Rec/Export3/增压锅炉燃烧器.jpg.tga using Guid(640298a75e928c64ca8555ad0b723f8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1df430422c6cf29b1b439872da33e9b8') in 0.009683 seconds
  5092. Import took 0.014722 seconds .
  5093. ========================================================================
  5094. Received Import Request.
  5095. Time since last request: 0.000175 seconds.
  5096. path: Assets/Rec/Export3/锅炉排污扩容器VR.tga.tga
  5097. artifactKey: Guid(dea15ec9cf9c25d45b2b8f7f1347f043) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5098. Start importing Assets/Rec/Export3/锅炉排污扩容器VR.tga.tga using Guid(dea15ec9cf9c25d45b2b8f7f1347f043) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '46918a47bf97cbef3b60cb37f7508cfa') in 0.009690 seconds
  5099. Import took 0.014780 seconds .
  5100. ========================================================================
  5101. Received Import Request.
  5102. Time since last request: 0.000177 seconds.
  5103. path: Assets/Rec/Export3/锅炉排污扩容器.jpg.tga
  5104. artifactKey: Guid(669479544bf63814b9cd71fb62e18e71) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5105. Start importing Assets/Rec/Export3/锅炉排污扩容器.jpg.tga using Guid(669479544bf63814b9cd71fb62e18e71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '10dc8a1d6a462db8ac1e48b4661853f8') in 0.013525 seconds
  5106. Import took 0.018561 seconds .
  5107. ========================================================================
  5108. Received Import Request.
  5109. Time since last request: 28.770654 seconds.
  5110. path: Assets/Rec/Export3/铁架08VR.tga.tga
  5111. artifactKey: Guid(ca3b3b5964b88094997f6123075b7e39) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5112. Start importing Assets/Rec/Export3/铁架08VR.tga.tga using Guid(ca3b3b5964b88094997f6123075b7e39) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e23ea3063a46d55709e94444c1a28c0e') in 0.013294 seconds
  5113. Import took 0.019365 seconds .
  5114. ========================================================================
  5115. Received Import Request.
  5116. Time since last request: 0.000215 seconds.
  5117. path: Assets/Rec/Export3/铁架12VR.tga.tga
  5118. artifactKey: Guid(1ebb339a420fb1c42afbe292ce202c1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5119. Start importing Assets/Rec/Export3/铁架12VR.tga.tga using Guid(1ebb339a420fb1c42afbe292ce202c1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e1d258a4709321da793a38844052467b') in 0.085065 seconds
  5120. Import took 0.090817 seconds .
  5121. ========================================================================
  5122. Received Import Request.
  5123. Time since last request: 0.000317 seconds.
  5124. path: Assets/Rec/Export3/门01VR_完整贴图.tga.tga
  5125. artifactKey: Guid(87a3c722bd15ecd43929a4cdcbc45f5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5126. Start importing Assets/Rec/Export3/门01VR_完整贴图.tga.tga using Guid(87a3c722bd15ecd43929a4cdcbc45f5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e0a17c362d60ee26dc5c03166ce038bf') in 0.009738 seconds
  5127. Import took 0.015837 seconds .
  5128. ========================================================================
  5129. Received Import Request.
  5130. Time since last request: 0.000178 seconds.
  5131. path: Assets/Rec/Export3/门05VR_完整贴图.tga.tga
  5132. artifactKey: Guid(0165fab9536a28546b8890e0c807efe1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5133. Start importing Assets/Rec/Export3/门05VR_完整贴图.tga.tga using Guid(0165fab9536a28546b8890e0c807efe1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c8811b98d8d37fd1f7387dda6ec3768e') in 0.008817 seconds
  5134. Import took 0.014137 seconds .
  5135. ========================================================================
  5136. Received Import Request.
  5137. Time since last request: 0.000171 seconds.
  5138. path: Assets/Rec/Export3/铁架09VR.tga.tga
  5139. artifactKey: Guid(22719515f3c55494da6aa34df3492e2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5140. Start importing Assets/Rec/Export3/铁架09VR.tga.tga using Guid(22719515f3c55494da6aa34df3492e2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0fe2c840dd9fc554b37bdade6c0be77e') in 0.010094 seconds
  5141. Import took 0.015372 seconds .
  5142. ========================================================================
  5143. Received Import Request.
  5144. Time since last request: 0.000174 seconds.
  5145. path: Assets/Rec/Export3/锅黑AS-0390.jpg.tga
  5146. artifactKey: Guid(7a0afdfe32679b144b2547745ed41046) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5147. Start importing Assets/Rec/Export3/锅黑AS-0390.jpg.tga using Guid(7a0afdfe32679b144b2547745ed41046) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '307d63e601c2052b3115119d9da34877') in 0.008173 seconds
  5148. Import took 0.013701 seconds .
  5149. ========================================================================
  5150. Received Import Request.
  5151. Time since last request: 0.000179 seconds.
  5152. path: Assets/Rec/Export3/铁架11VR.tga.tga
  5153. artifactKey: Guid(da9282c79a52b6344971fe362aafcdd4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5154. Start importing Assets/Rec/Export3/铁架11VR.tga.tga using Guid(da9282c79a52b6344971fe362aafcdd4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '31721911478c9981e33e1969a2487269') in 0.009097 seconds
  5155. Import took 0.015105 seconds .
  5156. ========================================================================
  5157. Received Import Request.
  5158. Time since last request: 0.000178 seconds.
  5159. path: Assets/Rec/Export3/门03VR_完整贴图.tga.tga
  5160. artifactKey: Guid(d60bae4112678174e9d45e157102007a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5161. Start importing Assets/Rec/Export3/门03VR_完整贴图.tga.tga using Guid(d60bae4112678174e9d45e157102007a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1cf1b29e839a2c594d295030d9e2220d') in 0.009133 seconds
  5162. Import took 0.014609 seconds .
  5163. ========================================================================
  5164. Received Import Request.
  5165. Time since last request: 0.000170 seconds.
  5166. path: Assets/Rec/Export3/闸阀01_vray.jpg.tga
  5167. artifactKey: Guid(b7fe11242e7e04c45800eac7d3dddd90) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5168. Start importing Assets/Rec/Export3/闸阀01_vray.jpg.tga using Guid(b7fe11242e7e04c45800eac7d3dddd90) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '25db670ba229e3f478166f98caa8af9a') in 0.009486 seconds
  5169. Import took 0.015204 seconds .
  5170. ========================================================================
  5171. Received Import Request.
  5172. Time since last request: 0.000201 seconds.
  5173. path: Assets/Rec/Export3/铁架10VR.tga.tga
  5174. artifactKey: Guid(cf8057a338b646748a56455dbce7d2b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5175. Start importing Assets/Rec/Export3/铁架10VR.tga.tga using Guid(cf8057a338b646748a56455dbce7d2b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2012fe31ef50942f0fc283ad68d8f88a') in 0.008286 seconds
  5176. Import took 0.013754 seconds .
  5177. ========================================================================
  5178. Received Import Request.
  5179. Time since last request: 3.869442 seconds.
  5180. path: Assets/Rec/Export3/铁架03VR.tga.tga
  5181. artifactKey: Guid(0c738742c198ba44a9702e6c40edf544) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5182. Start importing Assets/Rec/Export3/铁架03VR.tga.tga using Guid(0c738742c198ba44a9702e6c40edf544) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '857df08bb74b5db68692adcfb76a4b80') in 0.016448 seconds
  5183. Import took 0.022182 seconds .
  5184. ========================================================================
  5185. Received Import Request.
  5186. Time since last request: 0.000195 seconds.
  5187. path: Assets/Rec/Export3/铁架04_vray.jpg.tga
  5188. artifactKey: Guid(38fcb9b3c8453ea4d897ee9054acb487) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5189. Start importing Assets/Rec/Export3/铁架04_vray.jpg.tga using Guid(38fcb9b3c8453ea4d897ee9054acb487) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7a2e3998697added872e58c347518b4e') in 0.023078 seconds
  5190. Import took 0.028297 seconds .
  5191. ========================================================================
  5192. Received Import Request.
  5193. Time since last request: 0.282382 seconds.
  5194. path: Assets/Rec/Export3/过热蒸汽温度表.jpg.tga
  5195. artifactKey: Guid(c6dcedd1e55dec84d8e5b817c804466b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5196. Start importing Assets/Rec/Export3/过热蒸汽温度表.jpg.tga using Guid(c6dcedd1e55dec84d8e5b817c804466b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '69a4c9a37dc43e8874288b81281ac110') in 0.020605 seconds
  5197. Import took 0.029168 seconds .
  5198. ========================================================================
  5199. Received Import Request.
  5200. Time since last request: 0.262366 seconds.
  5201. path: Assets/Rec/Export3/过热蒸汽供汽流量变送器.jpg.tga
  5202. artifactKey: Guid(8371d940eadb3c8409db8fd37eaaaf3e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5203. Start importing Assets/Rec/Export3/过热蒸汽供汽流量变送器.jpg.tga using Guid(8371d940eadb3c8409db8fd37eaaaf3e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '426c05cd84f4e01cfd4a76a097ba140a') in 0.043833 seconds
  5204. Import took 0.049576 seconds .
  5205. ========================================================================
  5206. Received Import Request.
  5207. Time since last request: 0.000193 seconds.
  5208. path: Assets/Rec/Export3/过热器集箱安全阀整定压力1.32MPa.jpg.tga
  5209. artifactKey: Guid(c03792df3892b5141a685033b039b3dd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5210. Start importing Assets/Rec/Export3/过热器集箱安全阀整定压力1.32MPa.jpg.tga using Guid(c03792df3892b5141a685033b039b3dd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7c4abfb7e57b1dd65dfd4c24baf21d04') in 0.027219 seconds
  5211. Import took 0.032162 seconds .
  5212. ========================================================================
  5213. Received Import Request.
  5214. Time since last request: 0.000204 seconds.
  5215. path: Assets/Rec/Export3/过热蒸汽压力表.jpg.tga
  5216. artifactKey: Guid(582addc2808b70b498a2168d39b6fb05) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5217. Start importing Assets/Rec/Export3/过热蒸汽压力表.jpg.tga using Guid(582addc2808b70b498a2168d39b6fb05) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0c3409d8b1209033cfadb9e4963c577d') in 0.011316 seconds
  5218. Import took 0.017836 seconds .
  5219. ========================================================================
  5220. Received Import Request.
  5221. Time since last request: 0.000182 seconds.
  5222. path: Assets/Rec/Export3/过热器集箱排空阀.jpg.tga
  5223. artifactKey: Guid(a62116900d1657145862e66a473f47dd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5224. Start importing Assets/Rec/Export3/过热器集箱排空阀.jpg.tga using Guid(a62116900d1657145862e66a473f47dd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b3858dbf9eb6c71588a7c54fbaca5837') in 0.022141 seconds
  5225. Import took 0.027615 seconds .
  5226. ========================================================================
  5227. Received Import Request.
  5228. Time since last request: 0.000200 seconds.
  5229. path: Assets/Rec/Export3/过热蒸汽取样口.jpg.tga
  5230. artifactKey: Guid(55a88e3231760674c9847865f047b1cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5231. Start importing Assets/Rec/Export3/过热蒸汽取样口.jpg.tga using Guid(55a88e3231760674c9847865f047b1cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '20c39cfd4fd4a19539463cedbfac757e') in 0.009915 seconds
  5232. Import took 0.016658 seconds .
  5233. ========================================================================
  5234. Received Import Request.
  5235. Time since last request: 0.000271 seconds.
  5236. path: Assets/Rec/Export3/过热蒸汽取样阀.jpg.tga
  5237. artifactKey: Guid(a0c2901538d025c4ba1f207ed6428023) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5238. Start importing Assets/Rec/Export3/过热蒸汽取样阀.jpg.tga using Guid(a0c2901538d025c4ba1f207ed6428023) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a67893e68b547633905962e56381f35') in 0.024820 seconds
  5239. Import took 0.030901 seconds .
  5240. ========================================================================
  5241. Received Import Request.
  5242. Time since last request: 0.000227 seconds.
  5243. path: Assets/Rec/Export3/过热器集箱温度变送器.jpg.tga
  5244. artifactKey: Guid(2ce3e6ba42d3c4c46910cf951cf1f10f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5245. Start importing Assets/Rec/Export3/过热器集箱温度变送器.jpg.tga using Guid(2ce3e6ba42d3c4c46910cf951cf1f10f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4d5280641133c9b1292e268321f4a9de') in 0.010320 seconds
  5246. Import took 0.016283 seconds .
  5247. ========================================================================
  5248. Received Import Request.
  5249. Time since last request: 0.000222 seconds.
  5250. path: Assets/Rec/Export3/过热蒸汽减压阀.jpg.tga
  5251. artifactKey: Guid(ef6dd4045e9721a46b406eda335a0cc3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5252. Start importing Assets/Rec/Export3/过热蒸汽减压阀.jpg.tga using Guid(ef6dd4045e9721a46b406eda335a0cc3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8880000975af38ca856d396545cadb2a') in 0.023971 seconds
  5253. Import took 0.029478 seconds .
  5254. ========================================================================
  5255. Received Import Request.
  5256. Time since last request: 0.000205 seconds.
  5257. path: Assets/Rec/Export3/过热器集箱压力传感器.jpg.tga
  5258. artifactKey: Guid(94d9743b4bde29f4ea9348ed216cc4d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5259. Start importing Assets/Rec/Export3/过热器集箱压力传感器.jpg.tga using Guid(94d9743b4bde29f4ea9348ed216cc4d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c8f6996a8adf33423f627f3a40034bc5') in 0.008957 seconds
  5260. Import took 0.014501 seconds .
  5261. ========================================================================
  5262. Received Import Request.
  5263. Time since last request: 0.000186 seconds.
  5264. path: Assets/Rec/Export3/过热器集箱_vray.jpg.tga
  5265. artifactKey: Guid(5c36d7dec44b8b041b7d64d6964d5ddf) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5266. Start importing Assets/Rec/Export3/过热器集箱_vray.jpg.tga using Guid(5c36d7dec44b8b041b7d64d6964d5ddf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c9d78fc4c77e26b4a735fb2452def480') in 0.022679 seconds
  5267. Import took 0.028073 seconds .
  5268. ========================================================================
  5269. Received Import Request.
  5270. Time since last request: 0.065775 seconds.
  5271. path: Assets/Rec/Export3/负1层设备_过滤装置vr.tga.tga
  5272. artifactKey: Guid(a19c0b188ceebd2418b60ccef10ff859) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5273. Start importing Assets/Rec/Export3/负1层设备_过滤装置vr.tga.tga using Guid(a19c0b188ceebd2418b60ccef10ff859) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c58d185592fa8e488e0342847f61788') in 0.011311 seconds
  5274. Import took 0.016971 seconds .
  5275. ========================================================================
  5276. Received Import Request.
  5277. Time since last request: 0.000157 seconds.
  5278. path: Assets/Rec/Export3/边阀_vray.jpg.tga
  5279. artifactKey: Guid(2e62dbe1fafffb249b595233817b565f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5280. Start importing Assets/Rec/Export3/边阀_vray.jpg.tga using Guid(2e62dbe1fafffb249b595233817b565f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e2d07d72830ca2c044c6a3c43f1fb161') in 0.009536 seconds
  5281. Import took 0.015091 seconds .
  5282. ========================================================================
  5283. Received Import Request.
  5284. Time since last request: 0.000151 seconds.
  5285. path: Assets/Rec/Export3/软水给水泵_vray.jpg.tga
  5286. artifactKey: Guid(12aa69a806361544f9ebe7540dc8d61f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5287. Start importing Assets/Rec/Export3/软水给水泵_vray.jpg.tga using Guid(12aa69a806361544f9ebe7540dc8d61f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd828b6c8f6b80d174e9a0eb14a41920a') in 0.008407 seconds
  5288. Import took 0.013742 seconds .
  5289. ========================================================================
  5290. Received Import Request.
  5291. Time since last request: 0.564595 seconds.
  5292. path: Assets/Rec/Export3/膨胀箱疏水阀.jpg.tga
  5293. artifactKey: Guid(cb6a9a09771ed9043bba34e888d65316) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5294. Start importing Assets/Rec/Export3/膨胀箱疏水阀.jpg.tga using Guid(cb6a9a09771ed9043bba34e888d65316) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2250320c5f93c43265786b7611042df8') in 0.013237 seconds
  5295. Import took 0.019839 seconds .
  5296. ========================================================================
  5297. Received Import Request.
  5298. Time since last request: 0.000223 seconds.
  5299. path: Assets/Rec/Export3/膨胀箱真空阀.jpg.tga
  5300. artifactKey: Guid(31999804e88b3234898060160704179e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5301. Start importing Assets/Rec/Export3/膨胀箱真空阀.jpg.tga using Guid(31999804e88b3234898060160704179e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8abf6c5d85460a9f9acd15a9992dfbae') in 0.012096 seconds
  5302. Import took 0.017945 seconds .
  5303. ========================================================================
  5304. Received Import Request.
  5305. Time since last request: 0.000221 seconds.
  5306. path: Assets/Rec/Export3/给水温度表.jpg.tga
  5307. artifactKey: Guid(d10683e6bd7a77942af2b2987d314465) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5308. Start importing Assets/Rec/Export3/给水温度表.jpg.tga using Guid(d10683e6bd7a77942af2b2987d314465) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0f931e4ba7bd674e816643e90e17c8f0') in 0.009432 seconds
  5309. Import took 0.014762 seconds .
  5310. ========================================================================
  5311. Received Import Request.
  5312. Time since last request: 0.000221 seconds.
  5313. path: Assets/Rec/Export3/给水流量变送器.jpg.tga
  5314. artifactKey: Guid(b832f9d3a49f66d45b85b7d8fa20df3a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5315. Start importing Assets/Rec/Export3/给水流量变送器.jpg.tga using Guid(b832f9d3a49f66d45b85b7d8fa20df3a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '895cd25c062a34292dfc8c2bc06867e4') in 0.011843 seconds
  5316. Import took 0.017571 seconds .
  5317. ========================================================================
  5318. Received Import Request.
  5319. Time since last request: 0.000183 seconds.
  5320. path: Assets/Rec/Export3/红色罐子VR.tga.tga
  5321. artifactKey: Guid(132b811b4bff8cb4e905c8914e87b3bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5322. Start importing Assets/Rec/Export3/红色罐子VR.tga.tga using Guid(132b811b4bff8cb4e905c8914e87b3bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '05e8b72e2975d6848386971d946a5f74') in 0.009637 seconds
  5323. Import took 0.015007 seconds .
  5324. ========================================================================
  5325. Received Import Request.
  5326. Time since last request: 0.000171 seconds.
  5327. path: Assets/Rec/Export3/交流泵VR.tga.tga
  5328. artifactKey: Guid(a735f0b9bd34b8a4d88a8dd4152852f7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5329. Start importing Assets/Rec/Export3/交流泵VR.tga.tga using Guid(a735f0b9bd34b8a4d88a8dd4152852f7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '59e6f0a73df3600d5ce733d56a95ed3f') in 0.009336 seconds
  5330. Import took 0.015137 seconds .
  5331. ========================================================================
  5332. Received Import Request.
  5333. Time since last request: 0.000214 seconds.
  5334. path: Assets/Rec/Export3/主蒸汽至储汽筒.png.tga
  5335. artifactKey: Guid(73eeb40b4629cbe499fe255fc37d20a5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5336. Start importing Assets/Rec/Export3/主蒸汽至储汽筒.png.tga using Guid(73eeb40b4629cbe499fe255fc37d20a5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e10f7fd666d2c48d4bd5e28b12008d0e') in 0.008270 seconds
  5337. Import took 0.014111 seconds .
  5338. ========================================================================
  5339. Received Import Request.
  5340. Time since last request: 0.000225 seconds.
  5341. path: Assets/Rec/Export3/主蒸汽至汽轮机.png.tga
  5342. artifactKey: Guid(fa5ff04b0083ec9459c9d215d4ae7a94) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5343. Start importing Assets/Rec/Export3/主蒸汽至汽轮机.png.tga using Guid(fa5ff04b0083ec9459c9d215d4ae7a94) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '85e116778023d1969449fc91947bbe5f') in 0.008451 seconds
  5344. Import took 0.013895 seconds .
  5345. ========================================================================
  5346. Received Import Request.
  5347. Time since last request: 0.000163 seconds.
  5348. path: Assets/Rec/Export3/给水取样口.jpg.tga
  5349. artifactKey: Guid(c02d12fb3a7ab3b49954a902732bfd27) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5350. Start importing Assets/Rec/Export3/给水取样口.jpg.tga using Guid(c02d12fb3a7ab3b49954a902732bfd27) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '061a8a16e6921e5af025838301c22fa8') in 0.009644 seconds
  5351. Import took 0.014742 seconds .
  5352. ========================================================================
  5353. Received Import Request.
  5354. Time since last request: 0.000171 seconds.
  5355. path: Assets/Rec/Export3/给水泵.jpg.tga
  5356. artifactKey: Guid(149e5b9a052e1ac45a2bf736495e1795) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5357. Start importing Assets/Rec/Export3/给水泵.jpg.tga using Guid(149e5b9a052e1ac45a2bf736495e1795) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4f3c59b8b8ab152207c1540ce3f3ec77') in 0.008826 seconds
  5358. Import took 0.014616 seconds .
  5359. ========================================================================
  5360. Received Import Request.
  5361. Time since last request: 0.000167 seconds.
  5362. path: Assets/Rec/Export3/上锅筒再循环管.png.tga
  5363. artifactKey: Guid(103e15e2a03c68643900b594438bf1b6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5364. Start importing Assets/Rec/Export3/上锅筒再循环管.png.tga using Guid(103e15e2a03c68643900b594438bf1b6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '28063aaabe75196364ef02023f4aae23') in 0.009742 seconds
  5365. Import took 0.015008 seconds .
  5366. ========================================================================
  5367. Received Import Request.
  5368. Time since last request: 0.000172 seconds.
  5369. path: Assets/Rec/Export3/红色框架_vray.jpg.tga
  5370. artifactKey: Guid(5b5f7415527032044a34e6debabc55e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5371. Start importing Assets/Rec/Export3/红色框架_vray.jpg.tga using Guid(5b5f7415527032044a34e6debabc55e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3f35811088aa31f68d43e39db30ec82f') in 0.009701 seconds
  5372. Import took 0.014866 seconds .
  5373. ========================================================================
  5374. Received Import Request.
  5375. Time since last request: 0.000160 seconds.
  5376. path: Assets/Rec/Export3/给水泵部件1VR.tga.tga
  5377. artifactKey: Guid(4cfb778918ec7314d89c1566d4d39740) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5378. Start importing Assets/Rec/Export3/给水泵部件1VR.tga.tga using Guid(4cfb778918ec7314d89c1566d4d39740) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '567d1c4b1db2178d214c39440e44e24f') in 0.011193 seconds
  5379. Import took 0.016386 seconds .
  5380. ========================================================================
  5381. Received Import Request.
  5382. Time since last request: 0.000178 seconds.
  5383. path: Assets/Rec/Export3/炉水取样口.jpg.tga
  5384. artifactKey: Guid(a960953470d7e774daa97df98f419ce9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5385. Start importing Assets/Rec/Export3/炉水取样口.jpg.tga using Guid(a960953470d7e774daa97df98f419ce9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '60ae275c76079d114a86177a2ce616d1') in 0.008592 seconds
  5386. Import took 0.013766 seconds .
  5387. ========================================================================
  5388. Received Import Request.
  5389. Time since last request: 0.000185 seconds.
  5390. path: Assets/Rec/Export3/给水流量差压变送器.jpg.tga
  5391. artifactKey: Guid(1fa21338d892c4049b262b37d8767c65) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5392. Start importing Assets/Rec/Export3/给水流量差压变送器.jpg.tga using Guid(1fa21338d892c4049b262b37d8767c65) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eb192469fcd1bb372b65c0c08b541476') in 0.008901 seconds
  5393. Import took 0.014888 seconds .
  5394. ========================================================================
  5395. Received Import Request.
  5396. Time since last request: 0.000267 seconds.
  5397. path: Assets/Rec/Export3/炉水温度表.jpg.tga
  5398. artifactKey: Guid(7e0a9fe74e94fcc4d9b0d9c62f0d5a92) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5399. Start importing Assets/Rec/Export3/炉水温度表.jpg.tga using Guid(7e0a9fe74e94fcc4d9b0d9c62f0d5a92) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7fb638c2125ce9dcd3c608b1b061ae8e') in 0.008327 seconds
  5400. Import took 0.013796 seconds .
  5401. ========================================================================
  5402. Received Import Request.
  5403. Time since last request: 0.000171 seconds.
  5404. path: Assets/Rec/Export3/中间水箱.png.tga
  5405. artifactKey: Guid(e93263662cda42a48b6a473f733151f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5406. Start importing Assets/Rec/Export3/中间水箱.png.tga using Guid(e93263662cda42a48b6a473f733151f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1c3ff45e4278920bfb898e9e6c2d1c71') in 0.007949 seconds
  5407. Import took 0.014201 seconds .
  5408. ========================================================================
  5409. Received Import Request.
  5410. Time since last request: 0.000258 seconds.
  5411. path: Assets/Rec/Export3/花头阀_vray.jpg.tga
  5412. artifactKey: Guid(63dfea24a88d40c449419526509f66a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5413. Start importing Assets/Rec/Export3/花头阀_vray.jpg.tga using Guid(63dfea24a88d40c449419526509f66a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b2649c16a43fc6d023377d1ea026aa60') in 0.009034 seconds
  5414. Import took 0.015116 seconds .
  5415. ========================================================================
  5416. Received Import Request.
  5417. Time since last request: 0.000221 seconds.
  5418. path: Assets/Rec/Export3/给水取样阀.jpg.tga
  5419. artifactKey: Guid(dbaa6fa5123b6dd439789cbdaa09503a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5420. Start importing Assets/Rec/Export3/给水取样阀.jpg.tga using Guid(dbaa6fa5123b6dd439789cbdaa09503a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a8742f80d4ce9f0ce937ecbc80a3567') in 0.009954 seconds
  5421. Import took 0.016701 seconds .
  5422. ========================================================================
  5423. Received Import Request.
  5424. Time since last request: 0.000357 seconds.
  5425. path: Assets/Rec/Export3/给水泵部件2VR.tga.tga
  5426. artifactKey: Guid(e5fed6294656e0f45b4ed0f67ec5453a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5427. Start importing Assets/Rec/Export3/给水泵部件2VR.tga.tga using Guid(e5fed6294656e0f45b4ed0f67ec5453a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bfdff2a53b070ed0c79c6a1dd238685b') in 0.010384 seconds
  5428. Import took 0.016325 seconds .
  5429. ========================================================================
  5430. Received Import Request.
  5431. Time since last request: 0.000156 seconds.
  5432. path: Assets/Rec/Export3/给水至储汽筒.png.tga
  5433. artifactKey: Guid(f5c0ecce5732ca547af7a95dea44bef1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5434. Start importing Assets/Rec/Export3/给水至储汽筒.png.tga using Guid(f5c0ecce5732ca547af7a95dea44bef1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '52a4e0e4d0b9bcd342eaee69342a930c') in 0.008105 seconds
  5435. Import took 0.014002 seconds .
  5436. ========================================================================
  5437. Received Import Request.
  5438. Time since last request: 0.000160 seconds.
  5439. path: Assets/Rec/Export3/主蒸汽至汽轮机2.png.tga
  5440. artifactKey: Guid(29d964246aee6cc4cba51fbb59ab1a63) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5441. Start importing Assets/Rec/Export3/主蒸汽至汽轮机2.png.tga using Guid(29d964246aee6cc4cba51fbb59ab1a63) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4629cdccf1fe523701169862d2233145') in 0.008474 seconds
  5442. Import took 0.014622 seconds .
  5443. ========================================================================
  5444. Received Import Request.
  5445. Time since last request: 0.000183 seconds.
  5446. path: Assets/Rec/Export3/给水泵至省煤器.png.tga
  5447. artifactKey: Guid(29fca297ad7d4bc4d832008d32e6f632) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  5448. Start importing Assets/Rec/Export3/给水泵至省煤器.png.tga using Guid(29fca297ad7d4bc4d832008d32e6f632) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f113688dfe466dc169d9d4f0f0822d78') in 0.008289 seconds
  5449. Import took 0.013862 seconds .
  5450. ========================================================================
  5451. Received Prepare
  5452. Refreshing native plugins compatible for Editor in 6.94 ms, found 3 plugins.
  5453. Preloading 0 native plugins for Editor in 0.00 ms.
  5454. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  5455. System memory in use before: 179.9 MB.
  5456. System memory in use after: 180.1 MB.
  5457. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4395.
  5458. Total: 4.520200 ms (FindLiveObjects: 0.619700 ms CreateObjectMapping: 0.135300 ms MarkObjects: 3.737400 ms DeleteObjects: 0.026900 ms)
  5459. AssetImportParameters requested are different than current active one (requested -> active):
  5460. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  5461. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  5462. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  5463. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  5464. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  5465. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  5466. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  5467. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5468. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5469. ========================================================================
  5470. Received Prepare
  5471. Registering precompiled user dll's ...
  5472. Registered in 0.006998 seconds.
  5473. Begin MonoManager ReloadAssembly
  5474. Native extension for WindowsStandalone target not found
  5475. Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
  5476. Preloading 0 native plugins for Editor in 0.00 ms.
  5477. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  5478. This could be due to missing scripts or compile error.
  5479. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  5480. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  5481. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  5482. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  5483. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  5484. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  5485. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  5486. Mono: successfully reloaded assembly
  5487. - Completed reload, in 1.187 seconds
  5488. Domain Reload Profiling:
  5489. ReloadAssembly (1188ms)
  5490. BeginReloadAssembly (133ms)
  5491. ExecutionOrderSort (0ms)
  5492. DisableScriptedObjects (5ms)
  5493. BackupInstance (0ms)
  5494. ReleaseScriptingObjects (0ms)
  5495. CreateAndSetChildDomain (44ms)
  5496. EndReloadAssembly (999ms)
  5497. LoadAssemblies (121ms)
  5498. RebuildTransferFunctionScriptingTraits (0ms)
  5499. SetupTypeCache (329ms)
  5500. ReleaseScriptCaches (2ms)
  5501. RebuildScriptCaches (56ms)
  5502. SetupLoadedEditorAssemblies (350ms)
  5503. LogAssemblyErrors (0ms)
  5504. InitializePlatformSupportModulesInManaged (5ms)
  5505. SetLoadedEditorAssemblies (1ms)
  5506. RefreshPlugins (1ms)
  5507. BeforeProcessingInitializeOnLoad (99ms)
  5508. ProcessInitializeOnLoadAttributes (230ms)
  5509. ProcessInitializeOnLoadMethodAttributes (11ms)
  5510. AfterProcessingInitializeOnLoad (3ms)
  5511. EditorAssembliesLoaded (0ms)
  5512. ExecutionOrderSort2 (0ms)
  5513. AwakeInstancesAfterBackupRestoration (27ms)
  5514. Platform modules already initialized, skipping
  5515. Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
  5516. Preloading 0 native plugins for Editor in 0.00 ms.
  5517. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  5518. System memory in use before: 249.1 MB.
  5519. System memory in use after: 249.3 MB.
  5520. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4397.
  5521. Total: 3.832600 ms (FindLiveObjects: 0.459000 ms CreateObjectMapping: 0.119700 ms MarkObjects: 3.216100 ms DeleteObjects: 0.036700 ms)
  5522. AssetImportParameters requested are different than current active one (requested -> active):
  5523. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  5524. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  5525. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  5526. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  5527. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  5528. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  5529. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  5530. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5531. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5532. ========================================================================
  5533. Received Prepare
  5534. Registering precompiled user dll's ...
  5535. Registered in 0.007513 seconds.
  5536. Begin MonoManager ReloadAssembly
  5537. Native extension for WindowsStandalone target not found
  5538. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  5539. Preloading 0 native plugins for Editor in 0.00 ms.
  5540. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  5541. This could be due to missing scripts or compile error.
  5542. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  5543. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  5544. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  5545. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  5546. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  5547. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  5548. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  5549. Mono: successfully reloaded assembly
  5550. - Completed reload, in 1.166 seconds
  5551. Domain Reload Profiling:
  5552. ReloadAssembly (1166ms)
  5553. BeginReloadAssembly (127ms)
  5554. ExecutionOrderSort (0ms)
  5555. DisableScriptedObjects (5ms)
  5556. BackupInstance (0ms)
  5557. ReleaseScriptingObjects (0ms)
  5558. CreateAndSetChildDomain (35ms)
  5559. EndReloadAssembly (983ms)
  5560. LoadAssemblies (122ms)
  5561. RebuildTransferFunctionScriptingTraits (0ms)
  5562. SetupTypeCache (323ms)
  5563. ReleaseScriptCaches (1ms)
  5564. RebuildScriptCaches (56ms)
  5565. SetupLoadedEditorAssemblies (342ms)
  5566. LogAssemblyErrors (0ms)
  5567. InitializePlatformSupportModulesInManaged (4ms)
  5568. SetLoadedEditorAssemblies (1ms)
  5569. RefreshPlugins (1ms)
  5570. BeforeProcessingInitializeOnLoad (99ms)
  5571. ProcessInitializeOnLoadAttributes (222ms)
  5572. ProcessInitializeOnLoadMethodAttributes (11ms)
  5573. AfterProcessingInitializeOnLoad (3ms)
  5574. EditorAssembliesLoaded (0ms)
  5575. ExecutionOrderSort2 (0ms)
  5576. AwakeInstancesAfterBackupRestoration (30ms)
  5577. Platform modules already initialized, skipping
  5578. Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
  5579. Preloading 0 native plugins for Editor in 0.00 ms.
  5580. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  5581. System memory in use before: 249.1 MB.
  5582. System memory in use after: 249.3 MB.
  5583. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4399.
  5584. Total: 4.248100 ms (FindLiveObjects: 0.519100 ms CreateObjectMapping: 0.137900 ms MarkObjects: 3.550800 ms DeleteObjects: 0.039100 ms)
  5585. AssetImportParameters requested are different than current active one (requested -> active):
  5586. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  5587. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  5588. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  5589. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  5590. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  5591. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  5592. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  5593. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5594. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5595. ========================================================================
  5596. Received Prepare
  5597. Registering precompiled user dll's ...
  5598. Registered in 0.007913 seconds.
  5599. Begin MonoManager ReloadAssembly
  5600. Native extension for WindowsStandalone target not found
  5601. Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
  5602. Preloading 0 native plugins for Editor in 0.00 ms.
  5603. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  5604. This could be due to missing scripts or compile error.
  5605. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  5606. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  5607. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  5608. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  5609. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  5610. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  5611. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  5612. Mono: successfully reloaded assembly
  5613. - Completed reload, in 1.221 seconds
  5614. Domain Reload Profiling:
  5615. ReloadAssembly (1222ms)
  5616. BeginReloadAssembly (137ms)
  5617. ExecutionOrderSort (0ms)
  5618. DisableScriptedObjects (7ms)
  5619. BackupInstance (0ms)
  5620. ReleaseScriptingObjects (0ms)
  5621. CreateAndSetChildDomain (40ms)
  5622. EndReloadAssembly (1023ms)
  5623. LoadAssemblies (130ms)
  5624. RebuildTransferFunctionScriptingTraits (0ms)
  5625. SetupTypeCache (341ms)
  5626. ReleaseScriptCaches (1ms)
  5627. RebuildScriptCaches (54ms)
  5628. SetupLoadedEditorAssemblies (336ms)
  5629. LogAssemblyErrors (0ms)
  5630. InitializePlatformSupportModulesInManaged (4ms)
  5631. SetLoadedEditorAssemblies (1ms)
  5632. RefreshPlugins (1ms)
  5633. BeforeProcessingInitializeOnLoad (94ms)
  5634. ProcessInitializeOnLoadAttributes (223ms)
  5635. ProcessInitializeOnLoadMethodAttributes (11ms)
  5636. AfterProcessingInitializeOnLoad (3ms)
  5637. EditorAssembliesLoaded (0ms)
  5638. ExecutionOrderSort2 (0ms)
  5639. AwakeInstancesAfterBackupRestoration (26ms)
  5640. Platform modules already initialized, skipping
  5641. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  5642. Preloading 0 native plugins for Editor in 0.00 ms.
  5643. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  5644. System memory in use before: 249.1 MB.
  5645. System memory in use after: 249.3 MB.
  5646. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4401.
  5647. Total: 4.172900 ms (FindLiveObjects: 0.411600 ms CreateObjectMapping: 0.119600 ms MarkObjects: 3.604100 ms DeleteObjects: 0.036400 ms)
  5648. AssetImportParameters requested are different than current active one (requested -> active):
  5649. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  5650. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  5651. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  5652. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  5653. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  5654. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  5655. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  5656. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5657. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5658. ========================================================================
  5659. Received Prepare
  5660. Registering precompiled user dll's ...
  5661. Registered in 0.007772 seconds.
  5662. Begin MonoManager ReloadAssembly
  5663. Native extension for WindowsStandalone target not found
  5664. Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
  5665. Preloading 0 native plugins for Editor in 0.00 ms.
  5666. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  5667. This could be due to missing scripts or compile error.
  5668. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  5669. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  5670. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  5671. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  5672. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  5673. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  5674. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  5675. Mono: successfully reloaded assembly
  5676. - Completed reload, in 2.088 seconds
  5677. Domain Reload Profiling:
  5678. ReloadAssembly (2089ms)
  5679. BeginReloadAssembly (131ms)
  5680. ExecutionOrderSort (0ms)
  5681. DisableScriptedObjects (6ms)
  5682. BackupInstance (0ms)
  5683. ReleaseScriptingObjects (0ms)
  5684. CreateAndSetChildDomain (38ms)
  5685. EndReloadAssembly (1899ms)
  5686. LoadAssemblies (129ms)
  5687. RebuildTransferFunctionScriptingTraits (0ms)
  5688. SetupTypeCache (327ms)
  5689. ReleaseScriptCaches (1ms)
  5690. RebuildScriptCaches (59ms)
  5691. SetupLoadedEditorAssemblies (478ms)
  5692. LogAssemblyErrors (0ms)
  5693. InitializePlatformSupportModulesInManaged (4ms)
  5694. SetLoadedEditorAssemblies (1ms)
  5695. RefreshPlugins (1ms)
  5696. BeforeProcessingInitializeOnLoad (101ms)
  5697. ProcessInitializeOnLoadAttributes (330ms)
  5698. ProcessInitializeOnLoadMethodAttributes (32ms)
  5699. AfterProcessingInitializeOnLoad (8ms)
  5700. EditorAssembliesLoaded (1ms)
  5701. ExecutionOrderSort2 (0ms)
  5702. AwakeInstancesAfterBackupRestoration (228ms)
  5703. Platform modules already initialized, skipping
  5704. Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
  5705. Preloading 0 native plugins for Editor in 0.00 ms.
  5706. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  5707. System memory in use before: 249.1 MB.
  5708. System memory in use after: 249.3 MB.
  5709. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4403.
  5710. Total: 3.798200 ms (FindLiveObjects: 0.431900 ms CreateObjectMapping: 0.114100 ms MarkObjects: 3.214600 ms DeleteObjects: 0.036500 ms)
  5711. AssetImportParameters requested are different than current active one (requested -> active):
  5712. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  5713. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  5714. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  5715. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  5716. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  5717. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  5718. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  5719. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5720. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5721. ========================================================================
  5722. Received Prepare
  5723. Refreshing native plugins compatible for Editor in 6.57 ms, found 3 plugins.
  5724. Preloading 0 native plugins for Editor in 0.00 ms.
  5725. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  5726. System memory in use before: 179.4 MB.
  5727. System memory in use after: 179.7 MB.
  5728. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4403.
  5729. Total: 3.604400 ms (FindLiveObjects: 0.460000 ms CreateObjectMapping: 0.129600 ms MarkObjects: 2.989700 ms DeleteObjects: 0.024200 ms)
  5730. AssetImportParameters requested are different than current active one (requested -> active):
  5731. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  5732. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  5733. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  5734. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  5735. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  5736. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  5737. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  5738. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5739. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5740. ========================================================================
  5741. Received Prepare
  5742. Refreshing native plugins compatible for Editor in 6.59 ms, found 3 plugins.
  5743. Preloading 0 native plugins for Editor in 0.00 ms.
  5744. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  5745. System memory in use before: 179.4 MB.
  5746. System memory in use after: 179.7 MB.
  5747. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4403.
  5748. Total: 3.687700 ms (FindLiveObjects: 0.441300 ms CreateObjectMapping: 0.116500 ms MarkObjects: 3.106500 ms DeleteObjects: 0.022600 ms)
  5749. AssetImportParameters requested are different than current active one (requested -> active):
  5750. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  5751. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  5752. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  5753. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  5754. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  5755. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  5756. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  5757. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5758. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5759. ========================================================================
  5760. Received Prepare
  5761. Refreshing native plugins compatible for Editor in 6.34 ms, found 3 plugins.
  5762. Preloading 0 native plugins for Editor in 0.00 ms.
  5763. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  5764. System memory in use before: 179.4 MB.
  5765. System memory in use after: 179.7 MB.
  5766. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4403.
  5767. Total: 3.732500 ms (FindLiveObjects: 0.433600 ms CreateObjectMapping: 0.117000 ms MarkObjects: 3.152100 ms DeleteObjects: 0.028800 ms)
  5768. AssetImportParameters requested are different than current active one (requested -> active):
  5769. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  5770. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  5771. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  5772. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  5773. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  5774. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  5775. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  5776. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5777. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5778. ========================================================================
  5779. Received Prepare
  5780. Refreshing native plugins compatible for Editor in 6.64 ms, found 3 plugins.
  5781. Preloading 0 native plugins for Editor in 0.00 ms.
  5782. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  5783. System memory in use before: 179.4 MB.
  5784. System memory in use after: 179.6 MB.
  5785. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4403.
  5786. Total: 3.732700 ms (FindLiveObjects: 0.442800 ms CreateObjectMapping: 0.117800 ms MarkObjects: 3.148900 ms DeleteObjects: 0.022000 ms)
  5787. AssetImportParameters requested are different than current active one (requested -> active):
  5788. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  5789. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  5790. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  5791. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  5792. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  5793. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  5794. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  5795. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5796. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5797. ========================================================================
  5798. Received Prepare
  5799. Registering precompiled user dll's ...
  5800. Registered in 0.007539 seconds.
  5801. Begin MonoManager ReloadAssembly
  5802. Native extension for WindowsStandalone target not found
  5803. Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins.
  5804. Preloading 0 native plugins for Editor in 0.00 ms.
  5805. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  5806. This could be due to missing scripts or compile error.
  5807. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  5808. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  5809. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  5810. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  5811. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  5812. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  5813. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  5814. Mono: successfully reloaded assembly
  5815. - Completed reload, in 1.215 seconds
  5816. Domain Reload Profiling:
  5817. ReloadAssembly (1216ms)
  5818. BeginReloadAssembly (121ms)
  5819. ExecutionOrderSort (0ms)
  5820. DisableScriptedObjects (5ms)
  5821. BackupInstance (0ms)
  5822. ReleaseScriptingObjects (0ms)
  5823. CreateAndSetChildDomain (34ms)
  5824. EndReloadAssembly (1040ms)
  5825. LoadAssemblies (122ms)
  5826. RebuildTransferFunctionScriptingTraits (0ms)
  5827. SetupTypeCache (345ms)
  5828. ReleaseScriptCaches (1ms)
  5829. RebuildScriptCaches (56ms)
  5830. SetupLoadedEditorAssemblies (365ms)
  5831. LogAssemblyErrors (0ms)
  5832. InitializePlatformSupportModulesInManaged (4ms)
  5833. SetLoadedEditorAssemblies (1ms)
  5834. RefreshPlugins (1ms)
  5835. BeforeProcessingInitializeOnLoad (106ms)
  5836. ProcessInitializeOnLoadAttributes (238ms)
  5837. ProcessInitializeOnLoadMethodAttributes (13ms)
  5838. AfterProcessingInitializeOnLoad (3ms)
  5839. EditorAssembliesLoaded (0ms)
  5840. ExecutionOrderSort2 (0ms)
  5841. AwakeInstancesAfterBackupRestoration (36ms)
  5842. Platform modules already initialized, skipping
  5843. Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
  5844. Preloading 0 native plugins for Editor in 0.00 ms.
  5845. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  5846. System memory in use before: 249.1 MB.
  5847. System memory in use after: 249.3 MB.
  5848. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4405.
  5849. Total: 3.666200 ms (FindLiveObjects: 0.421700 ms CreateObjectMapping: 0.126800 ms MarkObjects: 3.079700 ms DeleteObjects: 0.036900 ms)
  5850. AssetImportParameters requested are different than current active one (requested -> active):
  5851. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  5852. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  5853. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  5854. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  5855. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  5856. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  5857. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  5858. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5859. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5860. ========================================================================
  5861. Received Prepare
  5862. Refreshing native plugins compatible for Editor in 6.63 ms, found 3 plugins.
  5863. Preloading 0 native plugins for Editor in 0.00 ms.
  5864. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  5865. System memory in use before: 179.4 MB.
  5866. System memory in use after: 179.7 MB.
  5867. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4405.
  5868. Total: 3.673400 ms (FindLiveObjects: 0.456400 ms CreateObjectMapping: 0.124700 ms MarkObjects: 3.068200 ms DeleteObjects: 0.023300 ms)
  5869. AssetImportParameters requested are different than current active one (requested -> active):
  5870. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  5871. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  5872. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  5873. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  5874. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  5875. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  5876. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  5877. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5878. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5879. ========================================================================
  5880. Received Prepare
  5881. Registering precompiled user dll's ...
  5882. Registered in 0.008816 seconds.
  5883. Begin MonoManager ReloadAssembly
  5884. Native extension for WindowsStandalone target not found
  5885. Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins.
  5886. Preloading 0 native plugins for Editor in 0.00 ms.
  5887. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  5888. This could be due to missing scripts or compile error.
  5889. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  5890. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  5891. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  5892. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  5893. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  5894. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  5895. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  5896. Mono: successfully reloaded assembly
  5897. - Completed reload, in 1.417 seconds
  5898. Domain Reload Profiling:
  5899. ReloadAssembly (1418ms)
  5900. BeginReloadAssembly (203ms)
  5901. ExecutionOrderSort (0ms)
  5902. DisableScriptedObjects (7ms)
  5903. BackupInstance (0ms)
  5904. ReleaseScriptingObjects (0ms)
  5905. CreateAndSetChildDomain (40ms)
  5906. EndReloadAssembly (1154ms)
  5907. LoadAssemblies (188ms)
  5908. RebuildTransferFunctionScriptingTraits (0ms)
  5909. SetupTypeCache (408ms)
  5910. ReleaseScriptCaches (1ms)
  5911. RebuildScriptCaches (59ms)
  5912. SetupLoadedEditorAssemblies (365ms)
  5913. LogAssemblyErrors (0ms)
  5914. InitializePlatformSupportModulesInManaged (4ms)
  5915. SetLoadedEditorAssemblies (1ms)
  5916. RefreshPlugins (1ms)
  5917. BeforeProcessingInitializeOnLoad (111ms)
  5918. ProcessInitializeOnLoadAttributes (227ms)
  5919. ProcessInitializeOnLoadMethodAttributes (11ms)
  5920. AfterProcessingInitializeOnLoad (9ms)
  5921. EditorAssembliesLoaded (0ms)
  5922. ExecutionOrderSort2 (0ms)
  5923. AwakeInstancesAfterBackupRestoration (31ms)
  5924. Platform modules already initialized, skipping
  5925. Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins.
  5926. Preloading 0 native plugins for Editor in 0.00 ms.
  5927. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  5928. System memory in use before: 249.1 MB.
  5929. System memory in use after: 249.3 MB.
  5930. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4407.
  5931. Total: 4.281700 ms (FindLiveObjects: 0.498700 ms CreateObjectMapping: 0.135200 ms MarkObjects: 3.607700 ms DeleteObjects: 0.039200 ms)
  5932. AssetImportParameters requested are different than current active one (requested -> active):
  5933. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  5934. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  5935. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  5936. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  5937. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  5938. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  5939. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  5940. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5941. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5942. ========================================================================
  5943. Received Prepare
  5944. Refreshing native plugins compatible for Editor in 8.62 ms, found 3 plugins.
  5945. Preloading 0 native plugins for Editor in 0.00 ms.
  5946. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  5947. System memory in use before: 179.4 MB.
  5948. System memory in use after: 179.7 MB.
  5949. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4407.
  5950. Total: 4.611700 ms (FindLiveObjects: 0.512400 ms CreateObjectMapping: 0.122100 ms MarkObjects: 3.819700 ms DeleteObjects: 0.156100 ms)
  5951. AssetImportParameters requested are different than current active one (requested -> active):
  5952. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  5953. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  5954. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  5955. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  5956. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  5957. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  5958. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  5959. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5960. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5961. ========================================================================
  5962. Received Prepare
  5963. Refreshing native plugins compatible for Editor in 7.15 ms, found 3 plugins.
  5964. Preloading 0 native plugins for Editor in 0.00 ms.
  5965. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  5966. System memory in use before: 179.4 MB.
  5967. System memory in use after: 179.7 MB.
  5968. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4407.
  5969. Total: 3.636400 ms (FindLiveObjects: 0.445900 ms CreateObjectMapping: 0.115300 ms MarkObjects: 3.053300 ms DeleteObjects: 0.021200 ms)
  5970. AssetImportParameters requested are different than current active one (requested -> active):
  5971. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  5972. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  5973. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  5974. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  5975. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  5976. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  5977. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  5978. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5979. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  5980. ========================================================================
  5981. Received Prepare
  5982. Registering precompiled user dll's ...
  5983. Registered in 0.008755 seconds.
  5984. Begin MonoManager ReloadAssembly
  5985. Native extension for WindowsStandalone target not found
  5986. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  5987. Preloading 0 native plugins for Editor in 0.00 ms.
  5988. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  5989. This could be due to missing scripts or compile error.
  5990. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  5991. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  5992. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  5993. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  5994. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  5995. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  5996. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  5997. Mono: successfully reloaded assembly
  5998. - Completed reload, in 1.275 seconds
  5999. Domain Reload Profiling:
  6000. ReloadAssembly (1275ms)
  6001. BeginReloadAssembly (154ms)
  6002. ExecutionOrderSort (0ms)
  6003. DisableScriptedObjects (7ms)
  6004. BackupInstance (0ms)
  6005. ReleaseScriptingObjects (0ms)
  6006. CreateAndSetChildDomain (45ms)
  6007. EndReloadAssembly (1056ms)
  6008. LoadAssemblies (148ms)
  6009. RebuildTransferFunctionScriptingTraits (0ms)
  6010. SetupTypeCache (366ms)
  6011. ReleaseScriptCaches (2ms)
  6012. RebuildScriptCaches (59ms)
  6013. SetupLoadedEditorAssemblies (362ms)
  6014. LogAssemblyErrors (0ms)
  6015. InitializePlatformSupportModulesInManaged (4ms)
  6016. SetLoadedEditorAssemblies (1ms)
  6017. RefreshPlugins (1ms)
  6018. BeforeProcessingInitializeOnLoad (100ms)
  6019. ProcessInitializeOnLoadAttributes (242ms)
  6020. ProcessInitializeOnLoadMethodAttributes (11ms)
  6021. AfterProcessingInitializeOnLoad (3ms)
  6022. EditorAssembliesLoaded (0ms)
  6023. ExecutionOrderSort2 (0ms)
  6024. AwakeInstancesAfterBackupRestoration (27ms)
  6025. Platform modules already initialized, skipping
  6026. Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins.
  6027. Preloading 0 native plugins for Editor in 0.00 ms.
  6028. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  6029. System memory in use before: 249.1 MB.
  6030. System memory in use after: 249.3 MB.
  6031. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4409.
  6032. Total: 4.412100 ms (FindLiveObjects: 0.534300 ms CreateObjectMapping: 0.173600 ms MarkObjects: 3.664600 ms DeleteObjects: 0.038400 ms)
  6033. AssetImportParameters requested are different than current active one (requested -> active):
  6034. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  6035. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  6036. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  6037. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  6038. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  6039. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  6040. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  6041. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6042. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6043. ========================================================================
  6044. Received Prepare
  6045. Registering precompiled user dll's ...
  6046. Registered in 0.008572 seconds.
  6047. Begin MonoManager ReloadAssembly
  6048. Native extension for WindowsStandalone target not found
  6049. Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins.
  6050. Preloading 0 native plugins for Editor in 0.00 ms.
  6051. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  6052. This could be due to missing scripts or compile error.
  6053. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  6054. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  6055. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  6056. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  6057. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  6058. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  6059. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  6060. Mono: successfully reloaded assembly
  6061. - Completed reload, in 1.255 seconds
  6062. Domain Reload Profiling:
  6063. ReloadAssembly (1255ms)
  6064. BeginReloadAssembly (127ms)
  6065. ExecutionOrderSort (0ms)
  6066. DisableScriptedObjects (5ms)
  6067. BackupInstance (0ms)
  6068. ReleaseScriptingObjects (0ms)
  6069. CreateAndSetChildDomain (37ms)
  6070. EndReloadAssembly (1072ms)
  6071. LoadAssemblies (123ms)
  6072. RebuildTransferFunctionScriptingTraits (0ms)
  6073. SetupTypeCache (385ms)
  6074. ReleaseScriptCaches (1ms)
  6075. RebuildScriptCaches (63ms)
  6076. SetupLoadedEditorAssemblies (345ms)
  6077. LogAssemblyErrors (0ms)
  6078. InitializePlatformSupportModulesInManaged (5ms)
  6079. SetLoadedEditorAssemblies (1ms)
  6080. RefreshPlugins (1ms)
  6081. BeforeProcessingInitializeOnLoad (103ms)
  6082. ProcessInitializeOnLoadAttributes (222ms)
  6083. ProcessInitializeOnLoadMethodAttributes (10ms)
  6084. AfterProcessingInitializeOnLoad (3ms)
  6085. EditorAssembliesLoaded (0ms)
  6086. ExecutionOrderSort2 (0ms)
  6087. AwakeInstancesAfterBackupRestoration (26ms)
  6088. Platform modules already initialized, skipping
  6089. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  6090. Preloading 0 native plugins for Editor in 0.00 ms.
  6091. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  6092. System memory in use before: 249.1 MB.
  6093. System memory in use after: 249.3 MB.
  6094. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4411.
  6095. Total: 5.332600 ms (FindLiveObjects: 0.461700 ms CreateObjectMapping: 0.158800 ms MarkObjects: 4.668400 ms DeleteObjects: 0.042400 ms)
  6096. AssetImportParameters requested are different than current active one (requested -> active):
  6097. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  6098. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  6099. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  6100. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  6101. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  6102. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  6103. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  6104. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6105. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6106. ========================================================================
  6107. Received Prepare
  6108. Registering precompiled user dll's ...
  6109. Registered in 0.007616 seconds.
  6110. Begin MonoManager ReloadAssembly
  6111. Native extension for WindowsStandalone target not found
  6112. Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins.
  6113. Preloading 0 native plugins for Editor in 0.00 ms.
  6114. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  6115. This could be due to missing scripts or compile error.
  6116. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  6117. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  6118. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  6119. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  6120. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  6121. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  6122. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  6123. Mono: successfully reloaded assembly
  6124. - Completed reload, in 1.336 seconds
  6125. Domain Reload Profiling:
  6126. ReloadAssembly (1336ms)
  6127. BeginReloadAssembly (160ms)
  6128. ExecutionOrderSort (0ms)
  6129. DisableScriptedObjects (8ms)
  6130. BackupInstance (0ms)
  6131. ReleaseScriptingObjects (0ms)
  6132. CreateAndSetChildDomain (44ms)
  6133. EndReloadAssembly (1112ms)
  6134. LoadAssemblies (149ms)
  6135. RebuildTransferFunctionScriptingTraits (0ms)
  6136. SetupTypeCache (380ms)
  6137. ReleaseScriptCaches (1ms)
  6138. RebuildScriptCaches (72ms)
  6139. SetupLoadedEditorAssemblies (355ms)
  6140. LogAssemblyErrors (0ms)
  6141. InitializePlatformSupportModulesInManaged (5ms)
  6142. SetLoadedEditorAssemblies (1ms)
  6143. RefreshPlugins (1ms)
  6144. BeforeProcessingInitializeOnLoad (98ms)
  6145. ProcessInitializeOnLoadAttributes (231ms)
  6146. ProcessInitializeOnLoadMethodAttributes (16ms)
  6147. AfterProcessingInitializeOnLoad (3ms)
  6148. EditorAssembliesLoaded (0ms)
  6149. ExecutionOrderSort2 (0ms)
  6150. AwakeInstancesAfterBackupRestoration (40ms)
  6151. Platform modules already initialized, skipping
  6152. Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins.
  6153. Preloading 0 native plugins for Editor in 0.00 ms.
  6154. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  6155. System memory in use before: 249.1 MB.
  6156. System memory in use after: 249.3 MB.
  6157. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4413.
  6158. Total: 4.856400 ms (FindLiveObjects: 0.526400 ms CreateObjectMapping: 0.131500 ms MarkObjects: 4.154000 ms DeleteObjects: 0.043100 ms)
  6159. AssetImportParameters requested are different than current active one (requested -> active):
  6160. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  6161. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  6162. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  6163. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  6164. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  6165. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  6166. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  6167. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6168. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6169. ========================================================================
  6170. Received Prepare
  6171. Registering precompiled user dll's ...
  6172. Registered in 0.007814 seconds.
  6173. Begin MonoManager ReloadAssembly
  6174. Native extension for WindowsStandalone target not found
  6175. Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins.
  6176. Preloading 0 native plugins for Editor in 0.00 ms.
  6177. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  6178. This could be due to missing scripts or compile error.
  6179. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  6180. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  6181. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  6182. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  6183. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  6184. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  6185. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  6186. Mono: successfully reloaded assembly
  6187. - Completed reload, in 1.197 seconds
  6188. Domain Reload Profiling:
  6189. ReloadAssembly (1198ms)
  6190. BeginReloadAssembly (126ms)
  6191. ExecutionOrderSort (0ms)
  6192. DisableScriptedObjects (6ms)
  6193. BackupInstance (0ms)
  6194. ReleaseScriptingObjects (0ms)
  6195. CreateAndSetChildDomain (36ms)
  6196. EndReloadAssembly (1016ms)
  6197. LoadAssemblies (123ms)
  6198. RebuildTransferFunctionScriptingTraits (0ms)
  6199. SetupTypeCache (365ms)
  6200. ReleaseScriptCaches (2ms)
  6201. RebuildScriptCaches (56ms)
  6202. SetupLoadedEditorAssemblies (336ms)
  6203. LogAssemblyErrors (0ms)
  6204. InitializePlatformSupportModulesInManaged (4ms)
  6205. SetLoadedEditorAssemblies (1ms)
  6206. RefreshPlugins (1ms)
  6207. BeforeProcessingInitializeOnLoad (95ms)
  6208. ProcessInitializeOnLoadAttributes (221ms)
  6209. ProcessInitializeOnLoadMethodAttributes (11ms)
  6210. AfterProcessingInitializeOnLoad (3ms)
  6211. EditorAssembliesLoaded (0ms)
  6212. ExecutionOrderSort2 (0ms)
  6213. AwakeInstancesAfterBackupRestoration (27ms)
  6214. Platform modules already initialized, skipping
  6215. Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
  6216. Preloading 0 native plugins for Editor in 0.00 ms.
  6217. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  6218. System memory in use before: 249.1 MB.
  6219. System memory in use after: 249.4 MB.
  6220. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4415.
  6221. Total: 3.680100 ms (FindLiveObjects: 0.431700 ms CreateObjectMapping: 0.114100 ms MarkObjects: 3.100800 ms DeleteObjects: 0.032500 ms)
  6222. AssetImportParameters requested are different than current active one (requested -> active):
  6223. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  6224. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  6225. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  6226. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  6227. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  6228. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  6229. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  6230. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6231. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6232. ========================================================================
  6233. Received Prepare
  6234. Registering precompiled user dll's ...
  6235. Registered in 0.007808 seconds.
  6236. Begin MonoManager ReloadAssembly
  6237. Native extension for WindowsStandalone target not found
  6238. Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
  6239. Preloading 0 native plugins for Editor in 0.00 ms.
  6240. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  6241. This could be due to missing scripts or compile error.
  6242. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  6243. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  6244. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  6245. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  6246. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  6247. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  6248. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  6249. Mono: successfully reloaded assembly
  6250. - Completed reload, in 1.297 seconds
  6251. Domain Reload Profiling:
  6252. ReloadAssembly (1297ms)
  6253. BeginReloadAssembly (128ms)
  6254. ExecutionOrderSort (0ms)
  6255. DisableScriptedObjects (5ms)
  6256. BackupInstance (0ms)
  6257. ReleaseScriptingObjects (0ms)
  6258. CreateAndSetChildDomain (37ms)
  6259. EndReloadAssembly (1109ms)
  6260. LoadAssemblies (130ms)
  6261. RebuildTransferFunctionScriptingTraits (0ms)
  6262. SetupTypeCache (402ms)
  6263. ReleaseScriptCaches (1ms)
  6264. RebuildScriptCaches (67ms)
  6265. SetupLoadedEditorAssemblies (368ms)
  6266. LogAssemblyErrors (0ms)
  6267. InitializePlatformSupportModulesInManaged (4ms)
  6268. SetLoadedEditorAssemblies (0ms)
  6269. RefreshPlugins (1ms)
  6270. BeforeProcessingInitializeOnLoad (100ms)
  6271. ProcessInitializeOnLoadAttributes (248ms)
  6272. ProcessInitializeOnLoadMethodAttributes (11ms)
  6273. AfterProcessingInitializeOnLoad (3ms)
  6274. EditorAssembliesLoaded (0ms)
  6275. ExecutionOrderSort2 (0ms)
  6276. AwakeInstancesAfterBackupRestoration (27ms)
  6277. Platform modules already initialized, skipping
  6278. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  6279. Preloading 0 native plugins for Editor in 0.00 ms.
  6280. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  6281. System memory in use before: 249.1 MB.
  6282. System memory in use after: 249.4 MB.
  6283. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4417.
  6284. Total: 3.797600 ms (FindLiveObjects: 0.465400 ms CreateObjectMapping: 0.117700 ms MarkObjects: 3.178300 ms DeleteObjects: 0.034900 ms)
  6285. AssetImportParameters requested are different than current active one (requested -> active):
  6286. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  6287. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  6288. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  6289. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  6290. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  6291. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  6292. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  6293. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6294. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6295. ========================================================================
  6296. Received Prepare
  6297. Registering precompiled user dll's ...
  6298. Registered in 0.009267 seconds.
  6299. Begin MonoManager ReloadAssembly
  6300. Native extension for WindowsStandalone target not found
  6301. Refreshing native plugins compatible for Editor in 0.99 ms, found 3 plugins.
  6302. Preloading 0 native plugins for Editor in 0.00 ms.
  6303. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  6304. This could be due to missing scripts or compile error.
  6305. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  6306. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  6307. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  6308. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  6309. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  6310. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  6311. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  6312. Mono: successfully reloaded assembly
  6313. - Completed reload, in 1.210 seconds
  6314. Domain Reload Profiling:
  6315. ReloadAssembly (1210ms)
  6316. BeginReloadAssembly (129ms)
  6317. ExecutionOrderSort (0ms)
  6318. DisableScriptedObjects (6ms)
  6319. BackupInstance (0ms)
  6320. ReleaseScriptingObjects (0ms)
  6321. CreateAndSetChildDomain (36ms)
  6322. EndReloadAssembly (1019ms)
  6323. LoadAssemblies (150ms)
  6324. RebuildTransferFunctionScriptingTraits (0ms)
  6325. SetupTypeCache (326ms)
  6326. ReleaseScriptCaches (1ms)
  6327. RebuildScriptCaches (62ms)
  6328. SetupLoadedEditorAssemblies (342ms)
  6329. LogAssemblyErrors (0ms)
  6330. InitializePlatformSupportModulesInManaged (4ms)
  6331. SetLoadedEditorAssemblies (1ms)
  6332. RefreshPlugins (1ms)
  6333. BeforeProcessingInitializeOnLoad (95ms)
  6334. ProcessInitializeOnLoadAttributes (225ms)
  6335. ProcessInitializeOnLoadMethodAttributes (14ms)
  6336. AfterProcessingInitializeOnLoad (3ms)
  6337. EditorAssembliesLoaded (0ms)
  6338. ExecutionOrderSort2 (0ms)
  6339. AwakeInstancesAfterBackupRestoration (29ms)
  6340. Platform modules already initialized, skipping
  6341. Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins.
  6342. Preloading 0 native plugins for Editor in 0.00 ms.
  6343. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  6344. System memory in use before: 249.1 MB.
  6345. System memory in use after: 249.4 MB.
  6346. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4419.
  6347. Total: 4.593500 ms (FindLiveObjects: 0.520800 ms CreateObjectMapping: 0.133600 ms MarkObjects: 3.897200 ms DeleteObjects: 0.040700 ms)
  6348. AssetImportParameters requested are different than current active one (requested -> active):
  6349. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  6350. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  6351. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  6352. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  6353. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  6354. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  6355. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  6356. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6357. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6358. ========================================================================
  6359. Received Prepare
  6360. Registering precompiled user dll's ...
  6361. Registered in 0.007756 seconds.
  6362. Begin MonoManager ReloadAssembly
  6363. Native extension for WindowsStandalone target not found
  6364. Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins.
  6365. Preloading 0 native plugins for Editor in 0.00 ms.
  6366. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  6367. This could be due to missing scripts or compile error.
  6368. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  6369. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  6370. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  6371. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  6372. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  6373. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  6374. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  6375. Mono: successfully reloaded assembly
  6376. - Completed reload, in 1.203 seconds
  6377. Domain Reload Profiling:
  6378. ReloadAssembly (1203ms)
  6379. BeginReloadAssembly (126ms)
  6380. ExecutionOrderSort (0ms)
  6381. DisableScriptedObjects (6ms)
  6382. BackupInstance (0ms)
  6383. ReleaseScriptingObjects (0ms)
  6384. CreateAndSetChildDomain (36ms)
  6385. EndReloadAssembly (1019ms)
  6386. LoadAssemblies (123ms)
  6387. RebuildTransferFunctionScriptingTraits (0ms)
  6388. SetupTypeCache (323ms)
  6389. ReleaseScriptCaches (1ms)
  6390. RebuildScriptCaches (58ms)
  6391. SetupLoadedEditorAssemblies (348ms)
  6392. LogAssemblyErrors (0ms)
  6393. InitializePlatformSupportModulesInManaged (4ms)
  6394. SetLoadedEditorAssemblies (1ms)
  6395. RefreshPlugins (1ms)
  6396. BeforeProcessingInitializeOnLoad (101ms)
  6397. ProcessInitializeOnLoadAttributes (226ms)
  6398. ProcessInitializeOnLoadMethodAttributes (12ms)
  6399. AfterProcessingInitializeOnLoad (3ms)
  6400. EditorAssembliesLoaded (0ms)
  6401. ExecutionOrderSort2 (0ms)
  6402. AwakeInstancesAfterBackupRestoration (27ms)
  6403. Platform modules already initialized, skipping
  6404. Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins.
  6405. Preloading 0 native plugins for Editor in 0.00 ms.
  6406. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  6407. System memory in use before: 249.1 MB.
  6408. System memory in use after: 249.4 MB.
  6409. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4421.
  6410. Total: 3.671900 ms (FindLiveObjects: 0.404900 ms CreateObjectMapping: 0.117300 ms MarkObjects: 3.117000 ms DeleteObjects: 0.031900 ms)
  6411. AssetImportParameters requested are different than current active one (requested -> active):
  6412. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  6413. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  6414. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  6415. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  6416. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  6417. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  6418. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  6419. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6420. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6421. ========================================================================
  6422. Received Prepare
  6423. Registering precompiled user dll's ...
  6424. Registered in 0.007614 seconds.
  6425. Begin MonoManager ReloadAssembly
  6426. Native extension for WindowsStandalone target not found
  6427. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  6428. Preloading 0 native plugins for Editor in 0.00 ms.
  6429. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  6430. This could be due to missing scripts or compile error.
  6431. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  6432. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  6433. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  6434. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  6435. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  6436. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  6437. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  6438. Mono: successfully reloaded assembly
  6439. - Completed reload, in 1.257 seconds
  6440. Domain Reload Profiling:
  6441. ReloadAssembly (1257ms)
  6442. BeginReloadAssembly (127ms)
  6443. ExecutionOrderSort (0ms)
  6444. DisableScriptedObjects (5ms)
  6445. BackupInstance (0ms)
  6446. ReleaseScriptingObjects (0ms)
  6447. CreateAndSetChildDomain (36ms)
  6448. EndReloadAssembly (1069ms)
  6449. LoadAssemblies (134ms)
  6450. RebuildTransferFunctionScriptingTraits (0ms)
  6451. SetupTypeCache (373ms)
  6452. ReleaseScriptCaches (1ms)
  6453. RebuildScriptCaches (85ms)
  6454. SetupLoadedEditorAssemblies (343ms)
  6455. LogAssemblyErrors (0ms)
  6456. InitializePlatformSupportModulesInManaged (4ms)
  6457. SetLoadedEditorAssemblies (1ms)
  6458. RefreshPlugins (1ms)
  6459. BeforeProcessingInitializeOnLoad (97ms)
  6460. ProcessInitializeOnLoadAttributes (226ms)
  6461. ProcessInitializeOnLoadMethodAttributes (11ms)
  6462. AfterProcessingInitializeOnLoad (3ms)
  6463. EditorAssembliesLoaded (0ms)
  6464. ExecutionOrderSort2 (0ms)
  6465. AwakeInstancesAfterBackupRestoration (26ms)
  6466. Platform modules already initialized, skipping
  6467. Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins.
  6468. Preloading 0 native plugins for Editor in 0.00 ms.
  6469. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  6470. System memory in use before: 249.1 MB.
  6471. System memory in use after: 249.4 MB.
  6472. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4423.
  6473. Total: 4.058300 ms (FindLiveObjects: 0.459000 ms CreateObjectMapping: 0.131700 ms MarkObjects: 3.427100 ms DeleteObjects: 0.039600 ms)
  6474. AssetImportParameters requested are different than current active one (requested -> active):
  6475. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  6476. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  6477. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  6478. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  6479. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  6480. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  6481. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  6482. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6483. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6484. ========================================================================
  6485. Received Prepare
  6486. Registering precompiled user dll's ...
  6487. Registered in 0.011203 seconds.
  6488. Begin MonoManager ReloadAssembly
  6489. Native extension for WindowsStandalone target not found
  6490. Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins.
  6491. Preloading 0 native plugins for Editor in 0.00 ms.
  6492. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  6493. This could be due to missing scripts or compile error.
  6494. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  6495. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  6496. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  6497. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  6498. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  6499. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  6500. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  6501. Mono: successfully reloaded assembly
  6502. - Completed reload, in 1.222 seconds
  6503. Domain Reload Profiling:
  6504. ReloadAssembly (1222ms)
  6505. BeginReloadAssembly (125ms)
  6506. ExecutionOrderSort (0ms)
  6507. DisableScriptedObjects (5ms)
  6508. BackupInstance (0ms)
  6509. ReleaseScriptingObjects (0ms)
  6510. CreateAndSetChildDomain (36ms)
  6511. EndReloadAssembly (1041ms)
  6512. LoadAssemblies (123ms)
  6513. RebuildTransferFunctionScriptingTraits (0ms)
  6514. SetupTypeCache (372ms)
  6515. ReleaseScriptCaches (1ms)
  6516. RebuildScriptCaches (63ms)
  6517. SetupLoadedEditorAssemblies (342ms)
  6518. LogAssemblyErrors (0ms)
  6519. InitializePlatformSupportModulesInManaged (4ms)
  6520. SetLoadedEditorAssemblies (1ms)
  6521. RefreshPlugins (1ms)
  6522. BeforeProcessingInitializeOnLoad (97ms)
  6523. ProcessInitializeOnLoadAttributes (224ms)
  6524. ProcessInitializeOnLoadMethodAttributes (12ms)
  6525. AfterProcessingInitializeOnLoad (3ms)
  6526. EditorAssembliesLoaded (0ms)
  6527. ExecutionOrderSort2 (0ms)
  6528. AwakeInstancesAfterBackupRestoration (27ms)
  6529. Platform modules already initialized, skipping
  6530. Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins.
  6531. Preloading 0 native plugins for Editor in 0.00 ms.
  6532. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  6533. System memory in use before: 249.1 MB.
  6534. System memory in use after: 249.4 MB.
  6535. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4425.
  6536. Total: 4.563800 ms (FindLiveObjects: 0.594300 ms CreateObjectMapping: 0.140800 ms MarkObjects: 3.787600 ms DeleteObjects: 0.039800 ms)
  6537. AssetImportParameters requested are different than current active one (requested -> active):
  6538. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  6539. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  6540. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  6541. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  6542. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  6543. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  6544. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  6545. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6546. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6547. ========================================================================
  6548. Received Prepare
  6549. Registering precompiled user dll's ...
  6550. Registered in 0.008107 seconds.
  6551. Begin MonoManager ReloadAssembly
  6552. Native extension for WindowsStandalone target not found
  6553. Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins.
  6554. Preloading 0 native plugins for Editor in 0.00 ms.
  6555. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  6556. This could be due to missing scripts or compile error.
  6557. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  6558. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  6559. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  6560. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  6561. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  6562. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  6563. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  6564. Mono: successfully reloaded assembly
  6565. - Completed reload, in 1.292 seconds
  6566. Domain Reload Profiling:
  6567. ReloadAssembly (1293ms)
  6568. BeginReloadAssembly (131ms)
  6569. ExecutionOrderSort (0ms)
  6570. DisableScriptedObjects (6ms)
  6571. BackupInstance (0ms)
  6572. ReleaseScriptingObjects (0ms)
  6573. CreateAndSetChildDomain (37ms)
  6574. EndReloadAssembly (1108ms)
  6575. LoadAssemblies (123ms)
  6576. RebuildTransferFunctionScriptingTraits (0ms)
  6577. SetupTypeCache (351ms)
  6578. ReleaseScriptCaches (1ms)
  6579. RebuildScriptCaches (56ms)
  6580. SetupLoadedEditorAssemblies (440ms)
  6581. LogAssemblyErrors (0ms)
  6582. InitializePlatformSupportModulesInManaged (6ms)
  6583. SetLoadedEditorAssemblies (1ms)
  6584. RefreshPlugins (1ms)
  6585. BeforeProcessingInitializeOnLoad (134ms)
  6586. ProcessInitializeOnLoadAttributes (279ms)
  6587. ProcessInitializeOnLoadMethodAttributes (15ms)
  6588. AfterProcessingInitializeOnLoad (3ms)
  6589. EditorAssembliesLoaded (0ms)
  6590. ExecutionOrderSort2 (0ms)
  6591. AwakeInstancesAfterBackupRestoration (29ms)
  6592. Platform modules already initialized, skipping
  6593. Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins.
  6594. Preloading 0 native plugins for Editor in 0.00 ms.
  6595. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  6596. System memory in use before: 249.1 MB.
  6597. System memory in use after: 249.4 MB.
  6598. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4427.
  6599. Total: 3.976400 ms (FindLiveObjects: 0.465800 ms CreateObjectMapping: 0.128000 ms MarkObjects: 3.347700 ms DeleteObjects: 0.033800 ms)
  6600. AssetImportParameters requested are different than current active one (requested -> active):
  6601. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  6602. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  6603. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  6604. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  6605. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  6606. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  6607. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  6608. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6609. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6610. ========================================================================
  6611. Received Prepare
  6612. Registering precompiled user dll's ...
  6613. Registered in 0.008200 seconds.
  6614. Begin MonoManager ReloadAssembly
  6615. Native extension for WindowsStandalone target not found
  6616. Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins.
  6617. Preloading 0 native plugins for Editor in 0.00 ms.
  6618. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  6619. This could be due to missing scripts or compile error.
  6620. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  6621. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  6622. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  6623. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  6624. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  6625. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  6626. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  6627. Mono: successfully reloaded assembly
  6628. - Completed reload, in 1.290 seconds
  6629. Domain Reload Profiling:
  6630. ReloadAssembly (1290ms)
  6631. BeginReloadAssembly (127ms)
  6632. ExecutionOrderSort (0ms)
  6633. DisableScriptedObjects (5ms)
  6634. BackupInstance (0ms)
  6635. ReleaseScriptingObjects (0ms)
  6636. CreateAndSetChildDomain (36ms)
  6637. EndReloadAssembly (1109ms)
  6638. LoadAssemblies (122ms)
  6639. RebuildTransferFunctionScriptingTraits (0ms)
  6640. SetupTypeCache (384ms)
  6641. ReleaseScriptCaches (1ms)
  6642. RebuildScriptCaches (57ms)
  6643. SetupLoadedEditorAssemblies (392ms)
  6644. LogAssemblyErrors (0ms)
  6645. InitializePlatformSupportModulesInManaged (4ms)
  6646. SetLoadedEditorAssemblies (1ms)
  6647. RefreshPlugins (1ms)
  6648. BeforeProcessingInitializeOnLoad (103ms)
  6649. ProcessInitializeOnLoadAttributes (267ms)
  6650. ProcessInitializeOnLoadMethodAttributes (12ms)
  6651. AfterProcessingInitializeOnLoad (3ms)
  6652. EditorAssembliesLoaded (0ms)
  6653. ExecutionOrderSort2 (0ms)
  6654. AwakeInstancesAfterBackupRestoration (30ms)
  6655. Platform modules already initialized, skipping
  6656. Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins.
  6657. Preloading 0 native plugins for Editor in 0.00 ms.
  6658. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  6659. System memory in use before: 249.1 MB.
  6660. System memory in use after: 249.4 MB.
  6661. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4429.
  6662. Total: 4.154200 ms (FindLiveObjects: 0.430300 ms CreateObjectMapping: 0.123900 ms MarkObjects: 3.560600 ms DeleteObjects: 0.038200 ms)
  6663. AssetImportParameters requested are different than current active one (requested -> active):
  6664. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  6665. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  6666. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  6667. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  6668. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  6669. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  6670. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  6671. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6672. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6673. ========================================================================
  6674. Received Prepare
  6675. Registering precompiled user dll's ...
  6676. Registered in 0.008463 seconds.
  6677. Begin MonoManager ReloadAssembly
  6678. Native extension for WindowsStandalone target not found
  6679. Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
  6680. Preloading 0 native plugins for Editor in 0.00 ms.
  6681. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  6682. This could be due to missing scripts or compile error.
  6683. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  6684. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  6685. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  6686. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  6687. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  6688. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  6689. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  6690. Mono: successfully reloaded assembly
  6691. - Completed reload, in 1.222 seconds
  6692. Domain Reload Profiling:
  6693. ReloadAssembly (1222ms)
  6694. BeginReloadAssembly (143ms)
  6695. ExecutionOrderSort (0ms)
  6696. DisableScriptedObjects (7ms)
  6697. BackupInstance (0ms)
  6698. ReleaseScriptingObjects (0ms)
  6699. CreateAndSetChildDomain (42ms)
  6700. EndReloadAssembly (1019ms)
  6701. LoadAssemblies (135ms)
  6702. RebuildTransferFunctionScriptingTraits (0ms)
  6703. SetupTypeCache (337ms)
  6704. ReleaseScriptCaches (1ms)
  6705. RebuildScriptCaches (57ms)
  6706. SetupLoadedEditorAssemblies (348ms)
  6707. LogAssemblyErrors (0ms)
  6708. InitializePlatformSupportModulesInManaged (4ms)
  6709. SetLoadedEditorAssemblies (1ms)
  6710. RefreshPlugins (1ms)
  6711. BeforeProcessingInitializeOnLoad (100ms)
  6712. ProcessInitializeOnLoadAttributes (227ms)
  6713. ProcessInitializeOnLoadMethodAttributes (12ms)
  6714. AfterProcessingInitializeOnLoad (3ms)
  6715. EditorAssembliesLoaded (0ms)
  6716. ExecutionOrderSort2 (0ms)
  6717. AwakeInstancesAfterBackupRestoration (30ms)
  6718. Platform modules already initialized, skipping
  6719. Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins.
  6720. Preloading 0 native plugins for Editor in 0.00 ms.
  6721. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  6722. System memory in use before: 249.2 MB.
  6723. System memory in use after: 249.4 MB.
  6724. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4431.
  6725. Total: 3.887700 ms (FindLiveObjects: 0.443100 ms CreateObjectMapping: 0.227600 ms MarkObjects: 3.181900 ms DeleteObjects: 0.034200 ms)
  6726. AssetImportParameters requested are different than current active one (requested -> active):
  6727. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  6728. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  6729. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  6730. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  6731. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  6732. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  6733. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  6734. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6735. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6736. ========================================================================
  6737. Received Import Request.
  6738. Time since last request: 10831.517025 seconds.
  6739. path: Assets/Scripts/View/MainView/InstrumentTesting.cs
  6740. artifactKey: Guid(55d1dc98a43025142ae0d760e960ce93) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  6741. Start importing Assets/Scripts/View/MainView/InstrumentTesting.cs using Guid(55d1dc98a43025142ae0d760e960ce93) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '16c425bebff4b043df6952469147c079') in 0.007719 seconds
  6742. Import took 0.014241 seconds .
  6743. ========================================================================
  6744. Received Import Request.
  6745. Time since last request: 135.413553 seconds.
  6746. path: Assets/Scripts/View/MainView/InstrumentTesting.cs
  6747. artifactKey: Guid(55d1dc98a43025142ae0d760e960ce93) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  6748. Start importing Assets/Scripts/View/MainView/InstrumentTesting.cs using Guid(55d1dc98a43025142ae0d760e960ce93) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6bbe3a5df49d15e4f177e4a9677c21eb') in 0.003292 seconds
  6749. Import took 0.008888 seconds .
  6750. ========================================================================
  6751. Received Prepare
  6752. Registering precompiled user dll's ...
  6753. Registered in 0.006768 seconds.
  6754. Begin MonoManager ReloadAssembly
  6755. Native extension for WindowsStandalone target not found
  6756. Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins.
  6757. Preloading 0 native plugins for Editor in 0.00 ms.
  6758. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  6759. This could be due to missing scripts or compile error.
  6760. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  6761. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  6762. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  6763. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  6764. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  6765. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  6766. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  6767. Mono: successfully reloaded assembly
  6768. - Completed reload, in 1.201 seconds
  6769. Domain Reload Profiling:
  6770. ReloadAssembly (1201ms)
  6771. BeginReloadAssembly (129ms)
  6772. ExecutionOrderSort (0ms)
  6773. DisableScriptedObjects (6ms)
  6774. BackupInstance (0ms)
  6775. ReleaseScriptingObjects (0ms)
  6776. CreateAndSetChildDomain (37ms)
  6777. EndReloadAssembly (1013ms)
  6778. LoadAssemblies (126ms)
  6779. RebuildTransferFunctionScriptingTraits (0ms)
  6780. SetupTypeCache (319ms)
  6781. ReleaseScriptCaches (1ms)
  6782. RebuildScriptCaches (56ms)
  6783. SetupLoadedEditorAssemblies (342ms)
  6784. LogAssemblyErrors (0ms)
  6785. InitializePlatformSupportModulesInManaged (4ms)
  6786. SetLoadedEditorAssemblies (1ms)
  6787. RefreshPlugins (1ms)
  6788. BeforeProcessingInitializeOnLoad (96ms)
  6789. ProcessInitializeOnLoadAttributes (226ms)
  6790. ProcessInitializeOnLoadMethodAttributes (11ms)
  6791. AfterProcessingInitializeOnLoad (3ms)
  6792. EditorAssembliesLoaded (0ms)
  6793. ExecutionOrderSort2 (0ms)
  6794. AwakeInstancesAfterBackupRestoration (28ms)
  6795. Platform modules already initialized, skipping
  6796. Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins.
  6797. Preloading 0 native plugins for Editor in 0.00 ms.
  6798. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  6799. System memory in use before: 249.2 MB.
  6800. System memory in use after: 249.4 MB.
  6801. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4433.
  6802. Total: 3.649500 ms (FindLiveObjects: 0.396400 ms CreateObjectMapping: 0.118400 ms MarkObjects: 3.101300 ms DeleteObjects: 0.032300 ms)
  6803. AssetImportParameters requested are different than current active one (requested -> active):
  6804. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  6805. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  6806. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  6807. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  6808. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  6809. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  6810. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  6811. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6812. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6813. ========================================================================
  6814. Received Import Request.
  6815. Time since last request: 104.277740 seconds.
  6816. path: Assets/Scripts/View/MainView/InstrumentTesting.cs
  6817. artifactKey: Guid(55d1dc98a43025142ae0d760e960ce93) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  6818. Start importing Assets/Scripts/View/MainView/InstrumentTesting.cs using Guid(55d1dc98a43025142ae0d760e960ce93) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '53f9aa50c72d0bb3634da381c4c42f7c') in 0.007482 seconds
  6819. Import took 0.013724 seconds .
  6820. ========================================================================
  6821. Received Prepare
  6822. Registering precompiled user dll's ...
  6823. Registered in 0.007701 seconds.
  6824. Begin MonoManager ReloadAssembly
  6825. Native extension for WindowsStandalone target not found
  6826. Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins.
  6827. Preloading 0 native plugins for Editor in 0.00 ms.
  6828. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  6829. This could be due to missing scripts or compile error.
  6830. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  6831. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  6832. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  6833. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  6834. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  6835. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  6836. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  6837. Mono: successfully reloaded assembly
  6838. - Completed reload, in 1.226 seconds
  6839. Domain Reload Profiling:
  6840. ReloadAssembly (1226ms)
  6841. BeginReloadAssembly (128ms)
  6842. ExecutionOrderSort (0ms)
  6843. DisableScriptedObjects (6ms)
  6844. BackupInstance (0ms)
  6845. ReleaseScriptingObjects (0ms)
  6846. CreateAndSetChildDomain (36ms)
  6847. EndReloadAssembly (1042ms)
  6848. LoadAssemblies (124ms)
  6849. RebuildTransferFunctionScriptingTraits (0ms)
  6850. SetupTypeCache (333ms)
  6851. ReleaseScriptCaches (1ms)
  6852. RebuildScriptCaches (56ms)
  6853. SetupLoadedEditorAssemblies (388ms)
  6854. LogAssemblyErrors (0ms)
  6855. InitializePlatformSupportModulesInManaged (4ms)
  6856. SetLoadedEditorAssemblies (1ms)
  6857. RefreshPlugins (1ms)
  6858. BeforeProcessingInitializeOnLoad (137ms)
  6859. ProcessInitializeOnLoadAttributes (227ms)
  6860. ProcessInitializeOnLoadMethodAttributes (15ms)
  6861. AfterProcessingInitializeOnLoad (3ms)
  6862. EditorAssembliesLoaded (0ms)
  6863. ExecutionOrderSort2 (0ms)
  6864. AwakeInstancesAfterBackupRestoration (30ms)
  6865. Platform modules already initialized, skipping
  6866. Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins.
  6867. Preloading 0 native plugins for Editor in 0.00 ms.
  6868. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  6869. System memory in use before: 249.2 MB.
  6870. System memory in use after: 249.4 MB.
  6871. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4435.
  6872. Total: 3.788200 ms (FindLiveObjects: 0.430000 ms CreateObjectMapping: 0.114500 ms MarkObjects: 3.204000 ms DeleteObjects: 0.038500 ms)
  6873. AssetImportParameters requested are different than current active one (requested -> active):
  6874. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  6875. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  6876. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  6877. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  6878. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  6879. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  6880. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  6881. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6882. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6883. ========================================================================
  6884. Received Prepare
  6885. Registering precompiled user dll's ...
  6886. Registered in 0.008238 seconds.
  6887. Begin MonoManager ReloadAssembly
  6888. Native extension for WindowsStandalone target not found
  6889. Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins.
  6890. Preloading 0 native plugins for Editor in 0.00 ms.
  6891. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  6892. This could be due to missing scripts or compile error.
  6893. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  6894. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  6895. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  6896. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  6897. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  6898. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  6899. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  6900. Mono: successfully reloaded assembly
  6901. - Completed reload, in 1.338 seconds
  6902. Domain Reload Profiling:
  6903. ReloadAssembly (1339ms)
  6904. BeginReloadAssembly (156ms)
  6905. ExecutionOrderSort (0ms)
  6906. DisableScriptedObjects (6ms)
  6907. BackupInstance (0ms)
  6908. ReleaseScriptingObjects (0ms)
  6909. CreateAndSetChildDomain (52ms)
  6910. EndReloadAssembly (1120ms)
  6911. LoadAssemblies (141ms)
  6912. RebuildTransferFunctionScriptingTraits (0ms)
  6913. SetupTypeCache (356ms)
  6914. ReleaseScriptCaches (2ms)
  6915. RebuildScriptCaches (63ms)
  6916. SetupLoadedEditorAssemblies (388ms)
  6917. LogAssemblyErrors (0ms)
  6918. InitializePlatformSupportModulesInManaged (5ms)
  6919. SetLoadedEditorAssemblies (1ms)
  6920. RefreshPlugins (1ms)
  6921. BeforeProcessingInitializeOnLoad (110ms)
  6922. ProcessInitializeOnLoadAttributes (257ms)
  6923. ProcessInitializeOnLoadMethodAttributes (11ms)
  6924. AfterProcessingInitializeOnLoad (3ms)
  6925. EditorAssembliesLoaded (0ms)
  6926. ExecutionOrderSort2 (0ms)
  6927. AwakeInstancesAfterBackupRestoration (27ms)
  6928. Platform modules already initialized, skipping
  6929. Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins.
  6930. Preloading 0 native plugins for Editor in 0.00 ms.
  6931. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  6932. System memory in use before: 249.2 MB.
  6933. System memory in use after: 249.4 MB.
  6934. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4437.
  6935. Total: 4.837000 ms (FindLiveObjects: 0.511900 ms CreateObjectMapping: 0.129000 ms MarkObjects: 4.034100 ms DeleteObjects: 0.160600 ms)
  6936. AssetImportParameters requested are different than current active one (requested -> active):
  6937. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  6938. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  6939. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  6940. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  6941. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  6942. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  6943. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  6944. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6945. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6946. ========================================================================
  6947. Received Prepare
  6948. Refreshing native plugins compatible for Editor in 7.37 ms, found 3 plugins.
  6949. Preloading 0 native plugins for Editor in 0.00 ms.
  6950. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  6951. System memory in use before: 179.5 MB.
  6952. System memory in use after: 179.8 MB.
  6953. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4437.
  6954. Total: 4.144300 ms (FindLiveObjects: 0.485400 ms CreateObjectMapping: 0.118900 ms MarkObjects: 3.509300 ms DeleteObjects: 0.029600 ms)
  6955. AssetImportParameters requested are different than current active one (requested -> active):
  6956. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  6957. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  6958. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  6959. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  6960. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  6961. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  6962. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  6963. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6964. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6965. ========================================================================
  6966. Received Prepare
  6967. Refreshing native plugins compatible for Editor in 7.44 ms, found 3 plugins.
  6968. Preloading 0 native plugins for Editor in 0.00 ms.
  6969. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  6970. System memory in use before: 179.5 MB.
  6971. System memory in use after: 179.8 MB.
  6972. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4437.
  6973. Total: 4.030200 ms (FindLiveObjects: 0.498000 ms CreateObjectMapping: 0.122700 ms MarkObjects: 3.387300 ms DeleteObjects: 0.021000 ms)
  6974. AssetImportParameters requested are different than current active one (requested -> active):
  6975. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  6976. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  6977. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  6978. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  6979. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  6980. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  6981. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  6982. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6983. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  6984. ========================================================================
  6985. Received Import Request.
  6986. Time since last request: 224.354854 seconds.
  6987. path: Assets/Scripts/Manager/SocketManager.cs
  6988. artifactKey: Guid(d58db46d22116674caf32decc0902a8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  6989. Start importing Assets/Scripts/Manager/SocketManager.cs using Guid(d58db46d22116674caf32decc0902a8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '720c49e7acbb72e8c6bd37d18e113a14') in 0.004724 seconds
  6990. Import took 0.010989 seconds .
  6991. ========================================================================
  6992. Received Prepare
  6993. Registering precompiled user dll's ...
  6994. Registered in 0.016105 seconds.
  6995. Begin MonoManager ReloadAssembly
  6996. Native extension for WindowsStandalone target not found
  6997. Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins.
  6998. Preloading 0 native plugins for Editor in 0.00 ms.
  6999. UniversalRenderPipelineAsset_Renderer is missing RendererFeatures
  7000. This could be due to missing scripts or compile error.
  7001. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  7002. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  7003. UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
  7004. UnityEngine.Debug:LogError (object,UnityEngine.Object)
  7005. UnityEngine.Rendering.Universal.ScriptableRendererData:ValidateRendererFeatures () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:135)
  7006. UnityEngine.Rendering.Universal.ScriptableRendererData:OnValidate () (at Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs:59)
  7007. (Filename: Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs Line: 135)
  7008. Mono: successfully reloaded assembly
  7009. - Completed reload, in 1.199 seconds
  7010. Domain Reload Profiling:
  7011. ReloadAssembly (1199ms)
  7012. BeginReloadAssembly (138ms)
  7013. ExecutionOrderSort (0ms)
  7014. DisableScriptedObjects (6ms)
  7015. BackupInstance (0ms)
  7016. ReleaseScriptingObjects (0ms)
  7017. CreateAndSetChildDomain (43ms)
  7018. EndReloadAssembly (1006ms)
  7019. LoadAssemblies (127ms)
  7020. RebuildTransferFunctionScriptingTraits (0ms)
  7021. SetupTypeCache (320ms)
  7022. ReleaseScriptCaches (1ms)
  7023. RebuildScriptCaches (63ms)
  7024. SetupLoadedEditorAssemblies (352ms)
  7025. LogAssemblyErrors (0ms)
  7026. InitializePlatformSupportModulesInManaged (4ms)
  7027. SetLoadedEditorAssemblies (1ms)
  7028. RefreshPlugins (1ms)
  7029. BeforeProcessingInitializeOnLoad (103ms)
  7030. ProcessInitializeOnLoadAttributes (230ms)
  7031. ProcessInitializeOnLoadMethodAttributes (11ms)
  7032. AfterProcessingInitializeOnLoad (3ms)
  7033. EditorAssembliesLoaded (0ms)
  7034. ExecutionOrderSort2 (0ms)
  7035. AwakeInstancesAfterBackupRestoration (29ms)
  7036. Platform modules already initialized, skipping
  7037. Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins.
  7038. Preloading 0 native plugins for Editor in 0.00 ms.
  7039. Unloading 3560 Unused Serialized files (Serialized files now loaded: 0)
  7040. System memory in use before: 249.2 MB.
  7041. System memory in use after: 249.4 MB.
  7042. Unloading 30 unused Assets to reduce memory usage. Loaded Objects now: 4439.
  7043. Total: 3.878100 ms (FindLiveObjects: 0.493200 ms CreateObjectMapping: 0.127100 ms MarkObjects: 3.220400 ms DeleteObjects: 0.036200 ms)
  7044. AssetImportParameters requested are different than current active one (requested -> active):
  7045. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  7046. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  7047. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  7048. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  7049. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  7050. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  7051. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  7052. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  7053. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  7054. ========================================================================
  7055. Received Prepare
  7056. Refreshing native plugins compatible for Editor in 6.47 ms, found 3 plugins.
  7057. Preloading 0 native plugins for Editor in 0.00 ms.
  7058. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  7059. System memory in use before: 179.5 MB.
  7060. System memory in use after: 179.8 MB.
  7061. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 4439.
  7062. Total: 3.637900 ms (FindLiveObjects: 0.443000 ms CreateObjectMapping: 0.117400 ms MarkObjects: 3.056200 ms DeleteObjects: 0.020600 ms)
  7063. AssetImportParameters requested are different than current active one (requested -> active):
  7064. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  7065. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  7066. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  7067. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  7068. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  7069. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  7070. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  7071. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  7072. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  7073. AssetImportWorkerClient::OnTransportError - code=2 error=End of file