AssetImportWorker0.log 209 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966
  1. Using pre-set license
  2. Built from '2021.3/china_unity/release' branch; Version is '2021.3.7f1c1 (4f55c298767e) revision 5199298'; Using compiler version '192829333'; Build Type 'Release'
  3. OS: 'Windows 11 (10.0.22621) 64bit CoreCountrySpecific' Language: 'zh' Physical Memory: 16108 MB
  4. BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1
  5. COMMAND LINE ARGUMENTS:
  6. D:\work\Unity 2021.3.7f1c1\Editor\Unity.exe
  7. -adb2
  8. -batchMode
  9. -noUpm
  10. -name
  11. AssetImportWorker0
  12. -projectPath
  13. D:/U3D/airplane
  14. -logFile
  15. Logs/AssetImportWorker0.log
  16. -srvPort
  17. 8464
  18. Successfully changed project path to: D:/U3D/airplane
  19. D:/U3D/airplane
  20. [UnityMemory] Configuration Parameters - Can be set up in boot.config
  21. "memorysetup-bucket-allocator-granularity=16"
  22. "memorysetup-bucket-allocator-bucket-count=8"
  23. "memorysetup-bucket-allocator-block-size=33554432"
  24. "memorysetup-bucket-allocator-block-count=8"
  25. "memorysetup-main-allocator-block-size=16777216"
  26. "memorysetup-thread-allocator-block-size=16777216"
  27. "memorysetup-gfx-main-allocator-block-size=16777216"
  28. "memorysetup-gfx-thread-allocator-block-size=16777216"
  29. "memorysetup-cache-allocator-block-size=4194304"
  30. "memorysetup-typetree-allocator-block-size=2097152"
  31. "memorysetup-profiler-bucket-allocator-granularity=16"
  32. "memorysetup-profiler-bucket-allocator-bucket-count=8"
  33. "memorysetup-profiler-bucket-allocator-block-size=33554432"
  34. "memorysetup-profiler-bucket-allocator-block-count=8"
  35. "memorysetup-profiler-allocator-block-size=16777216"
  36. "memorysetup-profiler-editor-allocator-block-size=1048576"
  37. "memorysetup-temp-allocator-size-main=16777216"
  38. "memorysetup-job-temp-allocator-block-size=2097152"
  39. "memorysetup-job-temp-allocator-block-size-background=1048576"
  40. "memorysetup-job-temp-allocator-reduction-small-platforms=262144"
  41. "memorysetup-temp-allocator-size-background-worker=32768"
  42. "memorysetup-temp-allocator-size-job-worker=262144"
  43. "memorysetup-temp-allocator-size-preload-manager=33554432"
  44. "memorysetup-temp-allocator-size-nav-mesh-worker=65536"
  45. "memorysetup-temp-allocator-size-audio-worker=65536"
  46. "memorysetup-temp-allocator-size-cloud-worker=32768"
  47. "memorysetup-temp-allocator-size-gi-baking-worker=262144"
  48. "memorysetup-temp-allocator-size-gfx=262144"
  49. AS: AutoStreaming module initializing.
  50. Refreshing native plugins compatible for Editor in 87.56 ms, found 3 plugins.
  51. Preloading 0 native plugins for Editor in 0.00 ms.
  52. Initialize engine version: 2021.3.7f1c1 (4f55c298767e)
  53. [Subsystems] Discovering subsystems at path D:/work/Unity 2021.3.7f1c1/Editor/Data/Resources/UnitySubsystems
  54. [Subsystems] Discovering subsystems at path D:/U3D/airplane/Assets
  55. GfxDevice: creating device client; threaded=0; jobified=0
  56. Direct3D:
  57. Version: Direct3D 11.0 [level 11.1]
  58. Renderer: NVIDIA GeForce RTX 3060 Laptop GPU (ID=0x2560)
  59. Vendor: NVIDIA
  60. VRAM: 6009 MB
  61. Driver: 31.0.15.2849
  62. Initialize mono
  63. Mono path[0] = 'D:/work/Unity 2021.3.7f1c1/Editor/Data/Managed'
  64. Mono path[1] = 'D:/work/Unity 2021.3.7f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
  65. Mono config path = 'D:/work/Unity 2021.3.7f1c1/Editor/Data/MonoBleedingEdge/etc'
  66. Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56064
  67. Begin MonoManager ReloadAssembly
  68. Registering precompiled unity dll's ...
  69. Register platform support module: D:/work/Unity 2021.3.7f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
  70. Registered in 0.002047 seconds.
  71. Native extension for WindowsStandalone target not found
  72. Refreshing native plugins compatible for Editor in 61.60 ms, found 3 plugins.
  73. Preloading 0 native plugins for Editor in 0.00 ms.
  74. Mono: successfully reloaded assembly
  75. - Completed reload, in 0.578 seconds
  76. Domain Reload Profiling:
  77. ReloadAssembly (579ms)
  78. BeginReloadAssembly (113ms)
  79. ExecutionOrderSort (0ms)
  80. DisableScriptedObjects (0ms)
  81. BackupInstance (0ms)
  82. ReleaseScriptingObjects (0ms)
  83. CreateAndSetChildDomain (1ms)
  84. EndReloadAssembly (357ms)
  85. LoadAssemblies (110ms)
  86. RebuildTransferFunctionScriptingTraits (0ms)
  87. SetupTypeCache (87ms)
  88. ReleaseScriptCaches (0ms)
  89. RebuildScriptCaches (23ms)
  90. SetupLoadedEditorAssemblies (203ms)
  91. LogAssemblyErrors (0ms)
  92. InitializePlatformSupportModulesInManaged (6ms)
  93. SetLoadedEditorAssemblies (0ms)
  94. RefreshPlugins (62ms)
  95. BeforeProcessingInitializeOnLoad (1ms)
  96. ProcessInitializeOnLoadAttributes (99ms)
  97. ProcessInitializeOnLoadMethodAttributes (35ms)
  98. AfterProcessingInitializeOnLoad (0ms)
  99. EditorAssembliesLoaded (0ms)
  100. ExecutionOrderSort2 (0ms)
  101. AwakeInstancesAfterBackupRestoration (0ms)
  102. Platform modules already initialized, skipping
  103. Registering precompiled user dll's ...
  104. Registered in 0.007901 seconds.
  105. Begin MonoManager ReloadAssembly
  106. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  107. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  108. Native extension for WindowsStandalone target not found
  109. Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins.
  110. Preloading 0 native plugins for Editor in 0.00 ms.
  111. Mono: successfully reloaded assembly
  112. - Completed reload, in 0.866 seconds
  113. Domain Reload Profiling:
  114. ReloadAssembly (867ms)
  115. BeginReloadAssembly (89ms)
  116. ExecutionOrderSort (0ms)
  117. DisableScriptedObjects (4ms)
  118. BackupInstance (0ms)
  119. ReleaseScriptingObjects (0ms)
  120. CreateAndSetChildDomain (15ms)
  121. EndReloadAssembly (672ms)
  122. LoadAssemblies (68ms)
  123. RebuildTransferFunctionScriptingTraits (0ms)
  124. SetupTypeCache (200ms)
  125. ReleaseScriptCaches (0ms)
  126. RebuildScriptCaches (38ms)
  127. SetupLoadedEditorAssemblies (328ms)
  128. LogAssemblyErrors (0ms)
  129. InitializePlatformSupportModulesInManaged (4ms)
  130. SetLoadedEditorAssemblies (0ms)
  131. RefreshPlugins (0ms)
  132. BeforeProcessingInitializeOnLoad (64ms)
  133. ProcessInitializeOnLoadAttributes (219ms)
  134. ProcessInitializeOnLoadMethodAttributes (34ms)
  135. AfterProcessingInitializeOnLoad (6ms)
  136. EditorAssembliesLoaded (0ms)
  137. ExecutionOrderSort2 (0ms)
  138. AwakeInstancesAfterBackupRestoration (5ms)
  139. Platform modules already initialized, skipping
  140. ========================================================================
  141. Worker process is ready to serve import requests
  142. Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds
  143. Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
  144. Preloading 0 native plugins for Editor in 0.00 ms.
  145. Unloading 3377 Unused Serialized files (Serialized files now loaded: 0)
  146. Unloading 27 unused Assets / (111.3 KB). Loaded Objects now: 3835.
  147. Memory consumption went from 116.2 MB to 116.1 MB.
  148. Total: 2.969700 ms (FindLiveObjects: 0.188500 ms CreateObjectMapping: 0.152800 ms MarkObjects: 2.530200 ms DeleteObjects: 0.097200 ms)
  149. AssetImportParameters requested are different than current active one (requested -> active):
  150. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  151. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  152. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  153. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  154. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  155. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  156. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  157. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  158. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  159. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  160. ========================================================================
  161. Received Import Request.
  162. Time since last request: 559835.218471 seconds.
  163. path: Assets/Scripts/MainLogic.cs
  164. artifactKey: Guid(ec27094b1205b93418c734ba0b7fd661) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  165. Start importing Assets/Scripts/MainLogic.cs using Guid(ec27094b1205b93418c734ba0b7fd661) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '628bdeed7c01358ed2affe04c38107c4') in 0.034628 seconds
  166. ========================================================================
  167. Received Prepare
  168. Registering precompiled user dll's ...
  169. Registered in 0.006999 seconds.
  170. Begin MonoManager ReloadAssembly
  171. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  172. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  173. Native extension for WindowsStandalone target not found
  174. Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
  175. Preloading 0 native plugins for Editor in 0.00 ms.
  176. Mono: successfully reloaded assembly
  177. - Completed reload, in 0.818 seconds
  178. Domain Reload Profiling:
  179. ReloadAssembly (819ms)
  180. BeginReloadAssembly (125ms)
  181. ExecutionOrderSort (0ms)
  182. DisableScriptedObjects (4ms)
  183. BackupInstance (0ms)
  184. ReleaseScriptingObjects (0ms)
  185. CreateAndSetChildDomain (35ms)
  186. EndReloadAssembly (604ms)
  187. LoadAssemblies (76ms)
  188. RebuildTransferFunctionScriptingTraits (0ms)
  189. SetupTypeCache (192ms)
  190. ReleaseScriptCaches (2ms)
  191. RebuildScriptCaches (31ms)
  192. SetupLoadedEditorAssemblies (260ms)
  193. LogAssemblyErrors (0ms)
  194. InitializePlatformSupportModulesInManaged (12ms)
  195. SetLoadedEditorAssemblies (0ms)
  196. RefreshPlugins (1ms)
  197. BeforeProcessingInitializeOnLoad (54ms)
  198. ProcessInitializeOnLoadAttributes (163ms)
  199. ProcessInitializeOnLoadMethodAttributes (23ms)
  200. AfterProcessingInitializeOnLoad (8ms)
  201. EditorAssembliesLoaded (0ms)
  202. ExecutionOrderSort2 (0ms)
  203. AwakeInstancesAfterBackupRestoration (6ms)
  204. Platform modules already initialized, skipping
  205. Refreshing native plugins compatible for Editor in 1.69 ms, found 3 plugins.
  206. Preloading 0 native plugins for Editor in 0.00 ms.
  207. Unloading 3373 Unused Serialized files (Serialized files now loaded: 0)
  208. Unloading 20 unused Assets / (78.6 KB). Loaded Objects now: 3839.
  209. Memory consumption went from 116.2 MB to 116.1 MB.
  210. Total: 3.102800 ms (FindLiveObjects: 0.192000 ms CreateObjectMapping: 0.093500 ms MarkObjects: 2.729900 ms DeleteObjects: 0.086500 ms)
  211. AssetImportParameters requested are different than current active one (requested -> active):
  212. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  213. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  214. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  215. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  216. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  217. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  218. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  219. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  220. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  221. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  222. ========================================================================
  223. Received Import Request.
  224. Time since last request: 46.219627 seconds.
  225. path: Assets/Scripts/FlyLogic.cs
  226. artifactKey: Guid(4f3abffa573c3a94380ca885f5485635) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  227. Start importing Assets/Scripts/FlyLogic.cs using Guid(4f3abffa573c3a94380ca885f5485635) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4886aef888eca859d2dad095aac43b10') in 0.015730 seconds
  228. ========================================================================
  229. Received Prepare
  230. Registering precompiled user dll's ...
  231. Registered in 0.012690 seconds.
  232. Begin MonoManager ReloadAssembly
  233. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  234. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  235. Native extension for WindowsStandalone target not found
  236. Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins.
  237. Preloading 0 native plugins for Editor in 0.00 ms.
  238. Mono: successfully reloaded assembly
  239. - Completed reload, in 0.853 seconds
  240. Domain Reload Profiling:
  241. ReloadAssembly (853ms)
  242. BeginReloadAssembly (132ms)
  243. ExecutionOrderSort (0ms)
  244. DisableScriptedObjects (4ms)
  245. BackupInstance (0ms)
  246. ReleaseScriptingObjects (0ms)
  247. CreateAndSetChildDomain (37ms)
  248. EndReloadAssembly (639ms)
  249. LoadAssemblies (70ms)
  250. RebuildTransferFunctionScriptingTraits (0ms)
  251. SetupTypeCache (188ms)
  252. ReleaseScriptCaches (1ms)
  253. RebuildScriptCaches (39ms)
  254. SetupLoadedEditorAssemblies (292ms)
  255. LogAssemblyErrors (0ms)
  256. InitializePlatformSupportModulesInManaged (13ms)
  257. SetLoadedEditorAssemblies (1ms)
  258. RefreshPlugins (1ms)
  259. BeforeProcessingInitializeOnLoad (57ms)
  260. ProcessInitializeOnLoadAttributes (184ms)
  261. ProcessInitializeOnLoadMethodAttributes (27ms)
  262. AfterProcessingInitializeOnLoad (10ms)
  263. EditorAssembliesLoaded (0ms)
  264. ExecutionOrderSort2 (0ms)
  265. AwakeInstancesAfterBackupRestoration (7ms)
  266. Platform modules already initialized, skipping
  267. Refreshing native plugins compatible for Editor in 1.74 ms, found 3 plugins.
  268. Preloading 0 native plugins for Editor in 0.00 ms.
  269. Unloading 3374 Unused Serialized files (Serialized files now loaded: 0)
  270. Unloading 20 unused Assets / (78.6 KB). Loaded Objects now: 3843.
  271. Memory consumption went from 116.2 MB to 116.1 MB.
  272. Total: 2.640800 ms (FindLiveObjects: 0.174400 ms CreateObjectMapping: 0.091000 ms MarkObjects: 2.301000 ms DeleteObjects: 0.073300 ms)
  273. AssetImportParameters requested are different than current active one (requested -> active):
  274. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  275. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  276. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  277. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  278. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  279. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  280. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  281. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  282. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  283. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  284. ========================================================================
  285. Received Import Request.
  286. Time since last request: 26.228646 seconds.
  287. path: Assets/Scripts/RotateLogic.cs
  288. artifactKey: Guid(c698fc0dbe9ebe84c9b5676c22c2c9c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  289. Start importing Assets/Scripts/RotateLogic.cs using Guid(c698fc0dbe9ebe84c9b5676c22c2c9c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd8606894144e596c3bb2b88222689fd3') in 0.006946 seconds
  290. ========================================================================
  291. Received Prepare
  292. Registering precompiled user dll's ...
  293. Registered in 0.006663 seconds.
  294. Begin MonoManager ReloadAssembly
  295. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  296. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  297. Native extension for WindowsStandalone target not found
  298. Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins.
  299. Preloading 0 native plugins for Editor in 0.00 ms.
  300. Mono: successfully reloaded assembly
  301. - Completed reload, in 0.907 seconds
  302. Domain Reload Profiling:
  303. ReloadAssembly (908ms)
  304. BeginReloadAssembly (122ms)
  305. ExecutionOrderSort (0ms)
  306. DisableScriptedObjects (4ms)
  307. BackupInstance (0ms)
  308. ReleaseScriptingObjects (0ms)
  309. CreateAndSetChildDomain (29ms)
  310. EndReloadAssembly (703ms)
  311. LoadAssemblies (80ms)
  312. RebuildTransferFunctionScriptingTraits (0ms)
  313. SetupTypeCache (197ms)
  314. ReleaseScriptCaches (1ms)
  315. RebuildScriptCaches (33ms)
  316. SetupLoadedEditorAssemblies (336ms)
  317. LogAssemblyErrors (0ms)
  318. InitializePlatformSupportModulesInManaged (13ms)
  319. SetLoadedEditorAssemblies (0ms)
  320. RefreshPlugins (1ms)
  321. BeforeProcessingInitializeOnLoad (65ms)
  322. ProcessInitializeOnLoadAttributes (211ms)
  323. ProcessInitializeOnLoadMethodAttributes (31ms)
  324. AfterProcessingInitializeOnLoad (14ms)
  325. EditorAssembliesLoaded (0ms)
  326. ExecutionOrderSort2 (0ms)
  327. AwakeInstancesAfterBackupRestoration (16ms)
  328. Platform modules already initialized, skipping
  329. Refreshing native plugins compatible for Editor in 2.44 ms, found 3 plugins.
  330. Preloading 0 native plugins for Editor in 0.00 ms.
  331. Unloading 3375 Unused Serialized files (Serialized files now loaded: 0)
  332. Unloading 20 unused Assets / (78.7 KB). Loaded Objects now: 3847.
  333. Memory consumption went from 116.2 MB to 116.1 MB.
  334. Total: 3.431100 ms (FindLiveObjects: 0.224500 ms CreateObjectMapping: 0.106700 ms MarkObjects: 2.988100 ms DeleteObjects: 0.110300 ms)
  335. AssetImportParameters requested are different than current active one (requested -> active):
  336. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  337. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  338. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  339. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  340. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  341. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  342. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  343. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  344. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  345. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  346. ========================================================================
  347. Received Prepare
  348. Registering precompiled user dll's ...
  349. Registered in 0.008524 seconds.
  350. Begin MonoManager ReloadAssembly
  351. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  352. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  353. Native extension for WindowsStandalone target not found
  354. Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins.
  355. Preloading 0 native plugins for Editor in 0.00 ms.
  356. Mono: successfully reloaded assembly
  357. - Completed reload, in 1.067 seconds
  358. Domain Reload Profiling:
  359. ReloadAssembly (1068ms)
  360. BeginReloadAssembly (143ms)
  361. ExecutionOrderSort (0ms)
  362. DisableScriptedObjects (4ms)
  363. BackupInstance (0ms)
  364. ReleaseScriptingObjects (0ms)
  365. CreateAndSetChildDomain (32ms)
  366. EndReloadAssembly (808ms)
  367. LoadAssemblies (99ms)
  368. RebuildTransferFunctionScriptingTraits (0ms)
  369. SetupTypeCache (242ms)
  370. ReleaseScriptCaches (1ms)
  371. RebuildScriptCaches (41ms)
  372. SetupLoadedEditorAssemblies (370ms)
  373. LogAssemblyErrors (0ms)
  374. InitializePlatformSupportModulesInManaged (15ms)
  375. SetLoadedEditorAssemblies (1ms)
  376. RefreshPlugins (1ms)
  377. BeforeProcessingInitializeOnLoad (79ms)
  378. ProcessInitializeOnLoadAttributes (227ms)
  379. ProcessInitializeOnLoadMethodAttributes (34ms)
  380. AfterProcessingInitializeOnLoad (15ms)
  381. EditorAssembliesLoaded (0ms)
  382. ExecutionOrderSort2 (0ms)
  383. AwakeInstancesAfterBackupRestoration (9ms)
  384. Platform modules already initialized, skipping
  385. Refreshing native plugins compatible for Editor in 2.05 ms, found 3 plugins.
  386. Preloading 0 native plugins for Editor in 0.00 ms.
  387. Unloading 3375 Unused Serialized files (Serialized files now loaded: 0)
  388. Unloading 20 unused Assets / (78.5 KB). Loaded Objects now: 3850.
  389. Memory consumption went from 116.2 MB to 116.1 MB.
  390. Total: 3.550500 ms (FindLiveObjects: 0.203000 ms CreateObjectMapping: 0.134500 ms MarkObjects: 3.102300 ms DeleteObjects: 0.109500 ms)
  391. AssetImportParameters requested are different than current active one (requested -> active):
  392. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  393. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  394. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  395. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  396. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  397. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  398. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  399. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  400. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  401. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  402. ========================================================================
  403. Received Import Request.
  404. Time since last request: 275.468531 seconds.
  405. path: Assets/Scripts/RotateLogic.cs
  406. artifactKey: Guid(c698fc0dbe9ebe84c9b5676c22c2c9c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  407. Start importing Assets/Scripts/RotateLogic.cs using Guid(c698fc0dbe9ebe84c9b5676c22c2c9c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3975a7be48a3015aa0f52eee69e69b6e') in 0.006741 seconds
  408. ========================================================================
  409. Received Prepare
  410. Registering precompiled user dll's ...
  411. Registered in 0.008973 seconds.
  412. Begin MonoManager ReloadAssembly
  413. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  414. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  415. Native extension for WindowsStandalone target not found
  416. Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
  417. Preloading 0 native plugins for Editor in 0.00 ms.
  418. Mono: successfully reloaded assembly
  419. - Completed reload, in 0.833 seconds
  420. Domain Reload Profiling:
  421. ReloadAssembly (834ms)
  422. BeginReloadAssembly (124ms)
  423. ExecutionOrderSort (0ms)
  424. DisableScriptedObjects (4ms)
  425. BackupInstance (0ms)
  426. ReleaseScriptingObjects (0ms)
  427. CreateAndSetChildDomain (29ms)
  428. EndReloadAssembly (628ms)
  429. LoadAssemblies (83ms)
  430. RebuildTransferFunctionScriptingTraits (0ms)
  431. SetupTypeCache (191ms)
  432. ReleaseScriptCaches (1ms)
  433. RebuildScriptCaches (30ms)
  434. SetupLoadedEditorAssemblies (289ms)
  435. LogAssemblyErrors (0ms)
  436. InitializePlatformSupportModulesInManaged (10ms)
  437. SetLoadedEditorAssemblies (1ms)
  438. RefreshPlugins (1ms)
  439. BeforeProcessingInitializeOnLoad (58ms)
  440. ProcessInitializeOnLoadAttributes (183ms)
  441. ProcessInitializeOnLoadMethodAttributes (28ms)
  442. AfterProcessingInitializeOnLoad (8ms)
  443. EditorAssembliesLoaded (0ms)
  444. ExecutionOrderSort2 (0ms)
  445. AwakeInstancesAfterBackupRestoration (6ms)
  446. Platform modules already initialized, skipping
  447. Refreshing native plugins compatible for Editor in 1.90 ms, found 3 plugins.
  448. Preloading 0 native plugins for Editor in 0.00 ms.
  449. Unloading 3375 Unused Serialized files (Serialized files now loaded: 0)
  450. Unloading 20 unused Assets / (78.7 KB). Loaded Objects now: 3853.
  451. Memory consumption went from 116.2 MB to 116.2 MB.
  452. Total: 3.014200 ms (FindLiveObjects: 0.195900 ms CreateObjectMapping: 0.101000 ms MarkObjects: 2.612500 ms DeleteObjects: 0.103600 ms)
  453. AssetImportParameters requested are different than current active one (requested -> active):
  454. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  455. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  456. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  457. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  458. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  459. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  460. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  461. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  462. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  463. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  464. ========================================================================
  465. Received Prepare
  466. Registering precompiled user dll's ...
  467. Registered in 0.008215 seconds.
  468. Begin MonoManager ReloadAssembly
  469. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  470. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  471. Native extension for WindowsStandalone target not found
  472. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  473. Preloading 0 native plugins for Editor in 0.00 ms.
  474. Mono: successfully reloaded assembly
  475. - Completed reload, in 0.814 seconds
  476. Domain Reload Profiling:
  477. ReloadAssembly (815ms)
  478. BeginReloadAssembly (124ms)
  479. ExecutionOrderSort (0ms)
  480. DisableScriptedObjects (4ms)
  481. BackupInstance (0ms)
  482. ReleaseScriptingObjects (0ms)
  483. CreateAndSetChildDomain (26ms)
  484. EndReloadAssembly (610ms)
  485. LoadAssemblies (88ms)
  486. RebuildTransferFunctionScriptingTraits (0ms)
  487. SetupTypeCache (196ms)
  488. ReleaseScriptCaches (1ms)
  489. RebuildScriptCaches (37ms)
  490. SetupLoadedEditorAssemblies (258ms)
  491. LogAssemblyErrors (0ms)
  492. InitializePlatformSupportModulesInManaged (10ms)
  493. SetLoadedEditorAssemblies (0ms)
  494. RefreshPlugins (1ms)
  495. BeforeProcessingInitializeOnLoad (52ms)
  496. ProcessInitializeOnLoadAttributes (165ms)
  497. ProcessInitializeOnLoadMethodAttributes (23ms)
  498. AfterProcessingInitializeOnLoad (7ms)
  499. EditorAssembliesLoaded (0ms)
  500. ExecutionOrderSort2 (0ms)
  501. AwakeInstancesAfterBackupRestoration (6ms)
  502. Platform modules already initialized, skipping
  503. Refreshing native plugins compatible for Editor in 2.07 ms, found 3 plugins.
  504. Preloading 0 native plugins for Editor in 0.00 ms.
  505. Unloading 3375 Unused Serialized files (Serialized files now loaded: 0)
  506. Unloading 20 unused Assets / (84.7 KB). Loaded Objects now: 3856.
  507. Memory consumption went from 116.2 MB to 116.2 MB.
  508. Total: 3.574900 ms (FindLiveObjects: 0.200900 ms CreateObjectMapping: 0.101800 ms MarkObjects: 3.004400 ms DeleteObjects: 0.266200 ms)
  509. AssetImportParameters requested are different than current active one (requested -> active):
  510. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  511. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  512. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  513. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  514. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  515. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  516. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  517. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  518. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  519. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  520. ========================================================================
  521. Received Prepare
  522. Registering precompiled user dll's ...
  523. Registered in 0.012344 seconds.
  524. Begin MonoManager ReloadAssembly
  525. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  526. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  527. Native extension for WindowsStandalone target not found
  528. Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins.
  529. Preloading 0 native plugins for Editor in 0.00 ms.
  530. Mono: successfully reloaded assembly
  531. - Completed reload, in 0.834 seconds
  532. Domain Reload Profiling:
  533. ReloadAssembly (835ms)
  534. BeginReloadAssembly (133ms)
  535. ExecutionOrderSort (0ms)
  536. DisableScriptedObjects (4ms)
  537. BackupInstance (0ms)
  538. ReleaseScriptingObjects (0ms)
  539. CreateAndSetChildDomain (29ms)
  540. EndReloadAssembly (611ms)
  541. LoadAssemblies (90ms)
  542. RebuildTransferFunctionScriptingTraits (0ms)
  543. SetupTypeCache (181ms)
  544. ReleaseScriptCaches (1ms)
  545. RebuildScriptCaches (33ms)
  546. SetupLoadedEditorAssemblies (277ms)
  547. LogAssemblyErrors (0ms)
  548. InitializePlatformSupportModulesInManaged (10ms)
  549. SetLoadedEditorAssemblies (0ms)
  550. RefreshPlugins (0ms)
  551. BeforeProcessingInitializeOnLoad (52ms)
  552. ProcessInitializeOnLoadAttributes (179ms)
  553. ProcessInitializeOnLoadMethodAttributes (26ms)
  554. AfterProcessingInitializeOnLoad (9ms)
  555. EditorAssembliesLoaded (0ms)
  556. ExecutionOrderSort2 (0ms)
  557. AwakeInstancesAfterBackupRestoration (8ms)
  558. Platform modules already initialized, skipping
  559. Refreshing native plugins compatible for Editor in 2.43 ms, found 3 plugins.
  560. Preloading 0 native plugins for Editor in 0.00 ms.
  561. Unloading 3375 Unused Serialized files (Serialized files now loaded: 0)
  562. Unloading 20 unused Assets / (78.7 KB). Loaded Objects now: 3859.
  563. Memory consumption went from 116.3 MB to 116.2 MB.
  564. Total: 3.623200 ms (FindLiveObjects: 0.217100 ms CreateObjectMapping: 0.106100 ms MarkObjects: 3.167500 ms DeleteObjects: 0.130600 ms)
  565. AssetImportParameters requested are different than current active one (requested -> active):
  566. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  567. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  568. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  569. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  570. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  571. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  572. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  573. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  574. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  575. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  576. ========================================================================
  577. Received Prepare
  578. Registering precompiled user dll's ...
  579. Registered in 0.008223 seconds.
  580. Begin MonoManager ReloadAssembly
  581. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  582. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  583. Native extension for WindowsStandalone target not found
  584. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  585. Preloading 0 native plugins for Editor in 0.00 ms.
  586. Mono: successfully reloaded assembly
  587. - Completed reload, in 0.806 seconds
  588. Domain Reload Profiling:
  589. ReloadAssembly (806ms)
  590. BeginReloadAssembly (136ms)
  591. ExecutionOrderSort (0ms)
  592. DisableScriptedObjects (4ms)
  593. BackupInstance (0ms)
  594. ReleaseScriptingObjects (0ms)
  595. CreateAndSetChildDomain (29ms)
  596. EndReloadAssembly (581ms)
  597. LoadAssemblies (94ms)
  598. RebuildTransferFunctionScriptingTraits (0ms)
  599. SetupTypeCache (176ms)
  600. ReleaseScriptCaches (1ms)
  601. RebuildScriptCaches (32ms)
  602. SetupLoadedEditorAssemblies (261ms)
  603. LogAssemblyErrors (0ms)
  604. InitializePlatformSupportModulesInManaged (10ms)
  605. SetLoadedEditorAssemblies (0ms)
  606. RefreshPlugins (1ms)
  607. BeforeProcessingInitializeOnLoad (52ms)
  608. ProcessInitializeOnLoadAttributes (167ms)
  609. ProcessInitializeOnLoadMethodAttributes (23ms)
  610. AfterProcessingInitializeOnLoad (7ms)
  611. EditorAssembliesLoaded (0ms)
  612. ExecutionOrderSort2 (0ms)
  613. AwakeInstancesAfterBackupRestoration (6ms)
  614. Platform modules already initialized, skipping
  615. Refreshing native plugins compatible for Editor in 1.87 ms, found 3 plugins.
  616. Preloading 0 native plugins for Editor in 0.00 ms.
  617. Unloading 3375 Unused Serialized files (Serialized files now loaded: 0)
  618. Unloading 20 unused Assets / (78.6 KB). Loaded Objects now: 3862.
  619. Memory consumption went from 116.3 MB to 116.2 MB.
  620. Total: 2.908900 ms (FindLiveObjects: 0.200300 ms CreateObjectMapping: 0.158100 ms MarkObjects: 2.461000 ms DeleteObjects: 0.088800 ms)
  621. AssetImportParameters requested are different than current active one (requested -> active):
  622. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  623. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  624. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  625. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  626. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  627. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  628. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  629. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  630. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  631. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  632. ========================================================================
  633. Received Import Request.
  634. Time since last request: 258.489007 seconds.
  635. path: Assets/Scripts/EventLogic.cs
  636. artifactKey: Guid(c7cbcc118c29232409a507369125c59b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  637. Start importing Assets/Scripts/EventLogic.cs using Guid(c7cbcc118c29232409a507369125c59b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1469c7f256c6d736b36742e61b6830b8') in 0.009642 seconds
  638. ========================================================================
  639. Received Prepare
  640. Registering precompiled user dll's ...
  641. Registered in 0.008438 seconds.
  642. Begin MonoManager ReloadAssembly
  643. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  644. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  645. Native extension for WindowsStandalone target not found
  646. Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
  647. Preloading 0 native plugins for Editor in 0.00 ms.
  648. Mono: successfully reloaded assembly
  649. - Completed reload, in 0.890 seconds
  650. Domain Reload Profiling:
  651. ReloadAssembly (891ms)
  652. BeginReloadAssembly (129ms)
  653. ExecutionOrderSort (0ms)
  654. DisableScriptedObjects (5ms)
  655. BackupInstance (0ms)
  656. ReleaseScriptingObjects (0ms)
  657. CreateAndSetChildDomain (29ms)
  658. EndReloadAssembly (675ms)
  659. LoadAssemblies (86ms)
  660. RebuildTransferFunctionScriptingTraits (0ms)
  661. SetupTypeCache (188ms)
  662. ReleaseScriptCaches (1ms)
  663. RebuildScriptCaches (30ms)
  664. SetupLoadedEditorAssemblies (343ms)
  665. LogAssemblyErrors (0ms)
  666. InitializePlatformSupportModulesInManaged (11ms)
  667. SetLoadedEditorAssemblies (0ms)
  668. RefreshPlugins (0ms)
  669. BeforeProcessingInitializeOnLoad (89ms)
  670. ProcessInitializeOnLoadAttributes (211ms)
  671. ProcessInitializeOnLoadMethodAttributes (24ms)
  672. AfterProcessingInitializeOnLoad (8ms)
  673. EditorAssembliesLoaded (0ms)
  674. ExecutionOrderSort2 (0ms)
  675. AwakeInstancesAfterBackupRestoration (6ms)
  676. Platform modules already initialized, skipping
  677. Refreshing native plugins compatible for Editor in 1.74 ms, found 3 plugins.
  678. Preloading 0 native plugins for Editor in 0.00 ms.
  679. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  680. Unloading 20 unused Assets / (78.6 KB). Loaded Objects now: 3866.
  681. Memory consumption went from 116.3 MB to 116.2 MB.
  682. Total: 3.436500 ms (FindLiveObjects: 0.242600 ms CreateObjectMapping: 0.115900 ms MarkObjects: 2.948800 ms DeleteObjects: 0.127800 ms)
  683. AssetImportParameters requested are different than current active one (requested -> active):
  684. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  685. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  686. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  687. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  688. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  689. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  690. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  691. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  692. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  693. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  694. ========================================================================
  695. Received Import Request.
  696. Time since last request: 64.112066 seconds.
  697. path: Assets/Scripts/EventLogic.cs
  698. artifactKey: Guid(c7cbcc118c29232409a507369125c59b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  699. Start importing Assets/Scripts/EventLogic.cs using Guid(c7cbcc118c29232409a507369125c59b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001527 seconds code(4) message(Build asset version error: assets/scripts/eventlogic.cs in SourceAssetDB has modification time of '2023-07-27T01:03:18.3377121Z' while content on disk has modification time of '2023-07-27T01:03:18.6596991Z')
  700. ERROR: Build asset version error: assets/scripts/eventlogic.cs in SourceAssetDB has modification time of '2023-07-27T01:03:18.3377121Z' while content on disk has modification time of '2023-07-27T01:03:18.6596991Z'
  701. ========================================================================
  702. Received Prepare
  703. Registering precompiled user dll's ...
  704. Registered in 0.010956 seconds.
  705. Begin MonoManager ReloadAssembly
  706. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  707. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  708. Native extension for WindowsStandalone target not found
  709. Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins.
  710. Preloading 0 native plugins for Editor in 0.00 ms.
  711. Mono: successfully reloaded assembly
  712. - Completed reload, in 0.846 seconds
  713. Domain Reload Profiling:
  714. ReloadAssembly (846ms)
  715. BeginReloadAssembly (124ms)
  716. ExecutionOrderSort (0ms)
  717. DisableScriptedObjects (4ms)
  718. BackupInstance (0ms)
  719. ReleaseScriptingObjects (0ms)
  720. CreateAndSetChildDomain (25ms)
  721. EndReloadAssembly (641ms)
  722. LoadAssemblies (81ms)
  723. RebuildTransferFunctionScriptingTraits (0ms)
  724. SetupTypeCache (199ms)
  725. ReleaseScriptCaches (1ms)
  726. RebuildScriptCaches (38ms)
  727. SetupLoadedEditorAssemblies (278ms)
  728. LogAssemblyErrors (0ms)
  729. InitializePlatformSupportModulesInManaged (12ms)
  730. SetLoadedEditorAssemblies (0ms)
  731. RefreshPlugins (1ms)
  732. BeforeProcessingInitializeOnLoad (55ms)
  733. ProcessInitializeOnLoadAttributes (178ms)
  734. ProcessInitializeOnLoadMethodAttributes (24ms)
  735. AfterProcessingInitializeOnLoad (8ms)
  736. EditorAssembliesLoaded (0ms)
  737. ExecutionOrderSort2 (0ms)
  738. AwakeInstancesAfterBackupRestoration (6ms)
  739. Platform modules already initialized, skipping
  740. Refreshing native plugins compatible for Editor in 1.92 ms, found 3 plugins.
  741. Preloading 0 native plugins for Editor in 0.00 ms.
  742. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  743. Unloading 20 unused Assets / (78.5 KB). Loaded Objects now: 3869.
  744. Memory consumption went from 116.3 MB to 116.2 MB.
  745. Total: 3.160200 ms (FindLiveObjects: 0.192000 ms CreateObjectMapping: 0.099900 ms MarkObjects: 2.774400 ms DeleteObjects: 0.092700 ms)
  746. AssetImportParameters requested are different than current active one (requested -> active):
  747. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  748. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  749. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  750. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  751. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  752. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  753. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  754. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  755. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  756. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  757. ========================================================================
  758. Received Prepare
  759. Registering precompiled user dll's ...
  760. Registered in 0.012649 seconds.
  761. Begin MonoManager ReloadAssembly
  762. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  763. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  764. Native extension for WindowsStandalone target not found
  765. Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
  766. Preloading 0 native plugins for Editor in 0.00 ms.
  767. Mono: successfully reloaded assembly
  768. - Completed reload, in 0.766 seconds
  769. Domain Reload Profiling:
  770. ReloadAssembly (767ms)
  771. BeginReloadAssembly (122ms)
  772. ExecutionOrderSort (0ms)
  773. DisableScriptedObjects (4ms)
  774. BackupInstance (0ms)
  775. ReleaseScriptingObjects (0ms)
  776. CreateAndSetChildDomain (26ms)
  777. EndReloadAssembly (562ms)
  778. LoadAssemblies (81ms)
  779. RebuildTransferFunctionScriptingTraits (0ms)
  780. SetupTypeCache (179ms)
  781. ReleaseScriptCaches (1ms)
  782. RebuildScriptCaches (32ms)
  783. SetupLoadedEditorAssemblies (248ms)
  784. LogAssemblyErrors (0ms)
  785. InitializePlatformSupportModulesInManaged (10ms)
  786. SetLoadedEditorAssemblies (0ms)
  787. RefreshPlugins (1ms)
  788. BeforeProcessingInitializeOnLoad (49ms)
  789. ProcessInitializeOnLoadAttributes (160ms)
  790. ProcessInitializeOnLoadMethodAttributes (21ms)
  791. AfterProcessingInitializeOnLoad (7ms)
  792. EditorAssembliesLoaded (0ms)
  793. ExecutionOrderSort2 (0ms)
  794. AwakeInstancesAfterBackupRestoration (6ms)
  795. Platform modules already initialized, skipping
  796. Refreshing native plugins compatible for Editor in 2.30 ms, found 3 plugins.
  797. Preloading 0 native plugins for Editor in 0.00 ms.
  798. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  799. Unloading 20 unused Assets / (78.3 KB). Loaded Objects now: 3872.
  800. Memory consumption went from 116.3 MB to 116.3 MB.
  801. Total: 2.887600 ms (FindLiveObjects: 0.185900 ms CreateObjectMapping: 0.093600 ms MarkObjects: 2.510200 ms DeleteObjects: 0.096500 ms)
  802. AssetImportParameters requested are different than current active one (requested -> active):
  803. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  804. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  805. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  806. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  807. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  808. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  809. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  810. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  811. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  812. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  813. ========================================================================
  814. Received Prepare
  815. Registering precompiled user dll's ...
  816. Registered in 0.008776 seconds.
  817. Begin MonoManager ReloadAssembly
  818. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  819. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  820. Native extension for WindowsStandalone target not found
  821. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  822. Preloading 0 native plugins for Editor in 0.00 ms.
  823. Mono: successfully reloaded assembly
  824. - Completed reload, in 0.826 seconds
  825. Domain Reload Profiling:
  826. ReloadAssembly (827ms)
  827. BeginReloadAssembly (123ms)
  828. ExecutionOrderSort (0ms)
  829. DisableScriptedObjects (4ms)
  830. BackupInstance (0ms)
  831. ReleaseScriptingObjects (0ms)
  832. CreateAndSetChildDomain (25ms)
  833. EndReloadAssembly (617ms)
  834. LoadAssemblies (85ms)
  835. RebuildTransferFunctionScriptingTraits (0ms)
  836. SetupTypeCache (191ms)
  837. ReleaseScriptCaches (1ms)
  838. RebuildScriptCaches (32ms)
  839. SetupLoadedEditorAssemblies (274ms)
  840. LogAssemblyErrors (0ms)
  841. InitializePlatformSupportModulesInManaged (10ms)
  842. SetLoadedEditorAssemblies (1ms)
  843. RefreshPlugins (1ms)
  844. BeforeProcessingInitializeOnLoad (52ms)
  845. ProcessInitializeOnLoadAttributes (175ms)
  846. ProcessInitializeOnLoadMethodAttributes (25ms)
  847. AfterProcessingInitializeOnLoad (10ms)
  848. EditorAssembliesLoaded (0ms)
  849. ExecutionOrderSort2 (0ms)
  850. AwakeInstancesAfterBackupRestoration (7ms)
  851. Platform modules already initialized, skipping
  852. Refreshing native plugins compatible for Editor in 2.04 ms, found 3 plugins.
  853. Preloading 0 native plugins for Editor in 0.00 ms.
  854. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  855. Unloading 20 unused Assets / (78.1 KB). Loaded Objects now: 3875.
  856. Memory consumption went from 116.4 MB to 116.3 MB.
  857. Total: 3.346100 ms (FindLiveObjects: 0.237100 ms CreateObjectMapping: 0.118100 ms MarkObjects: 2.888500 ms DeleteObjects: 0.101100 ms)
  858. AssetImportParameters requested are different than current active one (requested -> active):
  859. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  860. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  861. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  862. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  863. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  864. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  865. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  866. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  867. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  868. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  869. ========================================================================
  870. Received Prepare
  871. Registering precompiled user dll's ...
  872. Registered in 0.007986 seconds.
  873. Begin MonoManager ReloadAssembly
  874. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  875. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  876. Native extension for WindowsStandalone target not found
  877. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  878. Preloading 0 native plugins for Editor in 0.00 ms.
  879. Mono: successfully reloaded assembly
  880. - Completed reload, in 0.816 seconds
  881. Domain Reload Profiling:
  882. ReloadAssembly (817ms)
  883. BeginReloadAssembly (134ms)
  884. ExecutionOrderSort (0ms)
  885. DisableScriptedObjects (4ms)
  886. BackupInstance (0ms)
  887. ReleaseScriptingObjects (0ms)
  888. CreateAndSetChildDomain (30ms)
  889. EndReloadAssembly (591ms)
  890. LoadAssemblies (91ms)
  891. RebuildTransferFunctionScriptingTraits (0ms)
  892. SetupTypeCache (183ms)
  893. ReleaseScriptCaches (1ms)
  894. RebuildScriptCaches (37ms)
  895. SetupLoadedEditorAssemblies (258ms)
  896. LogAssemblyErrors (0ms)
  897. InitializePlatformSupportModulesInManaged (11ms)
  898. SetLoadedEditorAssemblies (0ms)
  899. RefreshPlugins (1ms)
  900. BeforeProcessingInitializeOnLoad (52ms)
  901. ProcessInitializeOnLoadAttributes (162ms)
  902. ProcessInitializeOnLoadMethodAttributes (23ms)
  903. AfterProcessingInitializeOnLoad (8ms)
  904. EditorAssembliesLoaded (0ms)
  905. ExecutionOrderSort2 (0ms)
  906. AwakeInstancesAfterBackupRestoration (6ms)
  907. Platform modules already initialized, skipping
  908. Refreshing native plugins compatible for Editor in 1.84 ms, found 3 plugins.
  909. Preloading 0 native plugins for Editor in 0.00 ms.
  910. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  911. Unloading 20 unused Assets / (78.3 KB). Loaded Objects now: 3878.
  912. Memory consumption went from 116.4 MB to 116.3 MB.
  913. Total: 2.969200 ms (FindLiveObjects: 0.195900 ms CreateObjectMapping: 0.097700 ms MarkObjects: 2.571100 ms DeleteObjects: 0.102700 ms)
  914. AssetImportParameters requested are different than current active one (requested -> active):
  915. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  916. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  917. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  918. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  919. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  920. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  921. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  922. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  923. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  924. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  925. ========================================================================
  926. Received Prepare
  927. Registering precompiled user dll's ...
  928. Registered in 0.009362 seconds.
  929. Begin MonoManager ReloadAssembly
  930. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  931. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  932. Native extension for WindowsStandalone target not found
  933. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  934. Preloading 0 native plugins for Editor in 0.00 ms.
  935. Mono: successfully reloaded assembly
  936. - Completed reload, in 0.839 seconds
  937. Domain Reload Profiling:
  938. ReloadAssembly (839ms)
  939. BeginReloadAssembly (131ms)
  940. ExecutionOrderSort (0ms)
  941. DisableScriptedObjects (4ms)
  942. BackupInstance (0ms)
  943. ReleaseScriptingObjects (0ms)
  944. CreateAndSetChildDomain (29ms)
  945. EndReloadAssembly (628ms)
  946. LoadAssemblies (85ms)
  947. RebuildTransferFunctionScriptingTraits (0ms)
  948. SetupTypeCache (188ms)
  949. ReleaseScriptCaches (1ms)
  950. RebuildScriptCaches (38ms)
  951. SetupLoadedEditorAssemblies (275ms)
  952. LogAssemblyErrors (0ms)
  953. InitializePlatformSupportModulesInManaged (11ms)
  954. SetLoadedEditorAssemblies (0ms)
  955. RefreshPlugins (1ms)
  956. BeforeProcessingInitializeOnLoad (61ms)
  957. ProcessInitializeOnLoadAttributes (170ms)
  958. ProcessInitializeOnLoadMethodAttributes (24ms)
  959. AfterProcessingInitializeOnLoad (8ms)
  960. EditorAssembliesLoaded (0ms)
  961. ExecutionOrderSort2 (0ms)
  962. AwakeInstancesAfterBackupRestoration (7ms)
  963. Platform modules already initialized, skipping
  964. Refreshing native plugins compatible for Editor in 2.70 ms, found 3 plugins.
  965. Preloading 0 native plugins for Editor in 0.00 ms.
  966. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  967. Unloading 20 unused Assets / (78.3 KB). Loaded Objects now: 3881.
  968. Memory consumption went from 116.4 MB to 116.3 MB.
  969. Total: 3.284800 ms (FindLiveObjects: 0.216500 ms CreateObjectMapping: 0.115400 ms MarkObjects: 2.859100 ms DeleteObjects: 0.092800 ms)
  970. AssetImportParameters requested are different than current active one (requested -> active):
  971. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  972. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  973. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  974. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  975. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  976. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  977. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  978. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  979. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  980. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  981. ========================================================================
  982. Received Prepare
  983. Registering precompiled user dll's ...
  984. Registered in 0.007262 seconds.
  985. Begin MonoManager ReloadAssembly
  986. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  987. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  988. Native extension for WindowsStandalone target not found
  989. Refreshing native plugins compatible for Editor in 0.66 ms, found 3 plugins.
  990. Preloading 0 native plugins for Editor in 0.00 ms.
  991. Mono: successfully reloaded assembly
  992. - Completed reload, in 0.820 seconds
  993. Domain Reload Profiling:
  994. ReloadAssembly (821ms)
  995. BeginReloadAssembly (117ms)
  996. ExecutionOrderSort (0ms)
  997. DisableScriptedObjects (4ms)
  998. BackupInstance (0ms)
  999. ReleaseScriptingObjects (0ms)
  1000. CreateAndSetChildDomain (26ms)
  1001. EndReloadAssembly (614ms)
  1002. LoadAssemblies (80ms)
  1003. RebuildTransferFunctionScriptingTraits (0ms)
  1004. SetupTypeCache (202ms)
  1005. ReleaseScriptCaches (1ms)
  1006. RebuildScriptCaches (30ms)
  1007. SetupLoadedEditorAssemblies (268ms)
  1008. LogAssemblyErrors (0ms)
  1009. InitializePlatformSupportModulesInManaged (10ms)
  1010. SetLoadedEditorAssemblies (0ms)
  1011. RefreshPlugins (1ms)
  1012. BeforeProcessingInitializeOnLoad (51ms)
  1013. ProcessInitializeOnLoadAttributes (170ms)
  1014. ProcessInitializeOnLoadMethodAttributes (29ms)
  1015. AfterProcessingInitializeOnLoad (7ms)
  1016. EditorAssembliesLoaded (0ms)
  1017. ExecutionOrderSort2 (0ms)
  1018. AwakeInstancesAfterBackupRestoration (6ms)
  1019. Platform modules already initialized, skipping
  1020. Refreshing native plugins compatible for Editor in 1.91 ms, found 3 plugins.
  1021. Preloading 0 native plugins for Editor in 0.00 ms.
  1022. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1023. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3884.
  1024. Memory consumption went from 116.4 MB to 116.3 MB.
  1025. Total: 3.939900 ms (FindLiveObjects: 0.251800 ms CreateObjectMapping: 0.145900 ms MarkObjects: 3.450100 ms DeleteObjects: 0.090500 ms)
  1026. AssetImportParameters requested are different than current active one (requested -> active):
  1027. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1028. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1029. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1030. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1031. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1032. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1033. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1034. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1035. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1036. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1037. ========================================================================
  1038. Received Prepare
  1039. Registering precompiled user dll's ...
  1040. Registered in 0.018792 seconds.
  1041. Begin MonoManager ReloadAssembly
  1042. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1043. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1044. Native extension for WindowsStandalone target not found
  1045. Refreshing native plugins compatible for Editor in 0.84 ms, found 3 plugins.
  1046. Preloading 0 native plugins for Editor in 0.00 ms.
  1047. Mono: successfully reloaded assembly
  1048. - Completed reload, in 2.095 seconds
  1049. Domain Reload Profiling:
  1050. ReloadAssembly (2097ms)
  1051. BeginReloadAssembly (370ms)
  1052. ExecutionOrderSort (0ms)
  1053. DisableScriptedObjects (10ms)
  1054. BackupInstance (0ms)
  1055. ReleaseScriptingObjects (0ms)
  1056. CreateAndSetChildDomain (55ms)
  1057. EndReloadAssembly (1543ms)
  1058. LoadAssemblies (294ms)
  1059. RebuildTransferFunctionScriptingTraits (0ms)
  1060. SetupTypeCache (480ms)
  1061. ReleaseScriptCaches (1ms)
  1062. RebuildScriptCaches (142ms)
  1063. SetupLoadedEditorAssemblies (616ms)
  1064. LogAssemblyErrors (0ms)
  1065. InitializePlatformSupportModulesInManaged (27ms)
  1066. SetLoadedEditorAssemblies (1ms)
  1067. RefreshPlugins (1ms)
  1068. BeforeProcessingInitializeOnLoad (117ms)
  1069. ProcessInitializeOnLoadAttributes (400ms)
  1070. ProcessInitializeOnLoadMethodAttributes (51ms)
  1071. AfterProcessingInitializeOnLoad (17ms)
  1072. EditorAssembliesLoaded (0ms)
  1073. ExecutionOrderSort2 (0ms)
  1074. AwakeInstancesAfterBackupRestoration (14ms)
  1075. Platform modules already initialized, skipping
  1076. Refreshing native plugins compatible for Editor in 1.76 ms, found 3 plugins.
  1077. Preloading 0 native plugins for Editor in 0.00 ms.
  1078. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1079. Unloading 20 unused Assets / (78.1 KB). Loaded Objects now: 3887.
  1080. Memory consumption went from 116.4 MB to 116.3 MB.
  1081. Total: 2.836600 ms (FindLiveObjects: 0.177000 ms CreateObjectMapping: 0.087400 ms MarkObjects: 2.462500 ms DeleteObjects: 0.108800 ms)
  1082. AssetImportParameters requested are different than current active one (requested -> active):
  1083. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1084. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1085. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1086. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1087. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1088. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1089. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1090. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1091. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1092. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1093. ========================================================================
  1094. Received Prepare
  1095. Registering precompiled user dll's ...
  1096. Registered in 0.020935 seconds.
  1097. Begin MonoManager ReloadAssembly
  1098. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1099. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1100. Native extension for WindowsStandalone target not found
  1101. Refreshing native plugins compatible for Editor in 0.85 ms, found 3 plugins.
  1102. Preloading 0 native plugins for Editor in 0.00 ms.
  1103. Mono: successfully reloaded assembly
  1104. - Completed reload, in 2.367 seconds
  1105. Domain Reload Profiling:
  1106. ReloadAssembly (2367ms)
  1107. BeginReloadAssembly (356ms)
  1108. ExecutionOrderSort (0ms)
  1109. DisableScriptedObjects (11ms)
  1110. BackupInstance (0ms)
  1111. ReleaseScriptingObjects (0ms)
  1112. CreateAndSetChildDomain (58ms)
  1113. EndReloadAssembly (1803ms)
  1114. LoadAssemblies (266ms)
  1115. RebuildTransferFunctionScriptingTraits (0ms)
  1116. SetupTypeCache (742ms)
  1117. ReleaseScriptCaches (2ms)
  1118. RebuildScriptCaches (86ms)
  1119. SetupLoadedEditorAssemblies (569ms)
  1120. LogAssemblyErrors (0ms)
  1121. InitializePlatformSupportModulesInManaged (32ms)
  1122. SetLoadedEditorAssemblies (1ms)
  1123. RefreshPlugins (1ms)
  1124. BeforeProcessingInitializeOnLoad (136ms)
  1125. ProcessInitializeOnLoadAttributes (345ms)
  1126. ProcessInitializeOnLoadMethodAttributes (40ms)
  1127. AfterProcessingInitializeOnLoad (14ms)
  1128. EditorAssembliesLoaded (0ms)
  1129. ExecutionOrderSort2 (0ms)
  1130. AwakeInstancesAfterBackupRestoration (10ms)
  1131. Platform modules already initialized, skipping
  1132. Refreshing native plugins compatible for Editor in 2.10 ms, found 3 plugins.
  1133. Preloading 0 native plugins for Editor in 0.00 ms.
  1134. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1135. Unloading 20 unused Assets / (78.4 KB). Loaded Objects now: 3890.
  1136. Memory consumption went from 116.4 MB to 116.3 MB.
  1137. Total: 3.130400 ms (FindLiveObjects: 0.211600 ms CreateObjectMapping: 0.110200 ms MarkObjects: 2.714200 ms DeleteObjects: 0.089700 ms)
  1138. AssetImportParameters requested are different than current active one (requested -> active):
  1139. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1140. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1141. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1142. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1143. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1144. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1145. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1146. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1147. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1148. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1149. ========================================================================
  1150. Received Prepare
  1151. Registering precompiled user dll's ...
  1152. Registered in 0.007927 seconds.
  1153. Begin MonoManager ReloadAssembly
  1154. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1155. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1156. Native extension for WindowsStandalone target not found
  1157. Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
  1158. Preloading 0 native plugins for Editor in 0.00 ms.
  1159. Mono: successfully reloaded assembly
  1160. - Completed reload, in 0.820 seconds
  1161. Domain Reload Profiling:
  1162. ReloadAssembly (821ms)
  1163. BeginReloadAssembly (122ms)
  1164. ExecutionOrderSort (0ms)
  1165. DisableScriptedObjects (4ms)
  1166. BackupInstance (0ms)
  1167. ReleaseScriptingObjects (0ms)
  1168. CreateAndSetChildDomain (28ms)
  1169. EndReloadAssembly (618ms)
  1170. LoadAssemblies (79ms)
  1171. RebuildTransferFunctionScriptingTraits (0ms)
  1172. SetupTypeCache (182ms)
  1173. ReleaseScriptCaches (1ms)
  1174. RebuildScriptCaches (30ms)
  1175. SetupLoadedEditorAssemblies (297ms)
  1176. LogAssemblyErrors (0ms)
  1177. InitializePlatformSupportModulesInManaged (19ms)
  1178. SetLoadedEditorAssemblies (0ms)
  1179. RefreshPlugins (1ms)
  1180. BeforeProcessingInitializeOnLoad (51ms)
  1181. ProcessInitializeOnLoadAttributes (185ms)
  1182. ProcessInitializeOnLoadMethodAttributes (33ms)
  1183. AfterProcessingInitializeOnLoad (8ms)
  1184. EditorAssembliesLoaded (0ms)
  1185. ExecutionOrderSort2 (0ms)
  1186. AwakeInstancesAfterBackupRestoration (8ms)
  1187. Platform modules already initialized, skipping
  1188. Refreshing native plugins compatible for Editor in 5.58 ms, found 3 plugins.
  1189. Preloading 0 native plugins for Editor in 0.00 ms.
  1190. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1191. Unloading 20 unused Assets / (78.3 KB). Loaded Objects now: 3893.
  1192. Memory consumption went from 116.4 MB to 116.3 MB.
  1193. Total: 4.034800 ms (FindLiveObjects: 0.266000 ms CreateObjectMapping: 0.114600 ms MarkObjects: 3.543300 ms DeleteObjects: 0.109300 ms)
  1194. AssetImportParameters requested are different than current active one (requested -> active):
  1195. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1196. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1197. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1198. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1199. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1200. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1201. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1202. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1203. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1204. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1205. ========================================================================
  1206. Received Prepare
  1207. Registering precompiled user dll's ...
  1208. Registered in 0.010433 seconds.
  1209. Begin MonoManager ReloadAssembly
  1210. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1211. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1212. Native extension for WindowsStandalone target not found
  1213. Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
  1214. Preloading 0 native plugins for Editor in 0.00 ms.
  1215. Mono: successfully reloaded assembly
  1216. - Completed reload, in 0.828 seconds
  1217. Domain Reload Profiling:
  1218. ReloadAssembly (828ms)
  1219. BeginReloadAssembly (132ms)
  1220. ExecutionOrderSort (0ms)
  1221. DisableScriptedObjects (4ms)
  1222. BackupInstance (0ms)
  1223. ReleaseScriptingObjects (0ms)
  1224. CreateAndSetChildDomain (27ms)
  1225. EndReloadAssembly (606ms)
  1226. LoadAssemblies (92ms)
  1227. RebuildTransferFunctionScriptingTraits (0ms)
  1228. SetupTypeCache (195ms)
  1229. ReleaseScriptCaches (1ms)
  1230. RebuildScriptCaches (29ms)
  1231. SetupLoadedEditorAssemblies (269ms)
  1232. LogAssemblyErrors (0ms)
  1233. InitializePlatformSupportModulesInManaged (10ms)
  1234. SetLoadedEditorAssemblies (0ms)
  1235. RefreshPlugins (1ms)
  1236. BeforeProcessingInitializeOnLoad (52ms)
  1237. ProcessInitializeOnLoadAttributes (169ms)
  1238. ProcessInitializeOnLoadMethodAttributes (26ms)
  1239. AfterProcessingInitializeOnLoad (10ms)
  1240. EditorAssembliesLoaded (0ms)
  1241. ExecutionOrderSort2 (0ms)
  1242. AwakeInstancesAfterBackupRestoration (7ms)
  1243. Platform modules already initialized, skipping
  1244. Refreshing native plugins compatible for Editor in 2.00 ms, found 3 plugins.
  1245. Preloading 0 native plugins for Editor in 0.00 ms.
  1246. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1247. Unloading 20 unused Assets / (78.3 KB). Loaded Objects now: 3896.
  1248. Memory consumption went from 116.4 MB to 116.3 MB.
  1249. Total: 3.805100 ms (FindLiveObjects: 0.253400 ms CreateObjectMapping: 0.106600 ms MarkObjects: 3.328000 ms DeleteObjects: 0.115900 ms)
  1250. AssetImportParameters requested are different than current active one (requested -> active):
  1251. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1252. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1253. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1254. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1255. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1256. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1257. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1258. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1259. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1260. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1261. ========================================================================
  1262. Received Prepare
  1263. Registering precompiled user dll's ...
  1264. Registered in 0.007934 seconds.
  1265. Begin MonoManager ReloadAssembly
  1266. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1267. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1268. Native extension for WindowsStandalone target not found
  1269. Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins.
  1270. Preloading 0 native plugins for Editor in 0.00 ms.
  1271. Mono: successfully reloaded assembly
  1272. - Completed reload, in 0.796 seconds
  1273. Domain Reload Profiling:
  1274. ReloadAssembly (796ms)
  1275. BeginReloadAssembly (124ms)
  1276. ExecutionOrderSort (0ms)
  1277. DisableScriptedObjects (5ms)
  1278. BackupInstance (0ms)
  1279. ReleaseScriptingObjects (0ms)
  1280. CreateAndSetChildDomain (25ms)
  1281. EndReloadAssembly (585ms)
  1282. LoadAssemblies (93ms)
  1283. RebuildTransferFunctionScriptingTraits (0ms)
  1284. SetupTypeCache (203ms)
  1285. ReleaseScriptCaches (1ms)
  1286. RebuildScriptCaches (29ms)
  1287. SetupLoadedEditorAssemblies (238ms)
  1288. LogAssemblyErrors (0ms)
  1289. InitializePlatformSupportModulesInManaged (10ms)
  1290. SetLoadedEditorAssemblies (0ms)
  1291. RefreshPlugins (1ms)
  1292. BeforeProcessingInitializeOnLoad (49ms)
  1293. ProcessInitializeOnLoadAttributes (150ms)
  1294. ProcessInitializeOnLoadMethodAttributes (21ms)
  1295. AfterProcessingInitializeOnLoad (7ms)
  1296. EditorAssembliesLoaded (0ms)
  1297. ExecutionOrderSort2 (0ms)
  1298. AwakeInstancesAfterBackupRestoration (5ms)
  1299. Platform modules already initialized, skipping
  1300. Refreshing native plugins compatible for Editor in 1.84 ms, found 3 plugins.
  1301. Preloading 0 native plugins for Editor in 0.00 ms.
  1302. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1303. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3899.
  1304. Memory consumption went from 116.4 MB to 116.3 MB.
  1305. Total: 2.804100 ms (FindLiveObjects: 0.178900 ms CreateObjectMapping: 0.085100 ms MarkObjects: 2.461100 ms DeleteObjects: 0.078000 ms)
  1306. AssetImportParameters requested are different than current active one (requested -> active):
  1307. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1308. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1309. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1310. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1311. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1312. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1313. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1314. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1315. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1316. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1317. ========================================================================
  1318. Received Prepare
  1319. Registering precompiled user dll's ...
  1320. Registered in 0.009348 seconds.
  1321. Begin MonoManager ReloadAssembly
  1322. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1323. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1324. Native extension for WindowsStandalone target not found
  1325. Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
  1326. Preloading 0 native plugins for Editor in 0.00 ms.
  1327. Mono: successfully reloaded assembly
  1328. - Completed reload, in 0.843 seconds
  1329. Domain Reload Profiling:
  1330. ReloadAssembly (843ms)
  1331. BeginReloadAssembly (135ms)
  1332. ExecutionOrderSort (0ms)
  1333. DisableScriptedObjects (4ms)
  1334. BackupInstance (0ms)
  1335. ReleaseScriptingObjects (0ms)
  1336. CreateAndSetChildDomain (31ms)
  1337. EndReloadAssembly (620ms)
  1338. LoadAssemblies (91ms)
  1339. RebuildTransferFunctionScriptingTraits (0ms)
  1340. SetupTypeCache (182ms)
  1341. ReleaseScriptCaches (1ms)
  1342. RebuildScriptCaches (33ms)
  1343. SetupLoadedEditorAssemblies (266ms)
  1344. LogAssemblyErrors (0ms)
  1345. InitializePlatformSupportModulesInManaged (10ms)
  1346. SetLoadedEditorAssemblies (0ms)
  1347. RefreshPlugins (1ms)
  1348. BeforeProcessingInitializeOnLoad (50ms)
  1349. ProcessInitializeOnLoadAttributes (171ms)
  1350. ProcessInitializeOnLoadMethodAttributes (25ms)
  1351. AfterProcessingInitializeOnLoad (9ms)
  1352. EditorAssembliesLoaded (0ms)
  1353. ExecutionOrderSort2 (0ms)
  1354. AwakeInstancesAfterBackupRestoration (6ms)
  1355. Platform modules already initialized, skipping
  1356. Refreshing native plugins compatible for Editor in 1.63 ms, found 3 plugins.
  1357. Preloading 0 native plugins for Editor in 0.00 ms.
  1358. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1359. Unloading 20 unused Assets / (78.3 KB). Loaded Objects now: 3902.
  1360. Memory consumption went from 116.4 MB to 116.4 MB.
  1361. Total: 2.789500 ms (FindLiveObjects: 0.196800 ms CreateObjectMapping: 0.098400 ms MarkObjects: 2.415200 ms DeleteObjects: 0.078300 ms)
  1362. AssetImportParameters requested are different than current active one (requested -> active):
  1363. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1364. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1365. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1366. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1367. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1368. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1369. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1370. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1371. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1372. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1373. ========================================================================
  1374. Received Prepare
  1375. Registering precompiled user dll's ...
  1376. Registered in 0.009663 seconds.
  1377. Begin MonoManager ReloadAssembly
  1378. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1379. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1380. Native extension for WindowsStandalone target not found
  1381. Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
  1382. Preloading 0 native plugins for Editor in 0.00 ms.
  1383. Mono: successfully reloaded assembly
  1384. - Completed reload, in 0.814 seconds
  1385. Domain Reload Profiling:
  1386. ReloadAssembly (815ms)
  1387. BeginReloadAssembly (126ms)
  1388. ExecutionOrderSort (0ms)
  1389. DisableScriptedObjects (4ms)
  1390. BackupInstance (0ms)
  1391. ReleaseScriptingObjects (0ms)
  1392. CreateAndSetChildDomain (26ms)
  1393. EndReloadAssembly (611ms)
  1394. LoadAssemblies (87ms)
  1395. RebuildTransferFunctionScriptingTraits (0ms)
  1396. SetupTypeCache (191ms)
  1397. ReleaseScriptCaches (2ms)
  1398. RebuildScriptCaches (30ms)
  1399. SetupLoadedEditorAssemblies (276ms)
  1400. LogAssemblyErrors (0ms)
  1401. InitializePlatformSupportModulesInManaged (11ms)
  1402. SetLoadedEditorAssemblies (0ms)
  1403. RefreshPlugins (1ms)
  1404. BeforeProcessingInitializeOnLoad (59ms)
  1405. ProcessInitializeOnLoadAttributes (172ms)
  1406. ProcessInitializeOnLoadMethodAttributes (24ms)
  1407. AfterProcessingInitializeOnLoad (8ms)
  1408. EditorAssembliesLoaded (0ms)
  1409. ExecutionOrderSort2 (0ms)
  1410. AwakeInstancesAfterBackupRestoration (6ms)
  1411. Platform modules already initialized, skipping
  1412. Refreshing native plugins compatible for Editor in 4.72 ms, found 3 plugins.
  1413. Preloading 0 native plugins for Editor in 0.00 ms.
  1414. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1415. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3905.
  1416. Memory consumption went from 116.4 MB to 116.4 MB.
  1417. Total: 6.197100 ms (FindLiveObjects: 0.412600 ms CreateObjectMapping: 0.304200 ms MarkObjects: 5.380600 ms DeleteObjects: 0.098500 ms)
  1418. AssetImportParameters requested are different than current active one (requested -> active):
  1419. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1420. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1421. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1422. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1423. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1424. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1425. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1426. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1427. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1428. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1429. ========================================================================
  1430. Received Prepare
  1431. Registering precompiled user dll's ...
  1432. Registered in 0.010775 seconds.
  1433. Begin MonoManager ReloadAssembly
  1434. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1435. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1436. Native extension for WindowsStandalone target not found
  1437. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  1438. Preloading 0 native plugins for Editor in 0.00 ms.
  1439. Mono: successfully reloaded assembly
  1440. - Completed reload, in 0.818 seconds
  1441. Domain Reload Profiling:
  1442. ReloadAssembly (818ms)
  1443. BeginReloadAssembly (129ms)
  1444. ExecutionOrderSort (0ms)
  1445. DisableScriptedObjects (4ms)
  1446. BackupInstance (0ms)
  1447. ReleaseScriptingObjects (0ms)
  1448. CreateAndSetChildDomain (31ms)
  1449. EndReloadAssembly (599ms)
  1450. LoadAssemblies (87ms)
  1451. RebuildTransferFunctionScriptingTraits (0ms)
  1452. SetupTypeCache (189ms)
  1453. ReleaseScriptCaches (1ms)
  1454. RebuildScriptCaches (29ms)
  1455. SetupLoadedEditorAssemblies (267ms)
  1456. LogAssemblyErrors (0ms)
  1457. InitializePlatformSupportModulesInManaged (10ms)
  1458. SetLoadedEditorAssemblies (0ms)
  1459. RefreshPlugins (1ms)
  1460. BeforeProcessingInitializeOnLoad (52ms)
  1461. ProcessInitializeOnLoadAttributes (171ms)
  1462. ProcessInitializeOnLoadMethodAttributes (24ms)
  1463. AfterProcessingInitializeOnLoad (9ms)
  1464. EditorAssembliesLoaded (0ms)
  1465. ExecutionOrderSort2 (0ms)
  1466. AwakeInstancesAfterBackupRestoration (6ms)
  1467. Platform modules already initialized, skipping
  1468. Refreshing native plugins compatible for Editor in 3.14 ms, found 3 plugins.
  1469. Preloading 0 native plugins for Editor in 0.00 ms.
  1470. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1471. Unloading 20 unused Assets / (78.4 KB). Loaded Objects now: 3908.
  1472. Memory consumption went from 116.4 MB to 116.4 MB.
  1473. Total: 4.437400 ms (FindLiveObjects: 0.236500 ms CreateObjectMapping: 0.116300 ms MarkObjects: 3.826500 ms DeleteObjects: 0.256500 ms)
  1474. AssetImportParameters requested are different than current active one (requested -> active):
  1475. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1476. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1477. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1478. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1479. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1480. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1481. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1482. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1483. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1484. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1485. ========================================================================
  1486. Received Prepare
  1487. Registering precompiled user dll's ...
  1488. Registered in 0.007237 seconds.
  1489. Begin MonoManager ReloadAssembly
  1490. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1491. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1492. Native extension for WindowsStandalone target not found
  1493. Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins.
  1494. Preloading 0 native plugins for Editor in 0.00 ms.
  1495. Mono: successfully reloaded assembly
  1496. - Completed reload, in 0.891 seconds
  1497. Domain Reload Profiling:
  1498. ReloadAssembly (892ms)
  1499. BeginReloadAssembly (137ms)
  1500. ExecutionOrderSort (0ms)
  1501. DisableScriptedObjects (4ms)
  1502. BackupInstance (0ms)
  1503. ReleaseScriptingObjects (0ms)
  1504. CreateAndSetChildDomain (29ms)
  1505. EndReloadAssembly (673ms)
  1506. LoadAssemblies (93ms)
  1507. RebuildTransferFunctionScriptingTraits (0ms)
  1508. SetupTypeCache (214ms)
  1509. ReleaseScriptCaches (1ms)
  1510. RebuildScriptCaches (29ms)
  1511. SetupLoadedEditorAssemblies (314ms)
  1512. LogAssemblyErrors (0ms)
  1513. InitializePlatformSupportModulesInManaged (10ms)
  1514. SetLoadedEditorAssemblies (1ms)
  1515. RefreshPlugins (1ms)
  1516. BeforeProcessingInitializeOnLoad (52ms)
  1517. ProcessInitializeOnLoadAttributes (211ms)
  1518. ProcessInitializeOnLoadMethodAttributes (29ms)
  1519. AfterProcessingInitializeOnLoad (10ms)
  1520. EditorAssembliesLoaded (0ms)
  1521. ExecutionOrderSort2 (0ms)
  1522. AwakeInstancesAfterBackupRestoration (9ms)
  1523. Platform modules already initialized, skipping
  1524. Refreshing native plugins compatible for Editor in 2.11 ms, found 3 plugins.
  1525. Preloading 0 native plugins for Editor in 0.00 ms.
  1526. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1527. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3911.
  1528. Memory consumption went from 116.5 MB to 116.4 MB.
  1529. Total: 3.363700 ms (FindLiveObjects: 0.286600 ms CreateObjectMapping: 0.201800 ms MarkObjects: 2.795100 ms DeleteObjects: 0.078800 ms)
  1530. AssetImportParameters requested are different than current active one (requested -> active):
  1531. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1532. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1533. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1534. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1535. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1536. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1537. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1538. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1539. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1540. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1541. ========================================================================
  1542. Received Prepare
  1543. Registering precompiled user dll's ...
  1544. Registered in 0.009032 seconds.
  1545. Begin MonoManager ReloadAssembly
  1546. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1547. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1548. Native extension for WindowsStandalone target not found
  1549. Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins.
  1550. Preloading 0 native plugins for Editor in 0.00 ms.
  1551. Mono: successfully reloaded assembly
  1552. - Completed reload, in 0.990 seconds
  1553. Domain Reload Profiling:
  1554. ReloadAssembly (990ms)
  1555. BeginReloadAssembly (136ms)
  1556. ExecutionOrderSort (0ms)
  1557. DisableScriptedObjects (4ms)
  1558. BackupInstance (0ms)
  1559. ReleaseScriptingObjects (0ms)
  1560. CreateAndSetChildDomain (28ms)
  1561. EndReloadAssembly (735ms)
  1562. LoadAssemblies (101ms)
  1563. RebuildTransferFunctionScriptingTraits (0ms)
  1564. SetupTypeCache (240ms)
  1565. ReleaseScriptCaches (1ms)
  1566. RebuildScriptCaches (44ms)
  1567. SetupLoadedEditorAssemblies (310ms)
  1568. LogAssemblyErrors (0ms)
  1569. InitializePlatformSupportModulesInManaged (13ms)
  1570. SetLoadedEditorAssemblies (0ms)
  1571. RefreshPlugins (1ms)
  1572. BeforeProcessingInitializeOnLoad (55ms)
  1573. ProcessInitializeOnLoadAttributes (186ms)
  1574. ProcessInitializeOnLoadMethodAttributes (38ms)
  1575. AfterProcessingInitializeOnLoad (16ms)
  1576. EditorAssembliesLoaded (0ms)
  1577. ExecutionOrderSort2 (0ms)
  1578. AwakeInstancesAfterBackupRestoration (8ms)
  1579. Platform modules already initialized, skipping
  1580. Refreshing native plugins compatible for Editor in 2.48 ms, found 3 plugins.
  1581. Preloading 0 native plugins for Editor in 0.00 ms.
  1582. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1583. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3914.
  1584. Memory consumption went from 116.5 MB to 116.4 MB.
  1585. Total: 2.849900 ms (FindLiveObjects: 0.184300 ms CreateObjectMapping: 0.093100 ms MarkObjects: 2.482900 ms DeleteObjects: 0.088400 ms)
  1586. AssetImportParameters requested are different than current active one (requested -> active):
  1587. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1588. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1589. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1590. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1591. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1592. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1593. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1594. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1595. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1596. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1597. ========================================================================
  1598. Received Prepare
  1599. Registering precompiled user dll's ...
  1600. Registered in 0.007899 seconds.
  1601. Begin MonoManager ReloadAssembly
  1602. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1603. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1604. Native extension for WindowsStandalone target not found
  1605. Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
  1606. Preloading 0 native plugins for Editor in 0.00 ms.
  1607. Mono: successfully reloaded assembly
  1608. - Completed reload, in 0.816 seconds
  1609. Domain Reload Profiling:
  1610. ReloadAssembly (817ms)
  1611. BeginReloadAssembly (127ms)
  1612. ExecutionOrderSort (0ms)
  1613. DisableScriptedObjects (5ms)
  1614. BackupInstance (0ms)
  1615. ReleaseScriptingObjects (0ms)
  1616. CreateAndSetChildDomain (29ms)
  1617. EndReloadAssembly (609ms)
  1618. LoadAssemblies (76ms)
  1619. RebuildTransferFunctionScriptingTraits (0ms)
  1620. SetupTypeCache (193ms)
  1621. ReleaseScriptCaches (1ms)
  1622. RebuildScriptCaches (39ms)
  1623. SetupLoadedEditorAssemblies (270ms)
  1624. LogAssemblyErrors (0ms)
  1625. InitializePlatformSupportModulesInManaged (11ms)
  1626. SetLoadedEditorAssemblies (1ms)
  1627. RefreshPlugins (1ms)
  1628. BeforeProcessingInitializeOnLoad (51ms)
  1629. ProcessInitializeOnLoadAttributes (172ms)
  1630. ProcessInitializeOnLoadMethodAttributes (26ms)
  1631. AfterProcessingInitializeOnLoad (8ms)
  1632. EditorAssembliesLoaded (0ms)
  1633. ExecutionOrderSort2 (0ms)
  1634. AwakeInstancesAfterBackupRestoration (7ms)
  1635. Platform modules already initialized, skipping
  1636. Refreshing native plugins compatible for Editor in 2.06 ms, found 3 plugins.
  1637. Preloading 0 native plugins for Editor in 0.00 ms.
  1638. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1639. Unloading 20 unused Assets / (78.1 KB). Loaded Objects now: 3917.
  1640. Memory consumption went from 116.5 MB to 116.4 MB.
  1641. Total: 3.480000 ms (FindLiveObjects: 0.215500 ms CreateObjectMapping: 0.105800 ms MarkObjects: 3.043900 ms DeleteObjects: 0.113400 ms)
  1642. AssetImportParameters requested are different than current active one (requested -> active):
  1643. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1644. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1645. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1646. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1647. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1648. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1649. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1650. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1651. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1652. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1653. ========================================================================
  1654. Received Prepare
  1655. Registering precompiled user dll's ...
  1656. Registered in 0.009509 seconds.
  1657. Begin MonoManager ReloadAssembly
  1658. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1659. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1660. Native extension for WindowsStandalone target not found
  1661. Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins.
  1662. Preloading 0 native plugins for Editor in 0.00 ms.
  1663. Mono: successfully reloaded assembly
  1664. - Completed reload, in 0.707 seconds
  1665. Domain Reload Profiling:
  1666. ReloadAssembly (707ms)
  1667. BeginReloadAssembly (105ms)
  1668. ExecutionOrderSort (0ms)
  1669. DisableScriptedObjects (3ms)
  1670. BackupInstance (0ms)
  1671. ReleaseScriptingObjects (0ms)
  1672. CreateAndSetChildDomain (22ms)
  1673. EndReloadAssembly (529ms)
  1674. LoadAssemblies (72ms)
  1675. RebuildTransferFunctionScriptingTraits (0ms)
  1676. SetupTypeCache (155ms)
  1677. ReleaseScriptCaches (1ms)
  1678. RebuildScriptCaches (28ms)
  1679. SetupLoadedEditorAssemblies (246ms)
  1680. LogAssemblyErrors (0ms)
  1681. InitializePlatformSupportModulesInManaged (9ms)
  1682. SetLoadedEditorAssemblies (0ms)
  1683. RefreshPlugins (1ms)
  1684. BeforeProcessingInitializeOnLoad (48ms)
  1685. ProcessInitializeOnLoadAttributes (158ms)
  1686. ProcessInitializeOnLoadMethodAttributes (24ms)
  1687. AfterProcessingInitializeOnLoad (7ms)
  1688. EditorAssembliesLoaded (0ms)
  1689. ExecutionOrderSort2 (0ms)
  1690. AwakeInstancesAfterBackupRestoration (6ms)
  1691. Platform modules already initialized, skipping
  1692. Refreshing native plugins compatible for Editor in 1.91 ms, found 3 plugins.
  1693. Preloading 0 native plugins for Editor in 0.00 ms.
  1694. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1695. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3920.
  1696. Memory consumption went from 116.5 MB to 116.4 MB.
  1697. Total: 2.617000 ms (FindLiveObjects: 0.264800 ms CreateObjectMapping: 0.127800 ms MarkObjects: 2.123400 ms DeleteObjects: 0.099600 ms)
  1698. AssetImportParameters requested are different than current active one (requested -> active):
  1699. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1700. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1701. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1702. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1703. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1704. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1705. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1706. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1707. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1708. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1709. ========================================================================
  1710. Received Prepare
  1711. Registering precompiled user dll's ...
  1712. Registered in 0.015403 seconds.
  1713. Begin MonoManager ReloadAssembly
  1714. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1715. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1716. Native extension for WindowsStandalone target not found
  1717. Refreshing native plugins compatible for Editor in 0.67 ms, found 3 plugins.
  1718. Preloading 0 native plugins for Editor in 0.00 ms.
  1719. Mono: successfully reloaded assembly
  1720. - Completed reload, in 1.221 seconds
  1721. Domain Reload Profiling:
  1722. ReloadAssembly (1222ms)
  1723. BeginReloadAssembly (196ms)
  1724. ExecutionOrderSort (0ms)
  1725. DisableScriptedObjects (7ms)
  1726. BackupInstance (0ms)
  1727. ReleaseScriptingObjects (0ms)
  1728. CreateAndSetChildDomain (36ms)
  1729. EndReloadAssembly (897ms)
  1730. LoadAssemblies (136ms)
  1731. RebuildTransferFunctionScriptingTraits (0ms)
  1732. SetupTypeCache (281ms)
  1733. ReleaseScriptCaches (1ms)
  1734. RebuildScriptCaches (49ms)
  1735. SetupLoadedEditorAssemblies (399ms)
  1736. LogAssemblyErrors (0ms)
  1737. InitializePlatformSupportModulesInManaged (16ms)
  1738. SetLoadedEditorAssemblies (1ms)
  1739. RefreshPlugins (1ms)
  1740. BeforeProcessingInitializeOnLoad (89ms)
  1741. ProcessInitializeOnLoadAttributes (244ms)
  1742. ProcessInitializeOnLoadMethodAttributes (36ms)
  1743. AfterProcessingInitializeOnLoad (13ms)
  1744. EditorAssembliesLoaded (0ms)
  1745. ExecutionOrderSort2 (0ms)
  1746. AwakeInstancesAfterBackupRestoration (9ms)
  1747. Platform modules already initialized, skipping
  1748. Refreshing native plugins compatible for Editor in 3.04 ms, found 3 plugins.
  1749. Preloading 0 native plugins for Editor in 0.00 ms.
  1750. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1751. Unloading 20 unused Assets / (78.1 KB). Loaded Objects now: 3923.
  1752. Memory consumption went from 116.5 MB to 116.4 MB.
  1753. Total: 3.235300 ms (FindLiveObjects: 0.310000 ms CreateObjectMapping: 0.103400 ms MarkObjects: 2.710700 ms DeleteObjects: 0.110100 ms)
  1754. AssetImportParameters requested are different than current active one (requested -> active):
  1755. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1756. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1757. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1758. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1759. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1760. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1761. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1762. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1763. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1764. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1765. ========================================================================
  1766. Received Prepare
  1767. Registering precompiled user dll's ...
  1768. Registered in 0.025493 seconds.
  1769. Begin MonoManager ReloadAssembly
  1770. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1771. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1772. Native extension for WindowsStandalone target not found
  1773. Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins.
  1774. Preloading 0 native plugins for Editor in 0.00 ms.
  1775. Mono: successfully reloaded assembly
  1776. - Completed reload, in 1.225 seconds
  1777. Domain Reload Profiling:
  1778. ReloadAssembly (1226ms)
  1779. BeginReloadAssembly (201ms)
  1780. ExecutionOrderSort (0ms)
  1781. DisableScriptedObjects (7ms)
  1782. BackupInstance (0ms)
  1783. ReleaseScriptingObjects (0ms)
  1784. CreateAndSetChildDomain (32ms)
  1785. EndReloadAssembly (890ms)
  1786. LoadAssemblies (153ms)
  1787. RebuildTransferFunctionScriptingTraits (0ms)
  1788. SetupTypeCache (272ms)
  1789. ReleaseScriptCaches (1ms)
  1790. RebuildScriptCaches (49ms)
  1791. SetupLoadedEditorAssemblies (395ms)
  1792. LogAssemblyErrors (0ms)
  1793. InitializePlatformSupportModulesInManaged (16ms)
  1794. SetLoadedEditorAssemblies (1ms)
  1795. RefreshPlugins (1ms)
  1796. BeforeProcessingInitializeOnLoad (87ms)
  1797. ProcessInitializeOnLoadAttributes (239ms)
  1798. ProcessInitializeOnLoadMethodAttributes (36ms)
  1799. AfterProcessingInitializeOnLoad (16ms)
  1800. EditorAssembliesLoaded (0ms)
  1801. ExecutionOrderSort2 (0ms)
  1802. AwakeInstancesAfterBackupRestoration (11ms)
  1803. Platform modules already initialized, skipping
  1804. Refreshing native plugins compatible for Editor in 3.21 ms, found 3 plugins.
  1805. Preloading 0 native plugins for Editor in 0.00 ms.
  1806. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1807. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3926.
  1808. Memory consumption went from 116.5 MB to 116.4 MB.
  1809. Total: 3.529000 ms (FindLiveObjects: 0.298800 ms CreateObjectMapping: 0.102000 ms MarkObjects: 3.016200 ms DeleteObjects: 0.110300 ms)
  1810. AssetImportParameters requested are different than current active one (requested -> active):
  1811. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1812. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1813. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1814. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1815. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1816. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1817. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1818. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1819. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1820. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1821. ========================================================================
  1822. Received Prepare
  1823. Registering precompiled user dll's ...
  1824. Registered in 0.022812 seconds.
  1825. Begin MonoManager ReloadAssembly
  1826. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1827. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1828. Native extension for WindowsStandalone target not found
  1829. Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins.
  1830. Preloading 0 native plugins for Editor in 0.00 ms.
  1831. Mono: successfully reloaded assembly
  1832. - Completed reload, in 1.232 seconds
  1833. Domain Reload Profiling:
  1834. ReloadAssembly (1233ms)
  1835. BeginReloadAssembly (168ms)
  1836. ExecutionOrderSort (0ms)
  1837. DisableScriptedObjects (7ms)
  1838. BackupInstance (0ms)
  1839. ReleaseScriptingObjects (0ms)
  1840. CreateAndSetChildDomain (39ms)
  1841. EndReloadAssembly (918ms)
  1842. LoadAssemblies (127ms)
  1843. RebuildTransferFunctionScriptingTraits (0ms)
  1844. SetupTypeCache (295ms)
  1845. ReleaseScriptCaches (1ms)
  1846. RebuildScriptCaches (49ms)
  1847. SetupLoadedEditorAssemblies (399ms)
  1848. LogAssemblyErrors (0ms)
  1849. InitializePlatformSupportModulesInManaged (17ms)
  1850. SetLoadedEditorAssemblies (1ms)
  1851. RefreshPlugins (1ms)
  1852. BeforeProcessingInitializeOnLoad (90ms)
  1853. ProcessInitializeOnLoadAttributes (242ms)
  1854. ProcessInitializeOnLoadMethodAttributes (35ms)
  1855. AfterProcessingInitializeOnLoad (14ms)
  1856. EditorAssembliesLoaded (0ms)
  1857. ExecutionOrderSort2 (0ms)
  1858. AwakeInstancesAfterBackupRestoration (10ms)
  1859. Platform modules already initialized, skipping
  1860. Refreshing native plugins compatible for Editor in 3.10 ms, found 3 plugins.
  1861. Preloading 0 native plugins for Editor in 0.00 ms.
  1862. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1863. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3929.
  1864. Memory consumption went from 116.5 MB to 116.4 MB.
  1865. Total: 3.458100 ms (FindLiveObjects: 0.280100 ms CreateObjectMapping: 0.107800 ms MarkObjects: 2.968300 ms DeleteObjects: 0.100600 ms)
  1866. AssetImportParameters requested are different than current active one (requested -> active):
  1867. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1868. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1869. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1870. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1871. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1872. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1873. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1874. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1875. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1876. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1877. ========================================================================
  1878. Received Prepare
  1879. Registering precompiled user dll's ...
  1880. Registered in 0.007850 seconds.
  1881. Begin MonoManager ReloadAssembly
  1882. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1883. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1884. Native extension for WindowsStandalone target not found
  1885. Refreshing native plugins compatible for Editor in 0.57 ms, found 3 plugins.
  1886. Preloading 0 native plugins for Editor in 0.00 ms.
  1887. Mono: successfully reloaded assembly
  1888. - Completed reload, in 0.714 seconds
  1889. Domain Reload Profiling:
  1890. ReloadAssembly (715ms)
  1891. BeginReloadAssembly (110ms)
  1892. ExecutionOrderSort (0ms)
  1893. DisableScriptedObjects (3ms)
  1894. BackupInstance (0ms)
  1895. ReleaseScriptingObjects (0ms)
  1896. CreateAndSetChildDomain (25ms)
  1897. EndReloadAssembly (536ms)
  1898. LoadAssemblies (71ms)
  1899. RebuildTransferFunctionScriptingTraits (0ms)
  1900. SetupTypeCache (157ms)
  1901. ReleaseScriptCaches (1ms)
  1902. RebuildScriptCaches (29ms)
  1903. SetupLoadedEditorAssemblies (250ms)
  1904. LogAssemblyErrors (0ms)
  1905. InitializePlatformSupportModulesInManaged (10ms)
  1906. SetLoadedEditorAssemblies (0ms)
  1907. RefreshPlugins (1ms)
  1908. BeforeProcessingInitializeOnLoad (47ms)
  1909. ProcessInitializeOnLoadAttributes (161ms)
  1910. ProcessInitializeOnLoadMethodAttributes (24ms)
  1911. AfterProcessingInitializeOnLoad (8ms)
  1912. EditorAssembliesLoaded (0ms)
  1913. ExecutionOrderSort2 (0ms)
  1914. AwakeInstancesAfterBackupRestoration (6ms)
  1915. Platform modules already initialized, skipping
  1916. Refreshing native plugins compatible for Editor in 2.04 ms, found 3 plugins.
  1917. Preloading 0 native plugins for Editor in 0.00 ms.
  1918. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1919. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3932.
  1920. Memory consumption went from 116.5 MB to 116.4 MB.
  1921. Total: 2.913600 ms (FindLiveObjects: 0.259900 ms CreateObjectMapping: 0.090000 ms MarkObjects: 2.359900 ms DeleteObjects: 0.202500 ms)
  1922. AssetImportParameters requested are different than current active one (requested -> active):
  1923. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1924. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1925. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1926. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1927. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1928. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1929. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1930. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1931. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1932. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1933. ========================================================================
  1934. Received Prepare
  1935. Registering precompiled user dll's ...
  1936. Registered in 0.007398 seconds.
  1937. Begin MonoManager ReloadAssembly
  1938. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1939. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1940. Native extension for WindowsStandalone target not found
  1941. Refreshing native plugins compatible for Editor in 0.60 ms, found 3 plugins.
  1942. Preloading 0 native plugins for Editor in 0.00 ms.
  1943. Mono: successfully reloaded assembly
  1944. - Completed reload, in 1.517 seconds
  1945. Domain Reload Profiling:
  1946. ReloadAssembly (1518ms)
  1947. BeginReloadAssembly (269ms)
  1948. ExecutionOrderSort (0ms)
  1949. DisableScriptedObjects (7ms)
  1950. BackupInstance (0ms)
  1951. ReleaseScriptingObjects (0ms)
  1952. CreateAndSetChildDomain (37ms)
  1953. EndReloadAssembly (1065ms)
  1954. LoadAssemblies (241ms)
  1955. RebuildTransferFunctionScriptingTraits (0ms)
  1956. SetupTypeCache (320ms)
  1957. ReleaseScriptCaches (2ms)
  1958. RebuildScriptCaches (67ms)
  1959. SetupLoadedEditorAssemblies (467ms)
  1960. LogAssemblyErrors (0ms)
  1961. InitializePlatformSupportModulesInManaged (17ms)
  1962. SetLoadedEditorAssemblies (1ms)
  1963. RefreshPlugins (1ms)
  1964. BeforeProcessingInitializeOnLoad (124ms)
  1965. ProcessInitializeOnLoadAttributes (300ms)
  1966. ProcessInitializeOnLoadMethodAttributes (19ms)
  1967. AfterProcessingInitializeOnLoad (6ms)
  1968. EditorAssembliesLoaded (0ms)
  1969. ExecutionOrderSort2 (0ms)
  1970. AwakeInstancesAfterBackupRestoration (6ms)
  1971. Platform modules already initialized, skipping
  1972. Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins.
  1973. Preloading 0 native plugins for Editor in 0.00 ms.
  1974. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  1975. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3935.
  1976. Memory consumption went from 116.5 MB to 116.4 MB.
  1977. Total: 2.290500 ms (FindLiveObjects: 0.269300 ms CreateObjectMapping: 0.087100 ms MarkObjects: 1.866800 ms DeleteObjects: 0.066400 ms)
  1978. AssetImportParameters requested are different than current active one (requested -> active):
  1979. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1980. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1981. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1982. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1983. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1984. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1985. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1986. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1987. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1988. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1989. ========================================================================
  1990. Received Prepare
  1991. Registering precompiled user dll's ...
  1992. Registered in 0.007266 seconds.
  1993. Begin MonoManager ReloadAssembly
  1994. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1995. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1996. Native extension for WindowsStandalone target not found
  1997. Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
  1998. Preloading 0 native plugins for Editor in 0.00 ms.
  1999. Mono: successfully reloaded assembly
  2000. - Completed reload, in 0.687 seconds
  2001. Domain Reload Profiling:
  2002. ReloadAssembly (688ms)
  2003. BeginReloadAssembly (105ms)
  2004. ExecutionOrderSort (0ms)
  2005. DisableScriptedObjects (4ms)
  2006. BackupInstance (0ms)
  2007. ReleaseScriptingObjects (0ms)
  2008. CreateAndSetChildDomain (24ms)
  2009. EndReloadAssembly (513ms)
  2010. LoadAssemblies (68ms)
  2011. RebuildTransferFunctionScriptingTraits (0ms)
  2012. SetupTypeCache (157ms)
  2013. ReleaseScriptCaches (1ms)
  2014. RebuildScriptCaches (26ms)
  2015. SetupLoadedEditorAssemblies (231ms)
  2016. LogAssemblyErrors (0ms)
  2017. InitializePlatformSupportModulesInManaged (10ms)
  2018. SetLoadedEditorAssemblies (1ms)
  2019. RefreshPlugins (1ms)
  2020. BeforeProcessingInitializeOnLoad (45ms)
  2021. ProcessInitializeOnLoadAttributes (144ms)
  2022. ProcessInitializeOnLoadMethodAttributes (21ms)
  2023. AfterProcessingInitializeOnLoad (8ms)
  2024. EditorAssembliesLoaded (0ms)
  2025. ExecutionOrderSort2 (0ms)
  2026. AwakeInstancesAfterBackupRestoration (7ms)
  2027. Platform modules already initialized, skipping
  2028. Refreshing native plugins compatible for Editor in 1.90 ms, found 3 plugins.
  2029. Preloading 0 native plugins for Editor in 0.00 ms.
  2030. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2031. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3938.
  2032. Memory consumption went from 116.5 MB to 116.4 MB.
  2033. Total: 2.590700 ms (FindLiveObjects: 0.197300 ms CreateObjectMapping: 0.086700 ms MarkObjects: 2.193800 ms DeleteObjects: 0.111500 ms)
  2034. AssetImportParameters requested are different than current active one (requested -> active):
  2035. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2036. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2037. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2038. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2039. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2040. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2041. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2042. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2043. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2044. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2045. ========================================================================
  2046. Received Prepare
  2047. Registering precompiled user dll's ...
  2048. Registered in 0.010343 seconds.
  2049. Begin MonoManager ReloadAssembly
  2050. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2051. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2052. Native extension for WindowsStandalone target not found
  2053. Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
  2054. Preloading 0 native plugins for Editor in 0.00 ms.
  2055. Mono: successfully reloaded assembly
  2056. - Completed reload, in 0.686 seconds
  2057. Domain Reload Profiling:
  2058. ReloadAssembly (687ms)
  2059. BeginReloadAssembly (104ms)
  2060. ExecutionOrderSort (0ms)
  2061. DisableScriptedObjects (3ms)
  2062. BackupInstance (0ms)
  2063. ReleaseScriptingObjects (0ms)
  2064. CreateAndSetChildDomain (23ms)
  2065. EndReloadAssembly (509ms)
  2066. LoadAssemblies (69ms)
  2067. RebuildTransferFunctionScriptingTraits (0ms)
  2068. SetupTypeCache (160ms)
  2069. ReleaseScriptCaches (1ms)
  2070. RebuildScriptCaches (27ms)
  2071. SetupLoadedEditorAssemblies (225ms)
  2072. LogAssemblyErrors (0ms)
  2073. InitializePlatformSupportModulesInManaged (9ms)
  2074. SetLoadedEditorAssemblies (0ms)
  2075. RefreshPlugins (0ms)
  2076. BeforeProcessingInitializeOnLoad (46ms)
  2077. ProcessInitializeOnLoadAttributes (139ms)
  2078. ProcessInitializeOnLoadMethodAttributes (21ms)
  2079. AfterProcessingInitializeOnLoad (9ms)
  2080. EditorAssembliesLoaded (0ms)
  2081. ExecutionOrderSort2 (0ms)
  2082. AwakeInstancesAfterBackupRestoration (8ms)
  2083. Platform modules already initialized, skipping
  2084. Refreshing native plugins compatible for Editor in 1.99 ms, found 3 plugins.
  2085. Preloading 0 native plugins for Editor in 0.00 ms.
  2086. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2087. Unloading 20 unused Assets / (78.3 KB). Loaded Objects now: 3941.
  2088. Memory consumption went from 116.5 MB to 116.5 MB.
  2089. Total: 2.456900 ms (FindLiveObjects: 0.244000 ms CreateObjectMapping: 0.085200 ms MarkObjects: 2.055600 ms DeleteObjects: 0.070800 ms)
  2090. AssetImportParameters requested are different than current active one (requested -> active):
  2091. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2092. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2093. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2094. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2095. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2096. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2097. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2098. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2099. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2100. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2101. ========================================================================
  2102. Received Prepare
  2103. Registering precompiled user dll's ...
  2104. Registered in 0.016415 seconds.
  2105. Begin MonoManager ReloadAssembly
  2106. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2107. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2108. Native extension for WindowsStandalone target not found
  2109. Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins.
  2110. Preloading 0 native plugins for Editor in 0.00 ms.
  2111. Mono: successfully reloaded assembly
  2112. - Completed reload, in 1.742 seconds
  2113. Domain Reload Profiling:
  2114. ReloadAssembly (1744ms)
  2115. BeginReloadAssembly (205ms)
  2116. ExecutionOrderSort (0ms)
  2117. DisableScriptedObjects (7ms)
  2118. BackupInstance (0ms)
  2119. ReleaseScriptingObjects (0ms)
  2120. CreateAndSetChildDomain (37ms)
  2121. EndReloadAssembly (1349ms)
  2122. LoadAssemblies (156ms)
  2123. RebuildTransferFunctionScriptingTraits (0ms)
  2124. SetupTypeCache (396ms)
  2125. ReleaseScriptCaches (1ms)
  2126. RebuildScriptCaches (61ms)
  2127. SetupLoadedEditorAssemblies (597ms)
  2128. LogAssemblyErrors (0ms)
  2129. InitializePlatformSupportModulesInManaged (20ms)
  2130. SetLoadedEditorAssemblies (1ms)
  2131. RefreshPlugins (1ms)
  2132. BeforeProcessingInitializeOnLoad (140ms)
  2133. ProcessInitializeOnLoadAttributes (322ms)
  2134. ProcessInitializeOnLoadMethodAttributes (50ms)
  2135. AfterProcessingInitializeOnLoad (63ms)
  2136. EditorAssembliesLoaded (0ms)
  2137. ExecutionOrderSort2 (0ms)
  2138. AwakeInstancesAfterBackupRestoration (17ms)
  2139. Platform modules already initialized, skipping
  2140. Refreshing native plugins compatible for Editor in 3.99 ms, found 3 plugins.
  2141. Preloading 0 native plugins for Editor in 0.00 ms.
  2142. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2143. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3944.
  2144. Memory consumption went from 116.5 MB to 116.5 MB.
  2145. Total: 2.522600 ms (FindLiveObjects: 0.181200 ms CreateObjectMapping: 0.089900 ms MarkObjects: 2.177400 ms DeleteObjects: 0.073400 ms)
  2146. AssetImportParameters requested are different than current active one (requested -> active):
  2147. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2148. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2149. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2150. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2151. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2152. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2153. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2154. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2155. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2156. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2157. ========================================================================
  2158. Received Prepare
  2159. Registering precompiled user dll's ...
  2160. Registered in 0.018287 seconds.
  2161. Begin MonoManager ReloadAssembly
  2162. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2163. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2164. Native extension for WindowsStandalone target not found
  2165. Refreshing native plugins compatible for Editor in 0.76 ms, found 3 plugins.
  2166. Preloading 0 native plugins for Editor in 0.00 ms.
  2167. Mono: successfully reloaded assembly
  2168. - Completed reload, in 1.667 seconds
  2169. Domain Reload Profiling:
  2170. ReloadAssembly (1668ms)
  2171. BeginReloadAssembly (235ms)
  2172. ExecutionOrderSort (0ms)
  2173. DisableScriptedObjects (7ms)
  2174. BackupInstance (0ms)
  2175. ReleaseScriptingObjects (0ms)
  2176. CreateAndSetChildDomain (43ms)
  2177. EndReloadAssembly (1200ms)
  2178. LoadAssemblies (167ms)
  2179. RebuildTransferFunctionScriptingTraits (0ms)
  2180. SetupTypeCache (385ms)
  2181. ReleaseScriptCaches (1ms)
  2182. RebuildScriptCaches (64ms)
  2183. SetupLoadedEditorAssemblies (527ms)
  2184. LogAssemblyErrors (0ms)
  2185. InitializePlatformSupportModulesInManaged (17ms)
  2186. SetLoadedEditorAssemblies (1ms)
  2187. RefreshPlugins (1ms)
  2188. BeforeProcessingInitializeOnLoad (111ms)
  2189. ProcessInitializeOnLoadAttributes (316ms)
  2190. ProcessInitializeOnLoadMethodAttributes (49ms)
  2191. AfterProcessingInitializeOnLoad (32ms)
  2192. EditorAssembliesLoaded (1ms)
  2193. ExecutionOrderSort2 (0ms)
  2194. AwakeInstancesAfterBackupRestoration (16ms)
  2195. Platform modules already initialized, skipping
  2196. Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins.
  2197. Preloading 0 native plugins for Editor in 0.00 ms.
  2198. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2199. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3947.
  2200. Memory consumption went from 116.5 MB to 116.5 MB.
  2201. Total: 3.047100 ms (FindLiveObjects: 0.321800 ms CreateObjectMapping: 0.093200 ms MarkObjects: 2.547400 ms DeleteObjects: 0.083900 ms)
  2202. AssetImportParameters requested are different than current active one (requested -> active):
  2203. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2204. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2205. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2206. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2207. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2208. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2209. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2210. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2211. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2212. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2213. ========================================================================
  2214. Received Prepare
  2215. Registering precompiled user dll's ...
  2216. Registered in 0.021493 seconds.
  2217. Begin MonoManager ReloadAssembly
  2218. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2219. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2220. Native extension for WindowsStandalone target not found
  2221. Refreshing native plugins compatible for Editor in 0.85 ms, found 3 plugins.
  2222. Preloading 0 native plugins for Editor in 0.00 ms.
  2223. Mono: successfully reloaded assembly
  2224. - Completed reload, in 1.791 seconds
  2225. Domain Reload Profiling:
  2226. ReloadAssembly (1792ms)
  2227. BeginReloadAssembly (350ms)
  2228. ExecutionOrderSort (0ms)
  2229. DisableScriptedObjects (10ms)
  2230. BackupInstance (0ms)
  2231. ReleaseScriptingObjects (0ms)
  2232. CreateAndSetChildDomain (50ms)
  2233. EndReloadAssembly (1255ms)
  2234. LoadAssemblies (277ms)
  2235. RebuildTransferFunctionScriptingTraits (0ms)
  2236. SetupTypeCache (362ms)
  2237. ReleaseScriptCaches (2ms)
  2238. RebuildScriptCaches (72ms)
  2239. SetupLoadedEditorAssemblies (559ms)
  2240. LogAssemblyErrors (0ms)
  2241. InitializePlatformSupportModulesInManaged (22ms)
  2242. SetLoadedEditorAssemblies (1ms)
  2243. RefreshPlugins (1ms)
  2244. BeforeProcessingInitializeOnLoad (118ms)
  2245. ProcessInitializeOnLoadAttributes (344ms)
  2246. ProcessInitializeOnLoadMethodAttributes (56ms)
  2247. AfterProcessingInitializeOnLoad (17ms)
  2248. EditorAssembliesLoaded (0ms)
  2249. ExecutionOrderSort2 (0ms)
  2250. AwakeInstancesAfterBackupRestoration (17ms)
  2251. Platform modules already initialized, skipping
  2252. Refreshing native plugins compatible for Editor in 1.49 ms, found 3 plugins.
  2253. Preloading 0 native plugins for Editor in 0.00 ms.
  2254. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2255. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3950.
  2256. Memory consumption went from 116.6 MB to 116.5 MB.
  2257. Total: 2.651700 ms (FindLiveObjects: 0.187600 ms CreateObjectMapping: 0.086000 ms MarkObjects: 2.303400 ms DeleteObjects: 0.073800 ms)
  2258. AssetImportParameters requested are different than current active one (requested -> active):
  2259. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2260. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2261. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2262. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2263. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2264. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2265. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2266. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2267. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2268. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2269. ========================================================================
  2270. Received Prepare
  2271. Registering precompiled user dll's ...
  2272. Registered in 0.011863 seconds.
  2273. Begin MonoManager ReloadAssembly
  2274. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2275. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2276. Native extension for WindowsStandalone target not found
  2277. Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
  2278. Preloading 0 native plugins for Editor in 0.00 ms.
  2279. Mono: successfully reloaded assembly
  2280. - Completed reload, in 0.693 seconds
  2281. Domain Reload Profiling:
  2282. ReloadAssembly (693ms)
  2283. BeginReloadAssembly (106ms)
  2284. ExecutionOrderSort (0ms)
  2285. DisableScriptedObjects (3ms)
  2286. BackupInstance (0ms)
  2287. ReleaseScriptingObjects (0ms)
  2288. CreateAndSetChildDomain (22ms)
  2289. EndReloadAssembly (517ms)
  2290. LoadAssemblies (74ms)
  2291. RebuildTransferFunctionScriptingTraits (0ms)
  2292. SetupTypeCache (156ms)
  2293. ReleaseScriptCaches (1ms)
  2294. RebuildScriptCaches (29ms)
  2295. SetupLoadedEditorAssemblies (234ms)
  2296. LogAssemblyErrors (0ms)
  2297. InitializePlatformSupportModulesInManaged (8ms)
  2298. SetLoadedEditorAssemblies (0ms)
  2299. RefreshPlugins (0ms)
  2300. BeforeProcessingInitializeOnLoad (48ms)
  2301. ProcessInitializeOnLoadAttributes (147ms)
  2302. ProcessInitializeOnLoadMethodAttributes (20ms)
  2303. AfterProcessingInitializeOnLoad (9ms)
  2304. EditorAssembliesLoaded (0ms)
  2305. ExecutionOrderSort2 (0ms)
  2306. AwakeInstancesAfterBackupRestoration (7ms)
  2307. Platform modules already initialized, skipping
  2308. Refreshing native plugins compatible for Editor in 2.07 ms, found 3 plugins.
  2309. Preloading 0 native plugins for Editor in 0.00 ms.
  2310. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2311. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3953.
  2312. Memory consumption went from 116.6 MB to 116.5 MB.
  2313. Total: 2.387400 ms (FindLiveObjects: 0.251900 ms CreateObjectMapping: 0.090300 ms MarkObjects: 1.957300 ms DeleteObjects: 0.086300 ms)
  2314. AssetImportParameters requested are different than current active one (requested -> active):
  2315. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2316. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2317. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2318. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2319. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2320. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2321. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2322. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2323. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2324. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2325. ========================================================================
  2326. Received Import Request.
  2327. Time since last request: 7266.030351 seconds.
  2328. path: Assets/Scripts/FlyLogic.cs
  2329. artifactKey: Guid(4f3abffa573c3a94380ca885f5485635) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2330. Start importing Assets/Scripts/FlyLogic.cs using Guid(4f3abffa573c3a94380ca885f5485635) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '250a43290579f6c0cadf06398f3f71b1') in 0.103813 seconds
  2331. ========================================================================
  2332. Received Prepare
  2333. Registering precompiled user dll's ...
  2334. Registered in 0.007621 seconds.
  2335. Begin MonoManager ReloadAssembly
  2336. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2337. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2338. Native extension for WindowsStandalone target not found
  2339. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  2340. Preloading 0 native plugins for Editor in 0.00 ms.
  2341. Mono: successfully reloaded assembly
  2342. - Completed reload, in 0.967 seconds
  2343. Domain Reload Profiling:
  2344. ReloadAssembly (970ms)
  2345. BeginReloadAssembly (325ms)
  2346. ExecutionOrderSort (0ms)
  2347. DisableScriptedObjects (15ms)
  2348. BackupInstance (0ms)
  2349. ReleaseScriptingObjects (0ms)
  2350. CreateAndSetChildDomain (152ms)
  2351. EndReloadAssembly (564ms)
  2352. LoadAssemblies (102ms)
  2353. RebuildTransferFunctionScriptingTraits (0ms)
  2354. SetupTypeCache (194ms)
  2355. ReleaseScriptCaches (1ms)
  2356. RebuildScriptCaches (26ms)
  2357. SetupLoadedEditorAssemblies (232ms)
  2358. LogAssemblyErrors (0ms)
  2359. InitializePlatformSupportModulesInManaged (10ms)
  2360. SetLoadedEditorAssemblies (1ms)
  2361. RefreshPlugins (1ms)
  2362. BeforeProcessingInitializeOnLoad (51ms)
  2363. ProcessInitializeOnLoadAttributes (144ms)
  2364. ProcessInitializeOnLoadMethodAttributes (20ms)
  2365. AfterProcessingInitializeOnLoad (6ms)
  2366. EditorAssembliesLoaded (0ms)
  2367. ExecutionOrderSort2 (0ms)
  2368. AwakeInstancesAfterBackupRestoration (5ms)
  2369. Platform modules already initialized, skipping
  2370. Refreshing native plugins compatible for Editor in 1.69 ms, found 3 plugins.
  2371. Preloading 0 native plugins for Editor in 0.00 ms.
  2372. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2373. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3956.
  2374. Memory consumption went from 116.6 MB to 116.5 MB.
  2375. Total: 3.409000 ms (FindLiveObjects: 0.229300 ms CreateObjectMapping: 0.100200 ms MarkObjects: 2.921100 ms DeleteObjects: 0.157300 ms)
  2376. AssetImportParameters requested are different than current active one (requested -> active):
  2377. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2378. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2379. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2380. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2381. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2382. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2383. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2384. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2385. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2386. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2387. ========================================================================
  2388. Received Prepare
  2389. Registering precompiled user dll's ...
  2390. Registered in 0.006083 seconds.
  2391. Begin MonoManager ReloadAssembly
  2392. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2393. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2394. Native extension for WindowsStandalone target not found
  2395. Refreshing native plugins compatible for Editor in 0.67 ms, found 3 plugins.
  2396. Preloading 0 native plugins for Editor in 0.00 ms.
  2397. Mono: successfully reloaded assembly
  2398. - Completed reload, in 0.777 seconds
  2399. Domain Reload Profiling:
  2400. ReloadAssembly (778ms)
  2401. BeginReloadAssembly (116ms)
  2402. ExecutionOrderSort (0ms)
  2403. DisableScriptedObjects (3ms)
  2404. BackupInstance (0ms)
  2405. ReleaseScriptingObjects (0ms)
  2406. CreateAndSetChildDomain (27ms)
  2407. EndReloadAssembly (584ms)
  2408. LoadAssemblies (80ms)
  2409. RebuildTransferFunctionScriptingTraits (0ms)
  2410. SetupTypeCache (184ms)
  2411. ReleaseScriptCaches (1ms)
  2412. RebuildScriptCaches (31ms)
  2413. SetupLoadedEditorAssemblies (257ms)
  2414. LogAssemblyErrors (0ms)
  2415. InitializePlatformSupportModulesInManaged (16ms)
  2416. SetLoadedEditorAssemblies (1ms)
  2417. RefreshPlugins (1ms)
  2418. BeforeProcessingInitializeOnLoad (48ms)
  2419. ProcessInitializeOnLoadAttributes (159ms)
  2420. ProcessInitializeOnLoadMethodAttributes (24ms)
  2421. AfterProcessingInitializeOnLoad (8ms)
  2422. EditorAssembliesLoaded (0ms)
  2423. ExecutionOrderSort2 (0ms)
  2424. AwakeInstancesAfterBackupRestoration (8ms)
  2425. Platform modules already initialized, skipping
  2426. Refreshing native plugins compatible for Editor in 1.70 ms, found 3 plugins.
  2427. Preloading 0 native plugins for Editor in 0.00 ms.
  2428. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2429. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3959.
  2430. Memory consumption went from 116.6 MB to 116.5 MB.
  2431. Total: 2.797400 ms (FindLiveObjects: 0.220300 ms CreateObjectMapping: 0.103900 ms MarkObjects: 2.349600 ms DeleteObjects: 0.122400 ms)
  2432. AssetImportParameters requested are different than current active one (requested -> active):
  2433. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2434. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2435. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2436. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2437. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2438. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2439. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2440. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2441. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2442. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2443. ========================================================================
  2444. Received Prepare
  2445. Registering precompiled user dll's ...
  2446. Registered in 0.015115 seconds.
  2447. Begin MonoManager ReloadAssembly
  2448. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2449. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2450. Native extension for WindowsStandalone target not found
  2451. Refreshing native plugins compatible for Editor in 0.58 ms, found 3 plugins.
  2452. Preloading 0 native plugins for Editor in 0.00 ms.
  2453. Mono: successfully reloaded assembly
  2454. - Completed reload, in 1.611 seconds
  2455. Domain Reload Profiling:
  2456. ReloadAssembly (1612ms)
  2457. BeginReloadAssembly (208ms)
  2458. ExecutionOrderSort (0ms)
  2459. DisableScriptedObjects (7ms)
  2460. BackupInstance (0ms)
  2461. ReleaseScriptingObjects (0ms)
  2462. CreateAndSetChildDomain (38ms)
  2463. EndReloadAssembly (1175ms)
  2464. LoadAssemblies (153ms)
  2465. RebuildTransferFunctionScriptingTraits (0ms)
  2466. SetupTypeCache (366ms)
  2467. ReleaseScriptCaches (2ms)
  2468. RebuildScriptCaches (70ms)
  2469. SetupLoadedEditorAssemblies (524ms)
  2470. LogAssemblyErrors (0ms)
  2471. InitializePlatformSupportModulesInManaged (18ms)
  2472. SetLoadedEditorAssemblies (1ms)
  2473. RefreshPlugins (1ms)
  2474. BeforeProcessingInitializeOnLoad (107ms)
  2475. ProcessInitializeOnLoadAttributes (327ms)
  2476. ProcessInitializeOnLoadMethodAttributes (53ms)
  2477. AfterProcessingInitializeOnLoad (18ms)
  2478. EditorAssembliesLoaded (0ms)
  2479. ExecutionOrderSort2 (0ms)
  2480. AwakeInstancesAfterBackupRestoration (14ms)
  2481. Platform modules already initialized, skipping
  2482. Refreshing native plugins compatible for Editor in 3.55 ms, found 3 plugins.
  2483. Preloading 0 native plugins for Editor in 0.00 ms.
  2484. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2485. Unloading 20 unused Assets / (78.3 KB). Loaded Objects now: 3962.
  2486. Memory consumption went from 116.6 MB to 116.5 MB.
  2487. Total: 4.159000 ms (FindLiveObjects: 0.370600 ms CreateObjectMapping: 0.117600 ms MarkObjects: 3.509300 ms DeleteObjects: 0.159200 ms)
  2488. AssetImportParameters requested are different than current active one (requested -> active):
  2489. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2490. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2491. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2492. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2493. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2494. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2495. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2496. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2497. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2498. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2499. ========================================================================
  2500. Received Prepare
  2501. Registering precompiled user dll's ...
  2502. Registered in 0.009521 seconds.
  2503. Begin MonoManager ReloadAssembly
  2504. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2505. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2506. Native extension for WindowsStandalone target not found
  2507. Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins.
  2508. Preloading 0 native plugins for Editor in 0.00 ms.
  2509. Mono: successfully reloaded assembly
  2510. - Completed reload, in 0.690 seconds
  2511. Domain Reload Profiling:
  2512. ReloadAssembly (691ms)
  2513. BeginReloadAssembly (116ms)
  2514. ExecutionOrderSort (0ms)
  2515. DisableScriptedObjects (4ms)
  2516. BackupInstance (0ms)
  2517. ReleaseScriptingObjects (0ms)
  2518. CreateAndSetChildDomain (34ms)
  2519. EndReloadAssembly (509ms)
  2520. LoadAssemblies (66ms)
  2521. RebuildTransferFunctionScriptingTraits (0ms)
  2522. SetupTypeCache (156ms)
  2523. ReleaseScriptCaches (1ms)
  2524. RebuildScriptCaches (28ms)
  2525. SetupLoadedEditorAssemblies (231ms)
  2526. LogAssemblyErrors (0ms)
  2527. InitializePlatformSupportModulesInManaged (8ms)
  2528. SetLoadedEditorAssemblies (0ms)
  2529. RefreshPlugins (0ms)
  2530. BeforeProcessingInitializeOnLoad (44ms)
  2531. ProcessInitializeOnLoadAttributes (148ms)
  2532. ProcessInitializeOnLoadMethodAttributes (23ms)
  2533. AfterProcessingInitializeOnLoad (7ms)
  2534. EditorAssembliesLoaded (0ms)
  2535. ExecutionOrderSort2 (0ms)
  2536. AwakeInstancesAfterBackupRestoration (6ms)
  2537. Platform modules already initialized, skipping
  2538. Refreshing native plugins compatible for Editor in 2.02 ms, found 3 plugins.
  2539. Preloading 0 native plugins for Editor in 0.00 ms.
  2540. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2541. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3965.
  2542. Memory consumption went from 116.6 MB to 116.5 MB.
  2543. Total: 2.589700 ms (FindLiveObjects: 0.210600 ms CreateObjectMapping: 0.087000 ms MarkObjects: 2.206700 ms DeleteObjects: 0.084500 ms)
  2544. AssetImportParameters requested are different than current active one (requested -> active):
  2545. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2546. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2547. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2548. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2549. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2550. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2551. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2552. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2553. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2554. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2555. ========================================================================
  2556. Received Prepare
  2557. Registering precompiled user dll's ...
  2558. Registered in 0.010626 seconds.
  2559. Begin MonoManager ReloadAssembly
  2560. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2561. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2562. Native extension for WindowsStandalone target not found
  2563. Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
  2564. Preloading 0 native plugins for Editor in 0.00 ms.
  2565. Mono: successfully reloaded assembly
  2566. - Completed reload, in 0.699 seconds
  2567. Domain Reload Profiling:
  2568. ReloadAssembly (700ms)
  2569. BeginReloadAssembly (111ms)
  2570. ExecutionOrderSort (0ms)
  2571. DisableScriptedObjects (3ms)
  2572. BackupInstance (0ms)
  2573. ReleaseScriptingObjects (0ms)
  2574. CreateAndSetChildDomain (25ms)
  2575. EndReloadAssembly (520ms)
  2576. LoadAssemblies (72ms)
  2577. RebuildTransferFunctionScriptingTraits (0ms)
  2578. SetupTypeCache (157ms)
  2579. ReleaseScriptCaches (1ms)
  2580. RebuildScriptCaches (25ms)
  2581. SetupLoadedEditorAssemblies (241ms)
  2582. LogAssemblyErrors (0ms)
  2583. InitializePlatformSupportModulesInManaged (8ms)
  2584. SetLoadedEditorAssemblies (0ms)
  2585. RefreshPlugins (0ms)
  2586. BeforeProcessingInitializeOnLoad (44ms)
  2587. ProcessInitializeOnLoadAttributes (157ms)
  2588. ProcessInitializeOnLoadMethodAttributes (23ms)
  2589. AfterProcessingInitializeOnLoad (7ms)
  2590. EditorAssembliesLoaded (0ms)
  2591. ExecutionOrderSort2 (0ms)
  2592. AwakeInstancesAfterBackupRestoration (6ms)
  2593. Platform modules already initialized, skipping
  2594. Refreshing native plugins compatible for Editor in 1.95 ms, found 3 plugins.
  2595. Preloading 0 native plugins for Editor in 0.00 ms.
  2596. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2597. Unloading 20 unused Assets / (78.3 KB). Loaded Objects now: 3968.
  2598. Memory consumption went from 116.6 MB to 116.5 MB.
  2599. Total: 2.714700 ms (FindLiveObjects: 0.235200 ms CreateObjectMapping: 0.120900 ms MarkObjects: 2.277200 ms DeleteObjects: 0.080300 ms)
  2600. AssetImportParameters requested are different than current active one (requested -> active):
  2601. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2602. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2603. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2604. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2605. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2606. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2607. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2608. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2609. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2610. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2611. ========================================================================
  2612. Received Prepare
  2613. Registering precompiled user dll's ...
  2614. Registered in 0.017815 seconds.
  2615. Begin MonoManager ReloadAssembly
  2616. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2617. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2618. Native extension for WindowsStandalone target not found
  2619. Refreshing native plugins compatible for Editor in 0.68 ms, found 3 plugins.
  2620. Preloading 0 native plugins for Editor in 0.00 ms.
  2621. Mono: successfully reloaded assembly
  2622. - Completed reload, in 1.347 seconds
  2623. Domain Reload Profiling:
  2624. ReloadAssembly (1349ms)
  2625. BeginReloadAssembly (211ms)
  2626. ExecutionOrderSort (0ms)
  2627. DisableScriptedObjects (7ms)
  2628. BackupInstance (0ms)
  2629. ReleaseScriptingObjects (0ms)
  2630. CreateAndSetChildDomain (39ms)
  2631. EndReloadAssembly (948ms)
  2632. LoadAssemblies (163ms)
  2633. RebuildTransferFunctionScriptingTraits (0ms)
  2634. SetupTypeCache (289ms)
  2635. ReleaseScriptCaches (1ms)
  2636. RebuildScriptCaches (50ms)
  2637. SetupLoadedEditorAssemblies (420ms)
  2638. LogAssemblyErrors (0ms)
  2639. InitializePlatformSupportModulesInManaged (17ms)
  2640. SetLoadedEditorAssemblies (1ms)
  2641. RefreshPlugins (1ms)
  2642. BeforeProcessingInitializeOnLoad (99ms)
  2643. ProcessInitializeOnLoadAttributes (249ms)
  2644. ProcessInitializeOnLoadMethodAttributes (37ms)
  2645. AfterProcessingInitializeOnLoad (16ms)
  2646. EditorAssembliesLoaded (0ms)
  2647. ExecutionOrderSort2 (0ms)
  2648. AwakeInstancesAfterBackupRestoration (10ms)
  2649. Platform modules already initialized, skipping
  2650. Refreshing native plugins compatible for Editor in 3.39 ms, found 3 plugins.
  2651. Preloading 0 native plugins for Editor in 0.00 ms.
  2652. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2653. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3971.
  2654. Memory consumption went from 116.6 MB to 116.5 MB.
  2655. Total: 3.905100 ms (FindLiveObjects: 0.495400 ms CreateObjectMapping: 0.204100 ms MarkObjects: 3.103400 ms DeleteObjects: 0.100300 ms)
  2656. AssetImportParameters requested are different than current active one (requested -> active):
  2657. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2658. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2659. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2660. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2661. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2662. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2663. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2664. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2665. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2666. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2667. ========================================================================
  2668. Received Prepare
  2669. Registering precompiled user dll's ...
  2670. Registered in 0.006627 seconds.
  2671. Begin MonoManager ReloadAssembly
  2672. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2673. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2674. Native extension for WindowsStandalone target not found
  2675. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  2676. Preloading 0 native plugins for Editor in 0.00 ms.
  2677. Mono: successfully reloaded assembly
  2678. - Completed reload, in 0.697 seconds
  2679. Domain Reload Profiling:
  2680. ReloadAssembly (698ms)
  2681. BeginReloadAssembly (105ms)
  2682. ExecutionOrderSort (0ms)
  2683. DisableScriptedObjects (3ms)
  2684. BackupInstance (0ms)
  2685. ReleaseScriptingObjects (0ms)
  2686. CreateAndSetChildDomain (24ms)
  2687. EndReloadAssembly (523ms)
  2688. LoadAssemblies (70ms)
  2689. RebuildTransferFunctionScriptingTraits (0ms)
  2690. SetupTypeCache (153ms)
  2691. ReleaseScriptCaches (1ms)
  2692. RebuildScriptCaches (30ms)
  2693. SetupLoadedEditorAssemblies (238ms)
  2694. LogAssemblyErrors (0ms)
  2695. InitializePlatformSupportModulesInManaged (9ms)
  2696. SetLoadedEditorAssemblies (0ms)
  2697. RefreshPlugins (1ms)
  2698. BeforeProcessingInitializeOnLoad (45ms)
  2699. ProcessInitializeOnLoadAttributes (154ms)
  2700. ProcessInitializeOnLoadMethodAttributes (22ms)
  2701. AfterProcessingInitializeOnLoad (7ms)
  2702. EditorAssembliesLoaded (0ms)
  2703. ExecutionOrderSort2 (0ms)
  2704. AwakeInstancesAfterBackupRestoration (7ms)
  2705. Platform modules already initialized, skipping
  2706. Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins.
  2707. Preloading 0 native plugins for Editor in 0.00 ms.
  2708. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2709. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3974.
  2710. Memory consumption went from 116.6 MB to 116.5 MB.
  2711. Total: 3.067700 ms (FindLiveObjects: 0.289200 ms CreateObjectMapping: 0.201500 ms MarkObjects: 2.494700 ms DeleteObjects: 0.081400 ms)
  2712. AssetImportParameters requested are different than current active one (requested -> active):
  2713. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2714. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2715. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2716. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2717. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2718. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2719. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2720. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2721. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2722. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2723. ========================================================================
  2724. Received Prepare
  2725. Registering precompiled user dll's ...
  2726. Registered in 0.020660 seconds.
  2727. Begin MonoManager ReloadAssembly
  2728. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2729. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2730. Native extension for WindowsStandalone target not found
  2731. Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins.
  2732. Preloading 0 native plugins for Editor in 0.00 ms.
  2733. Mono: successfully reloaded assembly
  2734. - Completed reload, in 1.687 seconds
  2735. Domain Reload Profiling:
  2736. ReloadAssembly (1688ms)
  2737. BeginReloadAssembly (234ms)
  2738. ExecutionOrderSort (0ms)
  2739. DisableScriptedObjects (6ms)
  2740. BackupInstance (0ms)
  2741. ReleaseScriptingObjects (0ms)
  2742. CreateAndSetChildDomain (43ms)
  2743. EndReloadAssembly (1228ms)
  2744. LoadAssemblies (177ms)
  2745. RebuildTransferFunctionScriptingTraits (0ms)
  2746. SetupTypeCache (373ms)
  2747. ReleaseScriptCaches (2ms)
  2748. RebuildScriptCaches (68ms)
  2749. SetupLoadedEditorAssemblies (564ms)
  2750. LogAssemblyErrors (0ms)
  2751. InitializePlatformSupportModulesInManaged (22ms)
  2752. SetLoadedEditorAssemblies (1ms)
  2753. RefreshPlugins (1ms)
  2754. BeforeProcessingInitializeOnLoad (147ms)
  2755. ProcessInitializeOnLoadAttributes (333ms)
  2756. ProcessInitializeOnLoadMethodAttributes (41ms)
  2757. AfterProcessingInitializeOnLoad (18ms)
  2758. EditorAssembliesLoaded (0ms)
  2759. ExecutionOrderSort2 (0ms)
  2760. AwakeInstancesAfterBackupRestoration (14ms)
  2761. Platform modules already initialized, skipping
  2762. Refreshing native plugins compatible for Editor in 1.63 ms, found 3 plugins.
  2763. Preloading 0 native plugins for Editor in 0.00 ms.
  2764. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2765. Unloading 20 unused Assets / (78.1 KB). Loaded Objects now: 3977.
  2766. Memory consumption went from 116.6 MB to 116.6 MB.
  2767. Total: 2.895800 ms (FindLiveObjects: 0.175400 ms CreateObjectMapping: 0.082500 ms MarkObjects: 2.565900 ms DeleteObjects: 0.071000 ms)
  2768. AssetImportParameters requested are different than current active one (requested -> active):
  2769. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2770. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2771. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2772. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2773. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2774. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2775. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2776. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2777. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2778. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2779. ========================================================================
  2780. Received Prepare
  2781. Registering precompiled user dll's ...
  2782. Registered in 0.017215 seconds.
  2783. Begin MonoManager ReloadAssembly
  2784. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2785. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2786. Native extension for WindowsStandalone target not found
  2787. Refreshing native plugins compatible for Editor in 0.90 ms, found 3 plugins.
  2788. Preloading 0 native plugins for Editor in 0.00 ms.
  2789. Mono: successfully reloaded assembly
  2790. - Completed reload, in 1.660 seconds
  2791. Domain Reload Profiling:
  2792. ReloadAssembly (1661ms)
  2793. BeginReloadAssembly (314ms)
  2794. ExecutionOrderSort (0ms)
  2795. DisableScriptedObjects (7ms)
  2796. BackupInstance (0ms)
  2797. ReleaseScriptingObjects (0ms)
  2798. CreateAndSetChildDomain (40ms)
  2799. EndReloadAssembly (1179ms)
  2800. LoadAssemblies (274ms)
  2801. RebuildTransferFunctionScriptingTraits (0ms)
  2802. SetupTypeCache (357ms)
  2803. ReleaseScriptCaches (2ms)
  2804. RebuildScriptCaches (71ms)
  2805. SetupLoadedEditorAssemblies (534ms)
  2806. LogAssemblyErrors (0ms)
  2807. InitializePlatformSupportModulesInManaged (20ms)
  2808. SetLoadedEditorAssemblies (1ms)
  2809. RefreshPlugins (1ms)
  2810. BeforeProcessingInitializeOnLoad (132ms)
  2811. ProcessInitializeOnLoadAttributes (329ms)
  2812. ProcessInitializeOnLoadMethodAttributes (36ms)
  2813. AfterProcessingInitializeOnLoad (15ms)
  2814. EditorAssembliesLoaded (0ms)
  2815. ExecutionOrderSort2 (0ms)
  2816. AwakeInstancesAfterBackupRestoration (11ms)
  2817. Platform modules already initialized, skipping
  2818. Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins.
  2819. Preloading 0 native plugins for Editor in 0.00 ms.
  2820. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2821. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3980.
  2822. Memory consumption went from 116.6 MB to 116.6 MB.
  2823. Total: 2.316300 ms (FindLiveObjects: 0.185800 ms CreateObjectMapping: 0.086900 ms MarkObjects: 1.968600 ms DeleteObjects: 0.073900 ms)
  2824. AssetImportParameters requested are different than current active one (requested -> active):
  2825. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2826. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2827. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2828. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2829. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2830. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2831. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2832. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2833. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2834. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2835. ========================================================================
  2836. Received Prepare
  2837. Registering precompiled user dll's ...
  2838. Registered in 0.015654 seconds.
  2839. Begin MonoManager ReloadAssembly
  2840. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2841. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2842. Native extension for WindowsStandalone target not found
  2843. Refreshing native plugins compatible for Editor in 0.90 ms, found 3 plugins.
  2844. Preloading 0 native plugins for Editor in 0.00 ms.
  2845. Mono: successfully reloaded assembly
  2846. - Completed reload, in 1.734 seconds
  2847. Domain Reload Profiling:
  2848. ReloadAssembly (1735ms)
  2849. BeginReloadAssembly (300ms)
  2850. ExecutionOrderSort (0ms)
  2851. DisableScriptedObjects (7ms)
  2852. BackupInstance (0ms)
  2853. ReleaseScriptingObjects (0ms)
  2854. CreateAndSetChildDomain (38ms)
  2855. EndReloadAssembly (1263ms)
  2856. LoadAssemblies (252ms)
  2857. RebuildTransferFunctionScriptingTraits (0ms)
  2858. SetupTypeCache (353ms)
  2859. ReleaseScriptCaches (2ms)
  2860. RebuildScriptCaches (63ms)
  2861. SetupLoadedEditorAssemblies (576ms)
  2862. LogAssemblyErrors (0ms)
  2863. InitializePlatformSupportModulesInManaged (21ms)
  2864. SetLoadedEditorAssemblies (1ms)
  2865. RefreshPlugins (1ms)
  2866. BeforeProcessingInitializeOnLoad (126ms)
  2867. ProcessInitializeOnLoadAttributes (345ms)
  2868. ProcessInitializeOnLoadMethodAttributes (45ms)
  2869. AfterProcessingInitializeOnLoad (37ms)
  2870. EditorAssembliesLoaded (0ms)
  2871. ExecutionOrderSort2 (0ms)
  2872. AwakeInstancesAfterBackupRestoration (18ms)
  2873. Platform modules already initialized, skipping
  2874. Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins.
  2875. Preloading 0 native plugins for Editor in 0.00 ms.
  2876. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2877. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3983.
  2878. Memory consumption went from 116.6 MB to 116.6 MB.
  2879. Total: 2.702800 ms (FindLiveObjects: 0.189900 ms CreateObjectMapping: 0.085400 ms MarkObjects: 2.292600 ms DeleteObjects: 0.074800 ms)
  2880. AssetImportParameters requested are different than current active one (requested -> active):
  2881. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2882. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2883. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2884. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2885. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2886. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2887. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2888. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2889. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2890. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2891. ========================================================================
  2892. Received Prepare
  2893. Registering precompiled user dll's ...
  2894. Registered in 0.006209 seconds.
  2895. Begin MonoManager ReloadAssembly
  2896. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2897. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2898. Native extension for WindowsStandalone target not found
  2899. Refreshing native plugins compatible for Editor in 0.61 ms, found 3 plugins.
  2900. Preloading 0 native plugins for Editor in 0.00 ms.
  2901. Mono: successfully reloaded assembly
  2902. - Completed reload, in 0.740 seconds
  2903. Domain Reload Profiling:
  2904. ReloadAssembly (741ms)
  2905. BeginReloadAssembly (106ms)
  2906. ExecutionOrderSort (0ms)
  2907. DisableScriptedObjects (3ms)
  2908. BackupInstance (0ms)
  2909. ReleaseScriptingObjects (0ms)
  2910. CreateAndSetChildDomain (26ms)
  2911. EndReloadAssembly (567ms)
  2912. LoadAssemblies (66ms)
  2913. RebuildTransferFunctionScriptingTraits (0ms)
  2914. SetupTypeCache (156ms)
  2915. ReleaseScriptCaches (1ms)
  2916. RebuildScriptCaches (28ms)
  2917. SetupLoadedEditorAssemblies (282ms)
  2918. LogAssemblyErrors (0ms)
  2919. InitializePlatformSupportModulesInManaged (10ms)
  2920. SetLoadedEditorAssemblies (0ms)
  2921. RefreshPlugins (1ms)
  2922. BeforeProcessingInitializeOnLoad (52ms)
  2923. ProcessInitializeOnLoadAttributes (185ms)
  2924. ProcessInitializeOnLoadMethodAttributes (25ms)
  2925. AfterProcessingInitializeOnLoad (9ms)
  2926. EditorAssembliesLoaded (0ms)
  2927. ExecutionOrderSort2 (0ms)
  2928. AwakeInstancesAfterBackupRestoration (8ms)
  2929. Platform modules already initialized, skipping
  2930. Refreshing native plugins compatible for Editor in 1.68 ms, found 3 plugins.
  2931. Preloading 0 native plugins for Editor in 0.00 ms.
  2932. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2933. Unloading 20 unused Assets / (78.1 KB). Loaded Objects now: 3986.
  2934. Memory consumption went from 116.7 MB to 116.6 MB.
  2935. Total: 2.468500 ms (FindLiveObjects: 0.229000 ms CreateObjectMapping: 0.164100 ms MarkObjects: 1.994300 ms DeleteObjects: 0.080100 ms)
  2936. AssetImportParameters requested are different than current active one (requested -> active):
  2937. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2938. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2939. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2940. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2941. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2942. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2943. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2944. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2945. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2946. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2947. ========================================================================
  2948. Received Prepare
  2949. Registering precompiled user dll's ...
  2950. Registered in 0.006382 seconds.
  2951. Begin MonoManager ReloadAssembly
  2952. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2953. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2954. Native extension for WindowsStandalone target not found
  2955. Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins.
  2956. Preloading 0 native plugins for Editor in 0.00 ms.
  2957. Mono: successfully reloaded assembly
  2958. - Completed reload, in 0.868 seconds
  2959. Domain Reload Profiling:
  2960. ReloadAssembly (869ms)
  2961. BeginReloadAssembly (108ms)
  2962. ExecutionOrderSort (0ms)
  2963. DisableScriptedObjects (3ms)
  2964. BackupInstance (0ms)
  2965. ReleaseScriptingObjects (0ms)
  2966. CreateAndSetChildDomain (26ms)
  2967. EndReloadAssembly (685ms)
  2968. LoadAssemblies (77ms)
  2969. RebuildTransferFunctionScriptingTraits (0ms)
  2970. SetupTypeCache (203ms)
  2971. ReleaseScriptCaches (1ms)
  2972. RebuildScriptCaches (43ms)
  2973. SetupLoadedEditorAssemblies (305ms)
  2974. LogAssemblyErrors (0ms)
  2975. InitializePlatformSupportModulesInManaged (12ms)
  2976. SetLoadedEditorAssemblies (0ms)
  2977. RefreshPlugins (1ms)
  2978. BeforeProcessingInitializeOnLoad (65ms)
  2979. ProcessInitializeOnLoadAttributes (192ms)
  2980. ProcessInitializeOnLoadMethodAttributes (27ms)
  2981. AfterProcessingInitializeOnLoad (7ms)
  2982. EditorAssembliesLoaded (0ms)
  2983. ExecutionOrderSort2 (0ms)
  2984. AwakeInstancesAfterBackupRestoration (6ms)
  2985. Platform modules already initialized, skipping
  2986. Refreshing native plugins compatible for Editor in 2.82 ms, found 3 plugins.
  2987. Preloading 0 native plugins for Editor in 0.00 ms.
  2988. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  2989. Unloading 20 unused Assets / (78.1 KB). Loaded Objects now: 3989.
  2990. Memory consumption went from 116.7 MB to 116.6 MB.
  2991. Total: 2.991700 ms (FindLiveObjects: 0.383000 ms CreateObjectMapping: 0.213100 ms MarkObjects: 2.318200 ms DeleteObjects: 0.075900 ms)
  2992. AssetImportParameters requested are different than current active one (requested -> active):
  2993. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2994. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2995. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2996. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2997. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2998. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2999. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3000. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3001. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3002. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3003. ========================================================================
  3004. Received Prepare
  3005. Registering precompiled user dll's ...
  3006. Registered in 0.010315 seconds.
  3007. Begin MonoManager ReloadAssembly
  3008. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3009. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3010. Native extension for WindowsStandalone target not found
  3011. Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
  3012. Preloading 0 native plugins for Editor in 0.00 ms.
  3013. Mono: successfully reloaded assembly
  3014. - Completed reload, in 0.704 seconds
  3015. Domain Reload Profiling:
  3016. ReloadAssembly (704ms)
  3017. BeginReloadAssembly (106ms)
  3018. ExecutionOrderSort (0ms)
  3019. DisableScriptedObjects (4ms)
  3020. BackupInstance (0ms)
  3021. ReleaseScriptingObjects (0ms)
  3022. CreateAndSetChildDomain (24ms)
  3023. EndReloadAssembly (526ms)
  3024. LoadAssemblies (71ms)
  3025. RebuildTransferFunctionScriptingTraits (0ms)
  3026. SetupTypeCache (166ms)
  3027. ReleaseScriptCaches (1ms)
  3028. RebuildScriptCaches (29ms)
  3029. SetupLoadedEditorAssemblies (231ms)
  3030. LogAssemblyErrors (0ms)
  3031. InitializePlatformSupportModulesInManaged (9ms)
  3032. SetLoadedEditorAssemblies (0ms)
  3033. RefreshPlugins (1ms)
  3034. BeforeProcessingInitializeOnLoad (45ms)
  3035. ProcessInitializeOnLoadAttributes (147ms)
  3036. ProcessInitializeOnLoadMethodAttributes (21ms)
  3037. AfterProcessingInitializeOnLoad (8ms)
  3038. EditorAssembliesLoaded (0ms)
  3039. ExecutionOrderSort2 (0ms)
  3040. AwakeInstancesAfterBackupRestoration (5ms)
  3041. Platform modules already initialized, skipping
  3042. Refreshing native plugins compatible for Editor in 2.74 ms, found 3 plugins.
  3043. Preloading 0 native plugins for Editor in 0.00 ms.
  3044. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  3045. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3992.
  3046. Memory consumption went from 116.7 MB to 116.6 MB.
  3047. Total: 3.570600 ms (FindLiveObjects: 0.253000 ms CreateObjectMapping: 0.128300 ms MarkObjects: 3.012900 ms DeleteObjects: 0.174900 ms)
  3048. AssetImportParameters requested are different than current active one (requested -> active):
  3049. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3050. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3051. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3052. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3053. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3054. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3055. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3056. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3057. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3058. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3059. ========================================================================
  3060. Received Prepare
  3061. Registering precompiled user dll's ...
  3062. Registered in 0.008204 seconds.
  3063. Begin MonoManager ReloadAssembly
  3064. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3065. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3066. Native extension for WindowsStandalone target not found
  3067. Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins.
  3068. Preloading 0 native plugins for Editor in 0.00 ms.
  3069. Mono: successfully reloaded assembly
  3070. - Completed reload, in 0.705 seconds
  3071. Domain Reload Profiling:
  3072. ReloadAssembly (706ms)
  3073. BeginReloadAssembly (111ms)
  3074. ExecutionOrderSort (0ms)
  3075. DisableScriptedObjects (4ms)
  3076. BackupInstance (0ms)
  3077. ReleaseScriptingObjects (0ms)
  3078. CreateAndSetChildDomain (24ms)
  3079. EndReloadAssembly (525ms)
  3080. LoadAssemblies (74ms)
  3081. RebuildTransferFunctionScriptingTraits (0ms)
  3082. SetupTypeCache (157ms)
  3083. ReleaseScriptCaches (1ms)
  3084. RebuildScriptCaches (28ms)
  3085. SetupLoadedEditorAssemblies (242ms)
  3086. LogAssemblyErrors (0ms)
  3087. InitializePlatformSupportModulesInManaged (8ms)
  3088. SetLoadedEditorAssemblies (0ms)
  3089. RefreshPlugins (0ms)
  3090. BeforeProcessingInitializeOnLoad (46ms)
  3091. ProcessInitializeOnLoadAttributes (155ms)
  3092. ProcessInitializeOnLoadMethodAttributes (21ms)
  3093. AfterProcessingInitializeOnLoad (10ms)
  3094. EditorAssembliesLoaded (0ms)
  3095. ExecutionOrderSort2 (0ms)
  3096. AwakeInstancesAfterBackupRestoration (7ms)
  3097. Platform modules already initialized, skipping
  3098. Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins.
  3099. Preloading 0 native plugins for Editor in 0.00 ms.
  3100. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  3101. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3995.
  3102. Memory consumption went from 116.7 MB to 116.6 MB.
  3103. Total: 2.541700 ms (FindLiveObjects: 0.197900 ms CreateObjectMapping: 0.091700 ms MarkObjects: 2.174300 ms DeleteObjects: 0.076700 ms)
  3104. AssetImportParameters requested are different than current active one (requested -> active):
  3105. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3106. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3107. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3108. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3109. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3110. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3111. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3112. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3113. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3114. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3115. ========================================================================
  3116. Received Prepare
  3117. Registering precompiled user dll's ...
  3118. Registered in 0.009828 seconds.
  3119. Begin MonoManager ReloadAssembly
  3120. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3121. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3122. Native extension for WindowsStandalone target not found
  3123. Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
  3124. Preloading 0 native plugins for Editor in 0.00 ms.
  3125. Mono: successfully reloaded assembly
  3126. - Completed reload, in 0.841 seconds
  3127. Domain Reload Profiling:
  3128. ReloadAssembly (842ms)
  3129. BeginReloadAssembly (118ms)
  3130. ExecutionOrderSort (0ms)
  3131. DisableScriptedObjects (4ms)
  3132. BackupInstance (0ms)
  3133. ReleaseScriptingObjects (0ms)
  3134. CreateAndSetChildDomain (23ms)
  3135. EndReloadAssembly (639ms)
  3136. LoadAssemblies (97ms)
  3137. RebuildTransferFunctionScriptingTraits (0ms)
  3138. SetupTypeCache (206ms)
  3139. ReleaseScriptCaches (1ms)
  3140. RebuildScriptCaches (35ms)
  3141. SetupLoadedEditorAssemblies (263ms)
  3142. LogAssemblyErrors (0ms)
  3143. InitializePlatformSupportModulesInManaged (10ms)
  3144. SetLoadedEditorAssemblies (0ms)
  3145. RefreshPlugins (1ms)
  3146. BeforeProcessingInitializeOnLoad (51ms)
  3147. ProcessInitializeOnLoadAttributes (168ms)
  3148. ProcessInitializeOnLoadMethodAttributes (24ms)
  3149. AfterProcessingInitializeOnLoad (9ms)
  3150. EditorAssembliesLoaded (0ms)
  3151. ExecutionOrderSort2 (0ms)
  3152. AwakeInstancesAfterBackupRestoration (7ms)
  3153. Platform modules already initialized, skipping
  3154. Refreshing native plugins compatible for Editor in 2.06 ms, found 3 plugins.
  3155. Preloading 0 native plugins for Editor in 0.00 ms.
  3156. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  3157. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 3998.
  3158. Memory consumption went from 116.7 MB to 116.6 MB.
  3159. Total: 3.007900 ms (FindLiveObjects: 0.254500 ms CreateObjectMapping: 0.093700 ms MarkObjects: 2.533300 ms DeleteObjects: 0.124900 ms)
  3160. AssetImportParameters requested are different than current active one (requested -> active):
  3161. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3162. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3163. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3164. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3165. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3166. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3167. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3168. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3169. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3170. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3171. ========================================================================
  3172. Received Prepare
  3173. Registering precompiled user dll's ...
  3174. Registered in 0.009092 seconds.
  3175. Begin MonoManager ReloadAssembly
  3176. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3177. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3178. Native extension for WindowsStandalone target not found
  3179. Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
  3180. Preloading 0 native plugins for Editor in 0.00 ms.
  3181. Mono: successfully reloaded assembly
  3182. - Completed reload, in 0.704 seconds
  3183. Domain Reload Profiling:
  3184. ReloadAssembly (704ms)
  3185. BeginReloadAssembly (114ms)
  3186. ExecutionOrderSort (0ms)
  3187. DisableScriptedObjects (3ms)
  3188. BackupInstance (0ms)
  3189. ReleaseScriptingObjects (0ms)
  3190. CreateAndSetChildDomain (32ms)
  3191. EndReloadAssembly (522ms)
  3192. LoadAssemblies (67ms)
  3193. RebuildTransferFunctionScriptingTraits (0ms)
  3194. SetupTypeCache (155ms)
  3195. ReleaseScriptCaches (1ms)
  3196. RebuildScriptCaches (26ms)
  3197. SetupLoadedEditorAssemblies (247ms)
  3198. LogAssemblyErrors (0ms)
  3199. InitializePlatformSupportModulesInManaged (8ms)
  3200. SetLoadedEditorAssemblies (0ms)
  3201. RefreshPlugins (0ms)
  3202. BeforeProcessingInitializeOnLoad (45ms)
  3203. ProcessInitializeOnLoadAttributes (163ms)
  3204. ProcessInitializeOnLoadMethodAttributes (23ms)
  3205. AfterProcessingInitializeOnLoad (7ms)
  3206. EditorAssembliesLoaded (0ms)
  3207. ExecutionOrderSort2 (0ms)
  3208. AwakeInstancesAfterBackupRestoration (6ms)
  3209. Platform modules already initialized, skipping
  3210. Refreshing native plugins compatible for Editor in 2.11 ms, found 3 plugins.
  3211. Preloading 0 native plugins for Editor in 0.00 ms.
  3212. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  3213. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 4001.
  3214. Memory consumption went from 116.7 MB to 116.6 MB.
  3215. Total: 2.923600 ms (FindLiveObjects: 0.234200 ms CreateObjectMapping: 0.095400 ms MarkObjects: 2.506000 ms DeleteObjects: 0.087000 ms)
  3216. AssetImportParameters requested are different than current active one (requested -> active):
  3217. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3218. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3219. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3220. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3221. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3222. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3223. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3224. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3225. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3226. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3227. ========================================================================
  3228. Received Prepare
  3229. Registering precompiled user dll's ...
  3230. Registered in 0.043433 seconds.
  3231. Begin MonoManager ReloadAssembly
  3232. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3233. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3234. Native extension for WindowsStandalone target not found
  3235. Refreshing native plugins compatible for Editor in 0.56 ms, found 3 plugins.
  3236. Preloading 0 native plugins for Editor in 0.00 ms.
  3237. Mono: successfully reloaded assembly
  3238. - Completed reload, in 1.113 seconds
  3239. Domain Reload Profiling:
  3240. ReloadAssembly (1114ms)
  3241. BeginReloadAssembly (189ms)
  3242. ExecutionOrderSort (0ms)
  3243. DisableScriptedObjects (8ms)
  3244. BackupInstance (0ms)
  3245. ReleaseScriptingObjects (0ms)
  3246. CreateAndSetChildDomain (37ms)
  3247. EndReloadAssembly (790ms)
  3248. LoadAssemblies (138ms)
  3249. RebuildTransferFunctionScriptingTraits (0ms)
  3250. SetupTypeCache (309ms)
  3251. ReleaseScriptCaches (2ms)
  3252. RebuildScriptCaches (65ms)
  3253. SetupLoadedEditorAssemblies (253ms)
  3254. LogAssemblyErrors (0ms)
  3255. InitializePlatformSupportModulesInManaged (10ms)
  3256. SetLoadedEditorAssemblies (1ms)
  3257. RefreshPlugins (1ms)
  3258. BeforeProcessingInitializeOnLoad (48ms)
  3259. ProcessInitializeOnLoadAttributes (160ms)
  3260. ProcessInitializeOnLoadMethodAttributes (25ms)
  3261. AfterProcessingInitializeOnLoad (9ms)
  3262. EditorAssembliesLoaded (0ms)
  3263. ExecutionOrderSort2 (0ms)
  3264. AwakeInstancesAfterBackupRestoration (6ms)
  3265. Platform modules already initialized, skipping
  3266. Refreshing native plugins compatible for Editor in 1.64 ms, found 3 plugins.
  3267. Preloading 0 native plugins for Editor in 0.00 ms.
  3268. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  3269. Unloading 20 unused Assets / (78.3 KB). Loaded Objects now: 4004.
  3270. Memory consumption went from 116.7 MB to 116.6 MB.
  3271. Total: 2.544800 ms (FindLiveObjects: 0.209100 ms CreateObjectMapping: 0.093600 ms MarkObjects: 2.169200 ms DeleteObjects: 0.072000 ms)
  3272. AssetImportParameters requested are different than current active one (requested -> active):
  3273. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3274. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3275. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3276. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3277. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3278. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3279. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3280. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3281. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3282. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3283. ========================================================================
  3284. Received Prepare
  3285. Registering precompiled user dll's ...
  3286. Registered in 0.017156 seconds.
  3287. Begin MonoManager ReloadAssembly
  3288. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3289. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3290. Native extension for WindowsStandalone target not found
  3291. Refreshing native plugins compatible for Editor in 0.67 ms, found 3 plugins.
  3292. Preloading 0 native plugins for Editor in 0.00 ms.
  3293. Mono: successfully reloaded assembly
  3294. - Completed reload, in 1.322 seconds
  3295. Domain Reload Profiling:
  3296. ReloadAssembly (1322ms)
  3297. BeginReloadAssembly (185ms)
  3298. ExecutionOrderSort (0ms)
  3299. DisableScriptedObjects (8ms)
  3300. BackupInstance (0ms)
  3301. ReleaseScriptingObjects (0ms)
  3302. CreateAndSetChildDomain (37ms)
  3303. EndReloadAssembly (1001ms)
  3304. LoadAssemblies (130ms)
  3305. RebuildTransferFunctionScriptingTraits (0ms)
  3306. SetupTypeCache (341ms)
  3307. ReleaseScriptCaches (2ms)
  3308. RebuildScriptCaches (70ms)
  3309. SetupLoadedEditorAssemblies (414ms)
  3310. LogAssemblyErrors (0ms)
  3311. InitializePlatformSupportModulesInManaged (17ms)
  3312. SetLoadedEditorAssemblies (1ms)
  3313. RefreshPlugins (1ms)
  3314. BeforeProcessingInitializeOnLoad (93ms)
  3315. ProcessInitializeOnLoadAttributes (251ms)
  3316. ProcessInitializeOnLoadMethodAttributes (37ms)
  3317. AfterProcessingInitializeOnLoad (14ms)
  3318. EditorAssembliesLoaded (0ms)
  3319. ExecutionOrderSort2 (0ms)
  3320. AwakeInstancesAfterBackupRestoration (9ms)
  3321. Platform modules already initialized, skipping
  3322. Refreshing native plugins compatible for Editor in 3.30 ms, found 3 plugins.
  3323. Preloading 0 native plugins for Editor in 0.00 ms.
  3324. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  3325. Unloading 20 unused Assets / (78.3 KB). Loaded Objects now: 4007.
  3326. Memory consumption went from 116.7 MB to 116.6 MB.
  3327. Total: 4.658800 ms (FindLiveObjects: 0.581700 ms CreateObjectMapping: 0.123000 ms MarkObjects: 3.830700 ms DeleteObjects: 0.121800 ms)
  3328. AssetImportParameters requested are different than current active one (requested -> active):
  3329. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3330. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3331. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3332. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3333. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3334. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3335. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3336. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3337. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3338. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3339. ========================================================================
  3340. Received Prepare
  3341. Registering precompiled user dll's ...
  3342. Registered in 0.007315 seconds.
  3343. Begin MonoManager ReloadAssembly
  3344. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3345. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3346. Native extension for WindowsStandalone target not found
  3347. Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
  3348. Preloading 0 native plugins for Editor in 0.00 ms.
  3349. Mono: successfully reloaded assembly
  3350. - Completed reload, in 0.679 seconds
  3351. Domain Reload Profiling:
  3352. ReloadAssembly (680ms)
  3353. BeginReloadAssembly (107ms)
  3354. ExecutionOrderSort (0ms)
  3355. DisableScriptedObjects (4ms)
  3356. BackupInstance (0ms)
  3357. ReleaseScriptingObjects (0ms)
  3358. CreateAndSetChildDomain (25ms)
  3359. EndReloadAssembly (502ms)
  3360. LoadAssemblies (70ms)
  3361. RebuildTransferFunctionScriptingTraits (0ms)
  3362. SetupTypeCache (153ms)
  3363. ReleaseScriptCaches (1ms)
  3364. RebuildScriptCaches (25ms)
  3365. SetupLoadedEditorAssemblies (226ms)
  3366. LogAssemblyErrors (0ms)
  3367. InitializePlatformSupportModulesInManaged (10ms)
  3368. SetLoadedEditorAssemblies (0ms)
  3369. RefreshPlugins (0ms)
  3370. BeforeProcessingInitializeOnLoad (43ms)
  3371. ProcessInitializeOnLoadAttributes (145ms)
  3372. ProcessInitializeOnLoadMethodAttributes (20ms)
  3373. AfterProcessingInitializeOnLoad (7ms)
  3374. EditorAssembliesLoaded (0ms)
  3375. ExecutionOrderSort2 (0ms)
  3376. AwakeInstancesAfterBackupRestoration (8ms)
  3377. Platform modules already initialized, skipping
  3378. Refreshing native plugins compatible for Editor in 1.86 ms, found 3 plugins.
  3379. Preloading 0 native plugins for Editor in 0.00 ms.
  3380. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  3381. Unloading 20 unused Assets / (78.3 KB). Loaded Objects now: 4010.
  3382. Memory consumption went from 116.7 MB to 116.6 MB.
  3383. Total: 2.679000 ms (FindLiveObjects: 0.243800 ms CreateObjectMapping: 0.084000 ms MarkObjects: 2.261400 ms DeleteObjects: 0.088900 ms)
  3384. AssetImportParameters requested are different than current active one (requested -> active):
  3385. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3386. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3387. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3388. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3389. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3390. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3391. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3392. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3393. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3394. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3395. ========================================================================
  3396. Received Prepare
  3397. Registering precompiled user dll's ...
  3398. Registered in 0.007707 seconds.
  3399. Begin MonoManager ReloadAssembly
  3400. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3401. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3402. Native extension for WindowsStandalone target not found
  3403. Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
  3404. Preloading 0 native plugins for Editor in 0.00 ms.
  3405. Mono: successfully reloaded assembly
  3406. - Completed reload, in 0.765 seconds
  3407. Domain Reload Profiling:
  3408. ReloadAssembly (766ms)
  3409. BeginReloadAssembly (111ms)
  3410. ExecutionOrderSort (0ms)
  3411. DisableScriptedObjects (3ms)
  3412. BackupInstance (0ms)
  3413. ReleaseScriptingObjects (0ms)
  3414. CreateAndSetChildDomain (24ms)
  3415. EndReloadAssembly (585ms)
  3416. LoadAssemblies (70ms)
  3417. RebuildTransferFunctionScriptingTraits (0ms)
  3418. SetupTypeCache (184ms)
  3419. ReleaseScriptCaches (1ms)
  3420. RebuildScriptCaches (30ms)
  3421. SetupLoadedEditorAssemblies (268ms)
  3422. LogAssemblyErrors (0ms)
  3423. InitializePlatformSupportModulesInManaged (10ms)
  3424. SetLoadedEditorAssemblies (0ms)
  3425. RefreshPlugins (1ms)
  3426. BeforeProcessingInitializeOnLoad (48ms)
  3427. ProcessInitializeOnLoadAttributes (173ms)
  3428. ProcessInitializeOnLoadMethodAttributes (28ms)
  3429. AfterProcessingInitializeOnLoad (8ms)
  3430. EditorAssembliesLoaded (0ms)
  3431. ExecutionOrderSort2 (0ms)
  3432. AwakeInstancesAfterBackupRestoration (8ms)
  3433. Platform modules already initialized, skipping
  3434. Refreshing native plugins compatible for Editor in 2.14 ms, found 3 plugins.
  3435. Preloading 0 native plugins for Editor in 0.00 ms.
  3436. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  3437. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 4013.
  3438. Memory consumption went from 116.7 MB to 116.6 MB.
  3439. Total: 2.533700 ms (FindLiveObjects: 0.193400 ms CreateObjectMapping: 0.080200 ms MarkObjects: 2.177100 ms DeleteObjects: 0.081900 ms)
  3440. AssetImportParameters requested are different than current active one (requested -> active):
  3441. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3442. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3443. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3444. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3445. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3446. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3447. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3448. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3449. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3450. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3451. ========================================================================
  3452. Received Prepare
  3453. Registering precompiled user dll's ...
  3454. Registered in 0.008698 seconds.
  3455. Begin MonoManager ReloadAssembly
  3456. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3457. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3458. Native extension for WindowsStandalone target not found
  3459. Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
  3460. Preloading 0 native plugins for Editor in 0.00 ms.
  3461. Mono: successfully reloaded assembly
  3462. - Completed reload, in 0.704 seconds
  3463. Domain Reload Profiling:
  3464. ReloadAssembly (704ms)
  3465. BeginReloadAssembly (109ms)
  3466. ExecutionOrderSort (0ms)
  3467. DisableScriptedObjects (3ms)
  3468. BackupInstance (0ms)
  3469. ReleaseScriptingObjects (0ms)
  3470. CreateAndSetChildDomain (24ms)
  3471. EndReloadAssembly (526ms)
  3472. LoadAssemblies (75ms)
  3473. RebuildTransferFunctionScriptingTraits (0ms)
  3474. SetupTypeCache (157ms)
  3475. ReleaseScriptCaches (1ms)
  3476. RebuildScriptCaches (25ms)
  3477. SetupLoadedEditorAssemblies (239ms)
  3478. LogAssemblyErrors (0ms)
  3479. InitializePlatformSupportModulesInManaged (9ms)
  3480. SetLoadedEditorAssemblies (0ms)
  3481. RefreshPlugins (1ms)
  3482. BeforeProcessingInitializeOnLoad (45ms)
  3483. ProcessInitializeOnLoadAttributes (151ms)
  3484. ProcessInitializeOnLoadMethodAttributes (25ms)
  3485. AfterProcessingInitializeOnLoad (9ms)
  3486. EditorAssembliesLoaded (0ms)
  3487. ExecutionOrderSort2 (0ms)
  3488. AwakeInstancesAfterBackupRestoration (7ms)
  3489. Platform modules already initialized, skipping
  3490. Refreshing native plugins compatible for Editor in 1.81 ms, found 3 plugins.
  3491. Preloading 0 native plugins for Editor in 0.00 ms.
  3492. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  3493. Unloading 20 unused Assets / (78.3 KB). Loaded Objects now: 4016.
  3494. Memory consumption went from 116.7 MB to 116.7 MB.
  3495. Total: 2.672600 ms (FindLiveObjects: 0.296000 ms CreateObjectMapping: 0.142400 ms MarkObjects: 2.155900 ms DeleteObjects: 0.077600 ms)
  3496. AssetImportParameters requested are different than current active one (requested -> active):
  3497. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3498. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3499. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3500. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3501. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3502. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3503. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3504. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3505. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3506. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3507. ========================================================================
  3508. Received Prepare
  3509. Registering precompiled user dll's ...
  3510. Registered in 0.006607 seconds.
  3511. Begin MonoManager ReloadAssembly
  3512. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3513. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3514. Native extension for WindowsStandalone target not found
  3515. Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
  3516. Preloading 0 native plugins for Editor in 0.00 ms.
  3517. Mono: successfully reloaded assembly
  3518. - Completed reload, in 0.837 seconds
  3519. Domain Reload Profiling:
  3520. ReloadAssembly (837ms)
  3521. BeginReloadAssembly (123ms)
  3522. ExecutionOrderSort (0ms)
  3523. DisableScriptedObjects (3ms)
  3524. BackupInstance (0ms)
  3525. ReleaseScriptingObjects (0ms)
  3526. CreateAndSetChildDomain (24ms)
  3527. EndReloadAssembly (622ms)
  3528. LoadAssemblies (92ms)
  3529. RebuildTransferFunctionScriptingTraits (0ms)
  3530. SetupTypeCache (213ms)
  3531. ReleaseScriptCaches (1ms)
  3532. RebuildScriptCaches (29ms)
  3533. SetupLoadedEditorAssemblies (264ms)
  3534. LogAssemblyErrors (0ms)
  3535. InitializePlatformSupportModulesInManaged (11ms)
  3536. SetLoadedEditorAssemblies (0ms)
  3537. RefreshPlugins (1ms)
  3538. BeforeProcessingInitializeOnLoad (50ms)
  3539. ProcessInitializeOnLoadAttributes (171ms)
  3540. ProcessInitializeOnLoadMethodAttributes (23ms)
  3541. AfterProcessingInitializeOnLoad (7ms)
  3542. EditorAssembliesLoaded (0ms)
  3543. ExecutionOrderSort2 (0ms)
  3544. AwakeInstancesAfterBackupRestoration (7ms)
  3545. Platform modules already initialized, skipping
  3546. Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins.
  3547. Preloading 0 native plugins for Editor in 0.00 ms.
  3548. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  3549. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 4019.
  3550. Memory consumption went from 116.7 MB to 116.7 MB.
  3551. Total: 2.648300 ms (FindLiveObjects: 0.222500 ms CreateObjectMapping: 0.088200 ms MarkObjects: 2.227000 ms DeleteObjects: 0.108800 ms)
  3552. AssetImportParameters requested are different than current active one (requested -> active):
  3553. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3554. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3555. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3556. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3557. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3558. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3559. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3560. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3561. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3562. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3563. ========================================================================
  3564. Received Prepare
  3565. Registering precompiled user dll's ...
  3566. Registered in 0.008149 seconds.
  3567. Begin MonoManager ReloadAssembly
  3568. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3569. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3570. Native extension for WindowsStandalone target not found
  3571. Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins.
  3572. Preloading 0 native plugins for Editor in 0.00 ms.
  3573. Mono: successfully reloaded assembly
  3574. - Completed reload, in 0.692 seconds
  3575. Domain Reload Profiling:
  3576. ReloadAssembly (692ms)
  3577. BeginReloadAssembly (101ms)
  3578. ExecutionOrderSort (0ms)
  3579. DisableScriptedObjects (4ms)
  3580. BackupInstance (0ms)
  3581. ReleaseScriptingObjects (0ms)
  3582. CreateAndSetChildDomain (23ms)
  3583. EndReloadAssembly (518ms)
  3584. LoadAssemblies (64ms)
  3585. RebuildTransferFunctionScriptingTraits (0ms)
  3586. SetupTypeCache (154ms)
  3587. ReleaseScriptCaches (1ms)
  3588. RebuildScriptCaches (26ms)
  3589. SetupLoadedEditorAssemblies (237ms)
  3590. LogAssemblyErrors (0ms)
  3591. InitializePlatformSupportModulesInManaged (8ms)
  3592. SetLoadedEditorAssemblies (0ms)
  3593. RefreshPlugins (0ms)
  3594. BeforeProcessingInitializeOnLoad (43ms)
  3595. ProcessInitializeOnLoadAttributes (155ms)
  3596. ProcessInitializeOnLoadMethodAttributes (23ms)
  3597. AfterProcessingInitializeOnLoad (6ms)
  3598. EditorAssembliesLoaded (0ms)
  3599. ExecutionOrderSort2 (0ms)
  3600. AwakeInstancesAfterBackupRestoration (6ms)
  3601. Platform modules already initialized, skipping
  3602. Refreshing native plugins compatible for Editor in 2.19 ms, found 3 plugins.
  3603. Preloading 0 native plugins for Editor in 0.00 ms.
  3604. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  3605. Unloading 20 unused Assets / (78.3 KB). Loaded Objects now: 4022.
  3606. Memory consumption went from 116.7 MB to 116.7 MB.
  3607. Total: 2.805400 ms (FindLiveObjects: 0.219400 ms CreateObjectMapping: 0.097100 ms MarkObjects: 2.357300 ms DeleteObjects: 0.128000 ms)
  3608. AssetImportParameters requested are different than current active one (requested -> active):
  3609. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3610. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3611. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3612. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3613. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3614. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3615. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3616. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3617. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3618. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3619. ========================================================================
  3620. Received Prepare
  3621. Registering precompiled user dll's ...
  3622. Registered in 0.016915 seconds.
  3623. Begin MonoManager ReloadAssembly
  3624. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3625. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3626. Native extension for WindowsStandalone target not found
  3627. Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins.
  3628. Preloading 0 native plugins for Editor in 0.00 ms.
  3629. Mono: successfully reloaded assembly
  3630. - Completed reload, in 1.239 seconds
  3631. Domain Reload Profiling:
  3632. ReloadAssembly (1239ms)
  3633. BeginReloadAssembly (181ms)
  3634. ExecutionOrderSort (0ms)
  3635. DisableScriptedObjects (7ms)
  3636. BackupInstance (0ms)
  3637. ReleaseScriptingObjects (0ms)
  3638. CreateAndSetChildDomain (36ms)
  3639. EndReloadAssembly (916ms)
  3640. LoadAssemblies (125ms)
  3641. RebuildTransferFunctionScriptingTraits (0ms)
  3642. SetupTypeCache (273ms)
  3643. ReleaseScriptCaches (1ms)
  3644. RebuildScriptCaches (58ms)
  3645. SetupLoadedEditorAssemblies (399ms)
  3646. LogAssemblyErrors (0ms)
  3647. InitializePlatformSupportModulesInManaged (15ms)
  3648. SetLoadedEditorAssemblies (1ms)
  3649. RefreshPlugins (1ms)
  3650. BeforeProcessingInitializeOnLoad (88ms)
  3651. ProcessInitializeOnLoadAttributes (249ms)
  3652. ProcessInitializeOnLoadMethodAttributes (33ms)
  3653. AfterProcessingInitializeOnLoad (13ms)
  3654. EditorAssembliesLoaded (0ms)
  3655. ExecutionOrderSort2 (0ms)
  3656. AwakeInstancesAfterBackupRestoration (12ms)
  3657. Platform modules already initialized, skipping
  3658. Refreshing native plugins compatible for Editor in 3.28 ms, found 3 plugins.
  3659. Preloading 0 native plugins for Editor in 0.00 ms.
  3660. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  3661. Unloading 20 unused Assets / (78.3 KB). Loaded Objects now: 4025.
  3662. Memory consumption went from 116.8 MB to 116.7 MB.
  3663. Total: 3.045900 ms (FindLiveObjects: 0.279400 ms CreateObjectMapping: 0.085900 ms MarkObjects: 2.451000 ms DeleteObjects: 0.228500 ms)
  3664. AssetImportParameters requested are different than current active one (requested -> active):
  3665. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3666. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3667. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3668. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3669. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3670. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3671. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3672. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3673. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3674. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3675. ========================================================================
  3676. Received Prepare
  3677. Registering precompiled user dll's ...
  3678. Registered in 0.028012 seconds.
  3679. Begin MonoManager ReloadAssembly
  3680. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3681. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3682. Native extension for WindowsStandalone target not found
  3683. Refreshing native plugins compatible for Editor in 0.83 ms, found 3 plugins.
  3684. Preloading 0 native plugins for Editor in 0.00 ms.
  3685. Mono: successfully reloaded assembly
  3686. - Completed reload, in 1.335 seconds
  3687. Domain Reload Profiling:
  3688. ReloadAssembly (1336ms)
  3689. BeginReloadAssembly (174ms)
  3690. ExecutionOrderSort (0ms)
  3691. DisableScriptedObjects (7ms)
  3692. BackupInstance (0ms)
  3693. ReleaseScriptingObjects (0ms)
  3694. CreateAndSetChildDomain (36ms)
  3695. EndReloadAssembly (1027ms)
  3696. LoadAssemblies (160ms)
  3697. RebuildTransferFunctionScriptingTraits (0ms)
  3698. SetupTypeCache (338ms)
  3699. ReleaseScriptCaches (2ms)
  3700. RebuildScriptCaches (53ms)
  3701. SetupLoadedEditorAssemblies (418ms)
  3702. LogAssemblyErrors (0ms)
  3703. InitializePlatformSupportModulesInManaged (16ms)
  3704. SetLoadedEditorAssemblies (1ms)
  3705. RefreshPlugins (1ms)
  3706. BeforeProcessingInitializeOnLoad (105ms)
  3707. ProcessInitializeOnLoadAttributes (244ms)
  3708. ProcessInitializeOnLoadMethodAttributes (35ms)
  3709. AfterProcessingInitializeOnLoad (14ms)
  3710. EditorAssembliesLoaded (0ms)
  3711. ExecutionOrderSort2 (0ms)
  3712. AwakeInstancesAfterBackupRestoration (10ms)
  3713. Platform modules already initialized, skipping
  3714. Refreshing native plugins compatible for Editor in 2.79 ms, found 3 plugins.
  3715. Preloading 0 native plugins for Editor in 0.00 ms.
  3716. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  3717. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 4028.
  3718. Memory consumption went from 116.8 MB to 116.7 MB.
  3719. Total: 4.183100 ms (FindLiveObjects: 0.364500 ms CreateObjectMapping: 0.213000 ms MarkObjects: 3.446600 ms DeleteObjects: 0.157400 ms)
  3720. AssetImportParameters requested are different than current active one (requested -> active):
  3721. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3722. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3723. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3724. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3725. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3726. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3727. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3728. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3729. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3730. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3731. ========================================================================
  3732. Received Prepare
  3733. Registering precompiled user dll's ...
  3734. Registered in 0.006968 seconds.
  3735. Begin MonoManager ReloadAssembly
  3736. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3737. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3738. Native extension for WindowsStandalone target not found
  3739. Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
  3740. Preloading 0 native plugins for Editor in 0.00 ms.
  3741. Mono: successfully reloaded assembly
  3742. - Completed reload, in 0.699 seconds
  3743. Domain Reload Profiling:
  3744. ReloadAssembly (699ms)
  3745. BeginReloadAssembly (110ms)
  3746. ExecutionOrderSort (0ms)
  3747. DisableScriptedObjects (3ms)
  3748. BackupInstance (0ms)
  3749. ReleaseScriptingObjects (0ms)
  3750. CreateAndSetChildDomain (24ms)
  3751. EndReloadAssembly (519ms)
  3752. LoadAssemblies (75ms)
  3753. RebuildTransferFunctionScriptingTraits (0ms)
  3754. SetupTypeCache (155ms)
  3755. ReleaseScriptCaches (1ms)
  3756. RebuildScriptCaches (28ms)
  3757. SetupLoadedEditorAssemblies (235ms)
  3758. LogAssemblyErrors (0ms)
  3759. InitializePlatformSupportModulesInManaged (9ms)
  3760. SetLoadedEditorAssemblies (0ms)
  3761. RefreshPlugins (0ms)
  3762. BeforeProcessingInitializeOnLoad (45ms)
  3763. ProcessInitializeOnLoadAttributes (150ms)
  3764. ProcessInitializeOnLoadMethodAttributes (23ms)
  3765. AfterProcessingInitializeOnLoad (8ms)
  3766. EditorAssembliesLoaded (0ms)
  3767. ExecutionOrderSort2 (0ms)
  3768. AwakeInstancesAfterBackupRestoration (6ms)
  3769. Platform modules already initialized, skipping
  3770. Refreshing native plugins compatible for Editor in 1.97 ms, found 3 plugins.
  3771. Preloading 0 native plugins for Editor in 0.00 ms.
  3772. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  3773. Unloading 20 unused Assets / (78.3 KB). Loaded Objects now: 4031.
  3774. Memory consumption went from 116.8 MB to 116.7 MB.
  3775. Total: 2.691600 ms (FindLiveObjects: 0.205000 ms CreateObjectMapping: 0.083600 ms MarkObjects: 2.317200 ms DeleteObjects: 0.084800 ms)
  3776. AssetImportParameters requested are different than current active one (requested -> active):
  3777. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3778. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3779. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3780. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3781. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3782. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3783. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3784. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3785. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3786. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3787. ========================================================================
  3788. Received Prepare
  3789. Registering precompiled user dll's ...
  3790. Registered in 0.023722 seconds.
  3791. Begin MonoManager ReloadAssembly
  3792. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3793. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3794. Native extension for WindowsStandalone target not found
  3795. Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins.
  3796. Preloading 0 native plugins for Editor in 0.00 ms.
  3797. Mono: successfully reloaded assembly
  3798. - Completed reload, in 1.580 seconds
  3799. Domain Reload Profiling:
  3800. ReloadAssembly (1580ms)
  3801. BeginReloadAssembly (161ms)
  3802. ExecutionOrderSort (0ms)
  3803. DisableScriptedObjects (9ms)
  3804. BackupInstance (0ms)
  3805. ReleaseScriptingObjects (0ms)
  3806. CreateAndSetChildDomain (36ms)
  3807. EndReloadAssembly (1232ms)
  3808. LoadAssemblies (148ms)
  3809. RebuildTransferFunctionScriptingTraits (0ms)
  3810. SetupTypeCache (353ms)
  3811. ReleaseScriptCaches (2ms)
  3812. RebuildScriptCaches (63ms)
  3813. SetupLoadedEditorAssemblies (538ms)
  3814. LogAssemblyErrors (0ms)
  3815. InitializePlatformSupportModulesInManaged (19ms)
  3816. SetLoadedEditorAssemblies (1ms)
  3817. RefreshPlugins (1ms)
  3818. BeforeProcessingInitializeOnLoad (131ms)
  3819. ProcessInitializeOnLoadAttributes (314ms)
  3820. ProcessInitializeOnLoadMethodAttributes (50ms)
  3821. AfterProcessingInitializeOnLoad (22ms)
  3822. EditorAssembliesLoaded (0ms)
  3823. ExecutionOrderSort2 (0ms)
  3824. AwakeInstancesAfterBackupRestoration (13ms)
  3825. Platform modules already initialized, skipping
  3826. Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins.
  3827. Preloading 0 native plugins for Editor in 0.00 ms.
  3828. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  3829. Unloading 20 unused Assets / (78.3 KB). Loaded Objects now: 4034.
  3830. Memory consumption went from 116.8 MB to 116.7 MB.
  3831. Total: 2.568400 ms (FindLiveObjects: 0.189200 ms CreateObjectMapping: 0.081800 ms MarkObjects: 2.220400 ms DeleteObjects: 0.075800 ms)
  3832. AssetImportParameters requested are different than current active one (requested -> active):
  3833. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3834. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3835. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3836. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3837. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3838. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3839. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3840. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3841. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3842. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3843. ========================================================================
  3844. Received Prepare
  3845. Registering precompiled user dll's ...
  3846. Registered in 0.006187 seconds.
  3847. Begin MonoManager ReloadAssembly
  3848. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3849. Symbol file LoadedFromMemory doesn't match image D:\U3D\airplane\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3850. Native extension for WindowsStandalone target not found
  3851. Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
  3852. Preloading 0 native plugins for Editor in 0.00 ms.
  3853. Mono: successfully reloaded assembly
  3854. - Completed reload, in 0.757 seconds
  3855. Domain Reload Profiling:
  3856. ReloadAssembly (758ms)
  3857. BeginReloadAssembly (112ms)
  3858. ExecutionOrderSort (0ms)
  3859. DisableScriptedObjects (3ms)
  3860. BackupInstance (0ms)
  3861. ReleaseScriptingObjects (0ms)
  3862. CreateAndSetChildDomain (26ms)
  3863. EndReloadAssembly (570ms)
  3864. LoadAssemblies (74ms)
  3865. RebuildTransferFunctionScriptingTraits (0ms)
  3866. SetupTypeCache (180ms)
  3867. ReleaseScriptCaches (1ms)
  3868. RebuildScriptCaches (30ms)
  3869. SetupLoadedEditorAssemblies (254ms)
  3870. LogAssemblyErrors (0ms)
  3871. InitializePlatformSupportModulesInManaged (10ms)
  3872. SetLoadedEditorAssemblies (0ms)
  3873. RefreshPlugins (1ms)
  3874. BeforeProcessingInitializeOnLoad (50ms)
  3875. ProcessInitializeOnLoadAttributes (160ms)
  3876. ProcessInitializeOnLoadMethodAttributes (22ms)
  3877. AfterProcessingInitializeOnLoad (10ms)
  3878. EditorAssembliesLoaded (0ms)
  3879. ExecutionOrderSort2 (0ms)
  3880. AwakeInstancesAfterBackupRestoration (6ms)
  3881. Platform modules already initialized, skipping
  3882. Refreshing native plugins compatible for Editor in 1.59 ms, found 3 plugins.
  3883. Preloading 0 native plugins for Editor in 0.00 ms.
  3884. Unloading 3376 Unused Serialized files (Serialized files now loaded: 0)
  3885. Unloading 20 unused Assets / (78.2 KB). Loaded Objects now: 4037.
  3886. Memory consumption went from 116.8 MB to 116.7 MB.
  3887. Total: 3.129400 ms (FindLiveObjects: 0.271400 ms CreateObjectMapping: 0.472900 ms MarkObjects: 2.292700 ms DeleteObjects: 0.091200 ms)
  3888. AssetImportParameters requested are different than current active one (requested -> active):
  3889. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3890. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3891. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3892. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3893. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3894. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3895. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3896. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3897. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3898. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->