| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856 |
- Using pre-set license
- Built from '2020.3/china_unity/release' branch; Version is '2020.3.15f1c1 (2f15a4c58450) revision 3085732'; Using compiler version '192528614'; Build Type 'Release'
- OS: 'Windows 10 Pro; OS build 19043.1110; Version 2009; 64bit' Language: 'zh' Physical Memory: 16305 MB
- BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
- COMMAND LINE ARGUMENTS:
- C:\workflow\software\Unity\2020.3.15f1c1\Editor\Unity.exe
- -adb2
- -batchMode
- -noUpm
- -name
- AssetImportWorker0
- -projectPath
- D:/workflow/project/unity/ToneTuneToolkit
- -logFile
- Logs/AssetImportWorker0.log
- -srvPort
- 60285
- Successfully changed project path to: D:/workflow/project/unity/ToneTuneToolkit
- D:/workflow/project/unity/ToneTuneToolkit
- Using Asset Import Pipeline V2.
- Refreshing native plugins compatible for Editor in 43.99 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Initialize engine version: 2020.3.15f1c1 (2f15a4c58450)
- [Subsystems] Discovering subsystems at path C:/workflow/software/Unity/2020.3.15f1c1/Editor/Data/Resources/UnitySubsystems
- [Subsystems] Discovering subsystems at path D:/workflow/project/unity/ToneTuneToolkit/Assets
- GfxDevice: creating device client; threaded=0
- Direct3D:
- Version: Direct3D 11.0 [level 11.1]
- Renderer: NVIDIA GeForce GTX 1070 (ID=0x1b81)
- Vendor:
- VRAM: 8088 MB
- Driver: 27.21.14.5671
- Initialize mono
- Mono path[0] = 'C:/workflow/software/Unity/2020.3.15f1c1/Editor/Data/Managed'
- Mono path[1] = 'C:/workflow/software/Unity/2020.3.15f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
- Mono config path = 'C:/workflow/software/Unity/2020.3.15f1c1/Editor/Data/MonoBleedingEdge/etc'
- Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56224
- Begin MonoManager ReloadAssembly
- Registering precompiled unity dll's ...
- Register platform support module: C:/workflow/software/Unity/2020.3.15f1c1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll
- Register platform support module: C:/workflow/software/Unity/2020.3.15f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
- Registered in 0.003661 seconds.
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 41.59 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 2.199 seconds
- Domain Reload Profiling:
- ReloadAssembly (2199ms)
- BeginReloadAssembly (62ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (0ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (1ms)
- EndReloadAssembly (392ms)
- LoadAssemblies (58ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (141ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (29ms)
- SetupLoadedEditorAssemblies (157ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (5ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (42ms)
- BeforeProcessingInitializeOnLoad (10ms)
- ProcessInitializeOnLoadAttributes (74ms)
- ProcessInitializeOnLoadMethodAttributes (27ms)
- AfterProcessingInitializeOnLoad (0ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (0ms)
- Platform modules already initialized, skipping
- Registering precompiled user dll's ...
- Registered in 0.003008 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 41.23 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.175 seconds
- Domain Reload Profiling:
- ReloadAssembly (1176ms)
- BeginReloadAssembly (147ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (4ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (17ms)
- EndReloadAssembly (965ms)
- LoadAssemblies (96ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (285ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (46ms)
- SetupLoadedEditorAssemblies (430ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (5ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (41ms)
- BeforeProcessingInitializeOnLoad (87ms)
- ProcessInitializeOnLoadAttributes (273ms)
- ProcessInitializeOnLoadMethodAttributes (12ms)
- AfterProcessingInitializeOnLoad (11ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (6ms)
- Platform modules already initialized, skipping
- ========================================================================
- Worker process is ready to serve import requests
- Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds
- Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2125 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.4 MB.
- System memory in use after: 170.5 MB.
- Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2583.
- Total: 2.410000 ms (FindLiveObjects: 0.174100 ms CreateObjectMapping: 0.074200 ms MarkObjects: 2.108700 ms DeleteObjects: 0.052100 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- path: Assets/ToneTuneToolkit/Documentation.md
- artifactKey: Guid(00277320b88355049b5c0adbb1dc7925) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Documentation.md using Guid(00277320b88355049b5c0adbb1dc7925) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '660206f7487850624a822d726ec89e0a') in 0.031664 seconds
- Import took 0.034724 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.002919 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.039 seconds
- Domain Reload Profiling:
- ReloadAssembly (1039ms)
- BeginReloadAssembly (118ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (32ms)
- EndReloadAssembly (856ms)
- LoadAssemblies (93ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (272ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (39ms)
- SetupLoadedEditorAssemblies (359ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (94ms)
- ProcessInitializeOnLoadAttributes (243ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 169.9 MB.
- System memory in use after: 170.0 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2588.
- Total: 2.360300 ms (FindLiveObjects: 0.188200 ms CreateObjectMapping: 0.092900 ms MarkObjects: 2.060000 ms DeleteObjects: 0.018100 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 102.171594 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Other/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Other/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed4d58c14dc9015a371e408c9a273cac') in 0.010832 seconds
- Import took 0.013724 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003400 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.042 seconds
- Domain Reload Profiling:
- ReloadAssembly (1043ms)
- BeginReloadAssembly (120ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (31ms)
- EndReloadAssembly (858ms)
- LoadAssemblies (95ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (269ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (39ms)
- SetupLoadedEditorAssemblies (363ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (94ms)
- ProcessInitializeOnLoadAttributes (243ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (14ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 169.9 MB.
- System memory in use after: 170.1 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2592.
- Total: 2.633400 ms (FindLiveObjects: 0.173300 ms CreateObjectMapping: 0.068000 ms MarkObjects: 2.370700 ms DeleteObjects: 0.020300 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 166.105476 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Other/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Other/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '32d43ed67a1524e86a1c6ecb7da512bc') in 0.004030 seconds
- Import took 0.007021 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 5.412652 seconds.
- path: Assets/Examples/_Template 1
- artifactKey: Guid(bad7bc9047c78784ebe5ac5748dbcb66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Examples/_Template 1 using Guid(bad7bc9047c78784ebe5ac5748dbcb66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f4c1439296e2205fbd1e95e1842af547') in 0.001908 seconds
- Import took 0.004907 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 3.384241 seconds.
- path: Assets/Examples/TEST
- artifactKey: Guid(bad7bc9047c78784ebe5ac5748dbcb66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Examples/TEST using Guid(bad7bc9047c78784ebe5ac5748dbcb66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9197a14471bfc6fcabe0d4b2e08e9309') in 0.002641 seconds
- Import took 0.005639 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 1.158077 seconds.
- path: Assets/Examples/TEST/Scripts
- artifactKey: Guid(697bea3e38c5a2d45af275a98a2bce05) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Examples/TEST/Scripts using Guid(697bea3e38c5a2d45af275a98a2bce05) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a626765ecde3b9a837b9890d16866cb7') in 0.001896 seconds
- Import took 0.005162 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.393111 seconds.
- path: Assets/Examples/TEST/Scripts/ExampleTestScript.cs
- artifactKey: Guid(7623bd500ec06b0479a9ad3d15d65d77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Examples/TEST/Scripts/ExampleTestScript.cs using Guid(7623bd500ec06b0479a9ad3d15d65d77) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5fd09caf137fd2d426552fe313f66a30') in 0.001904 seconds
- Import took 0.005534 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003154 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.042 seconds
- Domain Reload Profiling:
- ReloadAssembly (1043ms)
- BeginReloadAssembly (124ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (31ms)
- EndReloadAssembly (856ms)
- LoadAssemblies (94ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (268ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (40ms)
- SetupLoadedEditorAssemblies (360ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (94ms)
- ProcessInitializeOnLoadAttributes (244ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.0 MB.
- System memory in use after: 170.1 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2596.
- Total: 2.453400 ms (FindLiveObjects: 0.180800 ms CreateObjectMapping: 0.075200 ms MarkObjects: 2.181000 ms DeleteObjects: 0.015600 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 7.805128 seconds.
- path: Assets/Examples/_TEST
- artifactKey: Guid(bad7bc9047c78784ebe5ac5748dbcb66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Examples/_TEST using Guid(bad7bc9047c78784ebe5ac5748dbcb66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '98af3a2f02b5483611ac5f55454d99c7') in 0.004825 seconds
- Import took 0.008001 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 1.488132 seconds.
- path: Assets/Examples/_TEST/Scenes
- artifactKey: Guid(7e77b82fdc0b2ad409ca38aafa43d608) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Examples/_TEST/Scenes using Guid(7e77b82fdc0b2ad409ca38aafa43d608) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e9ff38d6a3910e2cd319bffcdc4d861c') in 0.002038 seconds
- Import took 0.022142 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.388332 seconds.
- path: Assets/Examples/_TEST/Scenes/Example.unity
- artifactKey: Guid(ab263b4030d26444ba853932a266833e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Examples/_TEST/Scenes/Example.unity using Guid(ab263b4030d26444ba853932a266833e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '992578e9351d05e93efb9df225099c36') in 0.013986 seconds
- Import took 0.016810 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003099 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.037 seconds
- Domain Reload Profiling:
- ReloadAssembly (1038ms)
- BeginReloadAssembly (121ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (31ms)
- EndReloadAssembly (851ms)
- LoadAssemblies (93ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (266ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (40ms)
- SetupLoadedEditorAssemblies (362ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (98ms)
- ProcessInitializeOnLoadAttributes (241ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (9ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.0 MB.
- System memory in use after: 170.1 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2600.
- Total: 2.497100 ms (FindLiveObjects: 0.178900 ms CreateObjectMapping: 0.073900 ms MarkObjects: 2.229000 ms DeleteObjects: 0.014600 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003024 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.019 seconds
- Domain Reload Profiling:
- ReloadAssembly (1019ms)
- BeginReloadAssembly (114ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (29ms)
- EndReloadAssembly (839ms)
- LoadAssemblies (94ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (260ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (40ms)
- SetupLoadedEditorAssemblies (356ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (92ms)
- ProcessInitializeOnLoadAttributes (242ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.0 MB.
- System memory in use after: 170.1 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2604.
- Total: 2.544300 ms (FindLiveObjects: 0.168600 ms CreateObjectMapping: 0.065800 ms MarkObjects: 2.293800 ms DeleteObjects: 0.015200 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003295 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.036 seconds
- Domain Reload Profiling:
- ReloadAssembly (1036ms)
- BeginReloadAssembly (111ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (29ms)
- EndReloadAssembly (856ms)
- LoadAssemblies (95ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (266ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (40ms)
- SetupLoadedEditorAssemblies (364ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (96ms)
- ProcessInitializeOnLoadAttributes (245ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.0 MB.
- System memory in use after: 170.1 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2608.
- Total: 2.474900 ms (FindLiveObjects: 0.175200 ms CreateObjectMapping: 0.066700 ms MarkObjects: 2.216700 ms DeleteObjects: 0.015200 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003276 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.039 seconds
- Domain Reload Profiling:
- ReloadAssembly (1039ms)
- BeginReloadAssembly (119ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (29ms)
- EndReloadAssembly (854ms)
- LoadAssemblies (95ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (268ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (39ms)
- SetupLoadedEditorAssemblies (360ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (94ms)
- ProcessInitializeOnLoadAttributes (243ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (11ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.0 MB.
- System memory in use after: 170.2 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2612.
- Total: 2.589600 ms (FindLiveObjects: 0.186700 ms CreateObjectMapping: 0.078800 ms MarkObjects: 2.308200 ms DeleteObjects: 0.014900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003217 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.033 seconds
- Domain Reload Profiling:
- ReloadAssembly (1033ms)
- BeginReloadAssembly (116ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (29ms)
- EndReloadAssembly (849ms)
- LoadAssemblies (94ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (266ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (39ms)
- SetupLoadedEditorAssemblies (358ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (96ms)
- ProcessInitializeOnLoadAttributes (241ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.0 MB.
- System memory in use after: 170.2 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2616.
- Total: 2.559600 ms (FindLiveObjects: 0.176800 ms CreateObjectMapping: 0.074200 ms MarkObjects: 2.292000 ms DeleteObjects: 0.015900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003130 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.62 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.034 seconds
- Domain Reload Profiling:
- ReloadAssembly (1034ms)
- BeginReloadAssembly (121ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (29ms)
- EndReloadAssembly (849ms)
- LoadAssemblies (96ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (264ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (39ms)
- SetupLoadedEditorAssemblies (361ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (94ms)
- ProcessInitializeOnLoadAttributes (245ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (11ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.1 MB.
- System memory in use after: 170.2 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2620.
- Total: 2.404300 ms (FindLiveObjects: 0.174800 ms CreateObjectMapping: 0.071700 ms MarkObjects: 2.141600 ms DeleteObjects: 0.015300 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003073 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.050 seconds
- Domain Reload Profiling:
- ReloadAssembly (1050ms)
- BeginReloadAssembly (127ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (28ms)
- EndReloadAssembly (859ms)
- LoadAssemblies (99ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (271ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (40ms)
- SetupLoadedEditorAssemblies (362ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (96ms)
- ProcessInitializeOnLoadAttributes (244ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (9ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.1 MB.
- System memory in use after: 170.2 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2624.
- Total: 2.735000 ms (FindLiveObjects: 0.170700 ms CreateObjectMapping: 0.067700 ms MarkObjects: 2.478700 ms DeleteObjects: 0.016900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003041 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.052 seconds
- Domain Reload Profiling:
- ReloadAssembly (1052ms)
- BeginReloadAssembly (118ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (29ms)
- EndReloadAssembly (866ms)
- LoadAssemblies (98ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (271ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (40ms)
- SetupLoadedEditorAssemblies (362ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (95ms)
- ProcessInitializeOnLoadAttributes (244ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (11ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.1 MB.
- System memory in use after: 170.2 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2628.
- Total: 2.519600 ms (FindLiveObjects: 0.179600 ms CreateObjectMapping: 0.070700 ms MarkObjects: 2.251000 ms DeleteObjects: 0.017500 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.002948 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.042 seconds
- Domain Reload Profiling:
- ReloadAssembly (1042ms)
- BeginReloadAssembly (119ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (30ms)
- EndReloadAssembly (857ms)
- LoadAssemblies (95ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (269ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (40ms)
- SetupLoadedEditorAssemblies (361ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (92ms)
- ProcessInitializeOnLoadAttributes (247ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.1 MB.
- System memory in use after: 170.2 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2632.
- Total: 2.655900 ms (FindLiveObjects: 0.202500 ms CreateObjectMapping: 0.085200 ms MarkObjects: 2.350800 ms DeleteObjects: 0.016200 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003144 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.034 seconds
- Domain Reload Profiling:
- ReloadAssembly (1034ms)
- BeginReloadAssembly (109ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (28ms)
- EndReloadAssembly (859ms)
- LoadAssemblies (94ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (268ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (39ms)
- SetupLoadedEditorAssemblies (362ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (93ms)
- ProcessInitializeOnLoadAttributes (246ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.1 MB.
- System memory in use after: 170.2 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2636.
- Total: 2.420400 ms (FindLiveObjects: 0.188700 ms CreateObjectMapping: 0.076800 ms MarkObjects: 2.138400 ms DeleteObjects: 0.015500 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.002971 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.040 seconds
- Domain Reload Profiling:
- ReloadAssembly (1041ms)
- BeginReloadAssembly (118ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (30ms)
- EndReloadAssembly (855ms)
- LoadAssemblies (94ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (265ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (42ms)
- SetupLoadedEditorAssemblies (359ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (95ms)
- ProcessInitializeOnLoadAttributes (242ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.1 MB.
- System memory in use after: 170.2 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2640.
- Total: 2.605800 ms (FindLiveObjects: 0.179000 ms CreateObjectMapping: 0.072300 ms MarkObjects: 2.338100 ms DeleteObjects: 0.015500 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.002989 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.050 seconds
- Domain Reload Profiling:
- ReloadAssembly (1050ms)
- BeginReloadAssembly (123ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (30ms)
- EndReloadAssembly (861ms)
- LoadAssemblies (97ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (266ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (40ms)
- SetupLoadedEditorAssemblies (363ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (7ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (96ms)
- ProcessInitializeOnLoadAttributes (244ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.1 MB.
- System memory in use after: 170.2 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2644.
- Total: 2.490800 ms (FindLiveObjects: 0.173500 ms CreateObjectMapping: 0.070300 ms MarkObjects: 2.231000 ms DeleteObjects: 0.014800 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003800 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.060 seconds
- Domain Reload Profiling:
- ReloadAssembly (1060ms)
- BeginReloadAssembly (128ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (33ms)
- EndReloadAssembly (866ms)
- LoadAssemblies (96ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (272ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (40ms)
- SetupLoadedEditorAssemblies (363ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (93ms)
- ProcessInitializeOnLoadAttributes (247ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (11ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.1 MB.
- System memory in use after: 170.2 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2648.
- Total: 2.537700 ms (FindLiveObjects: 0.182800 ms CreateObjectMapping: 0.074100 ms MarkObjects: 2.264500 ms DeleteObjects: 0.015400 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003060 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.038 seconds
- Domain Reload Profiling:
- ReloadAssembly (1039ms)
- BeginReloadAssembly (115ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (29ms)
- EndReloadAssembly (858ms)
- LoadAssemblies (93ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (270ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (39ms)
- SetupLoadedEditorAssemblies (361ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (95ms)
- ProcessInitializeOnLoadAttributes (243ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (11ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.1 MB.
- System memory in use after: 170.2 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2652.
- Total: 2.547300 ms (FindLiveObjects: 0.182600 ms CreateObjectMapping: 0.071900 ms MarkObjects: 2.276100 ms DeleteObjects: 0.015900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003025 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.045 seconds
- Domain Reload Profiling:
- ReloadAssembly (1045ms)
- BeginReloadAssembly (115ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (29ms)
- EndReloadAssembly (863ms)
- LoadAssemblies (93ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (270ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (40ms)
- SetupLoadedEditorAssemblies (367ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (102ms)
- ProcessInitializeOnLoadAttributes (242ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.1 MB.
- System memory in use after: 170.3 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2656.
- Total: 2.539500 ms (FindLiveObjects: 0.181700 ms CreateObjectMapping: 0.074800 ms MarkObjects: 2.267600 ms DeleteObjects: 0.014600 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003226 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.032 seconds
- Domain Reload Profiling:
- ReloadAssembly (1032ms)
- BeginReloadAssembly (114ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (29ms)
- EndReloadAssembly (853ms)
- LoadAssemblies (92ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (266ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (40ms)
- SetupLoadedEditorAssemblies (361ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (96ms)
- ProcessInitializeOnLoadAttributes (244ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.1 MB.
- System memory in use after: 170.3 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2660.
- Total: 2.681000 ms (FindLiveObjects: 0.202500 ms CreateObjectMapping: 0.078900 ms MarkObjects: 2.381300 ms DeleteObjects: 0.017400 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003058 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.034 seconds
- Domain Reload Profiling:
- ReloadAssembly (1034ms)
- BeginReloadAssembly (111ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (29ms)
- EndReloadAssembly (855ms)
- LoadAssemblies (92ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (268ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (41ms)
- SetupLoadedEditorAssemblies (358ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (95ms)
- ProcessInitializeOnLoadAttributes (241ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.2 MB.
- System memory in use after: 170.3 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2664.
- Total: 2.603200 ms (FindLiveObjects: 0.185600 ms CreateObjectMapping: 0.074200 ms MarkObjects: 2.325900 ms DeleteObjects: 0.016700 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.002983 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.053 seconds
- Domain Reload Profiling:
- ReloadAssembly (1053ms)
- BeginReloadAssembly (120ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (30ms)
- EndReloadAssembly (866ms)
- LoadAssemblies (92ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (272ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (43ms)
- SetupLoadedEditorAssemblies (364ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (98ms)
- ProcessInitializeOnLoadAttributes (244ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.2 MB.
- System memory in use after: 170.3 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2668.
- Total: 2.881300 ms (FindLiveObjects: 0.177800 ms CreateObjectMapping: 0.075300 ms MarkObjects: 2.608000 ms DeleteObjects: 0.019200 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003144 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.157 seconds
- Domain Reload Profiling:
- ReloadAssembly (1158ms)
- BeginReloadAssembly (133ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (32ms)
- EndReloadAssembly (952ms)
- LoadAssemblies (105ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (304ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (46ms)
- SetupLoadedEditorAssemblies (396ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (7ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (109ms)
- ProcessInitializeOnLoadAttributes (264ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.2 MB.
- System memory in use after: 170.3 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2672.
- Total: 2.523800 ms (FindLiveObjects: 0.182300 ms CreateObjectMapping: 0.072500 ms MarkObjects: 2.253200 ms DeleteObjects: 0.014900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003140 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.046 seconds
- Domain Reload Profiling:
- ReloadAssembly (1046ms)
- BeginReloadAssembly (123ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (30ms)
- EndReloadAssembly (857ms)
- LoadAssemblies (93ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (266ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (39ms)
- SetupLoadedEditorAssemblies (362ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (94ms)
- ProcessInitializeOnLoadAttributes (245ms)
- ProcessInitializeOnLoadMethodAttributes (6ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.2 MB.
- System memory in use after: 170.3 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2676.
- Total: 2.606800 ms (FindLiveObjects: 0.222500 ms CreateObjectMapping: 0.092100 ms MarkObjects: 2.275800 ms DeleteObjects: 0.015400 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003395 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.100 seconds
- Domain Reload Profiling:
- ReloadAssembly (1100ms)
- BeginReloadAssembly (131ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (32ms)
- EndReloadAssembly (897ms)
- LoadAssemblies (102ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (292ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (44ms)
- SetupLoadedEditorAssemblies (365ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (94ms)
- ProcessInitializeOnLoadAttributes (249ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.2 MB.
- System memory in use after: 170.3 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2680.
- Total: 2.656000 ms (FindLiveObjects: 0.234400 ms CreateObjectMapping: 0.137500 ms MarkObjects: 2.261500 ms DeleteObjects: 0.021600 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.002988 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.033 seconds
- Domain Reload Profiling:
- ReloadAssembly (1033ms)
- BeginReloadAssembly (110ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (29ms)
- EndReloadAssembly (857ms)
- LoadAssemblies (92ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (271ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (40ms)
- SetupLoadedEditorAssemblies (359ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (96ms)
- ProcessInitializeOnLoadAttributes (241ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.2 MB.
- System memory in use after: 170.3 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2684.
- Total: 2.555500 ms (FindLiveObjects: 0.195100 ms CreateObjectMapping: 0.079500 ms MarkObjects: 2.264400 ms DeleteObjects: 0.015600 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003403 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.062 seconds
- Domain Reload Profiling:
- ReloadAssembly (1063ms)
- BeginReloadAssembly (134ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (34ms)
- EndReloadAssembly (857ms)
- LoadAssemblies (99ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (268ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (40ms)
- SetupLoadedEditorAssemblies (360ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (93ms)
- ProcessInitializeOnLoadAttributes (245ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.2 MB.
- System memory in use after: 170.3 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2688.
- Total: 2.781100 ms (FindLiveObjects: 0.202500 ms CreateObjectMapping: 0.082100 ms MarkObjects: 2.466800 ms DeleteObjects: 0.028300 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 235717.401867 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Other/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Other/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9be13e02717634323eeeff7deb9d891') in 0.004056 seconds
- Import took 0.007086 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.024816 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Other/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Other/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9be13e02717634323eeeff7deb9d891') in 0.001860 seconds
- Import took 0.004852 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.715280 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Other/KeyPressSimulator.cs
- artifactKey: Guid(35089fe4cbd9e1a4c8a6970073eb3457) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Other/KeyPressSimulator.cs using Guid(35089fe4cbd9e1a4c8a6970073eb3457) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ce82e45d54bd5f10778b6e74d32b8d7c') in 0.001660 seconds
- Import took 0.016536 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.919923 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Other/CMDLauncher.cs
- artifactKey: Guid(cf927de47002b864f982e8f9b6933e2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Other/CMDLauncher.cs using Guid(cf927de47002b864f982e8f9b6933e2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2a296c1bd108db867a3de5d9826bc171') in 0.001805 seconds
- Import took 0.004758 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003031 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.079 seconds
- Domain Reload Profiling:
- ReloadAssembly (1080ms)
- BeginReloadAssembly (137ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (20ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (30ms)
- EndReloadAssembly (876ms)
- LoadAssemblies (98ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (269ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (41ms)
- SetupLoadedEditorAssemblies (374ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (96ms)
- ProcessInitializeOnLoadAttributes (254ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (12ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.2 MB.
- System memory in use after: 170.3 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2692.
- Total: 2.470600 ms (FindLiveObjects: 0.193800 ms CreateObjectMapping: 0.077600 ms MarkObjects: 2.181600 ms DeleteObjects: 0.016600 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 20.143535 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Common/TextLoader.cs
- artifactKey: Guid(843e20a04875557409f742f2d4b071cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Common/TextLoader.cs using Guid(843e20a04875557409f742f2d4b071cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b527d73ced0739f696bbad7ca1fd402e') in 0.004266 seconds
- Import took 0.007351 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003360 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.62 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.043 seconds
- Domain Reload Profiling:
- ReloadAssembly (1043ms)
- BeginReloadAssembly (121ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (30ms)
- EndReloadAssembly (856ms)
- LoadAssemblies (92ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (265ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (41ms)
- SetupLoadedEditorAssemblies (364ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (97ms)
- ProcessInitializeOnLoadAttributes (245ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (11ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.2 MB.
- System memory in use after: 170.3 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2696.
- Total: 2.583400 ms (FindLiveObjects: 0.196400 ms CreateObjectMapping: 0.079300 ms MarkObjects: 2.291000 ms DeleteObjects: 0.016000 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 19.205174 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1321bff650388cb4db6dab3f206bc89f') in 0.003740 seconds
- Import took 0.006629 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003120 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.043 seconds
- Domain Reload Profiling:
- ReloadAssembly (1043ms)
- BeginReloadAssembly (122ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (29ms)
- EndReloadAssembly (855ms)
- LoadAssemblies (91ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (268ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (39ms)
- SetupLoadedEditorAssemblies (363ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (95ms)
- ProcessInitializeOnLoadAttributes (244ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (12ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.2 MB.
- System memory in use after: 170.4 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2700.
- Total: 2.465500 ms (FindLiveObjects: 0.173500 ms CreateObjectMapping: 0.068500 ms MarkObjects: 2.207600 ms DeleteObjects: 0.015200 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 127.356946 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '57b63a5d9077f72b646718a813b6f3cb') in 0.003934 seconds
- Import took 0.019753 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.061968 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '57b63a5d9077f72b646718a813b6f3cb') in 0.001587 seconds
- Import took 0.004635 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003367 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.55 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.036 seconds
- Domain Reload Profiling:
- ReloadAssembly (1036ms)
- BeginReloadAssembly (114ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (28ms)
- EndReloadAssembly (857ms)
- LoadAssemblies (93ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (264ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (40ms)
- SetupLoadedEditorAssemblies (366ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (7ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (94ms)
- ProcessInitializeOnLoadAttributes (249ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (11ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.3 MB.
- System memory in use after: 170.4 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2704.
- Total: 2.595500 ms (FindLiveObjects: 0.198100 ms CreateObjectMapping: 0.069700 ms MarkObjects: 2.311800 ms DeleteObjects: 0.015000 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.002942 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.035 seconds
- Domain Reload Profiling:
- ReloadAssembly (1035ms)
- BeginReloadAssembly (106ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (28ms)
- EndReloadAssembly (864ms)
- LoadAssemblies (91ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (268ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (41ms)
- SetupLoadedEditorAssemblies (370ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (94ms)
- ProcessInitializeOnLoadAttributes (255ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.3 MB.
- System memory in use after: 170.4 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2708.
- Total: 2.545200 ms (FindLiveObjects: 0.196100 ms CreateObjectMapping: 0.074800 ms MarkObjects: 2.258400 ms DeleteObjects: 0.014900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 5506.785464 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fb942cb6b9a72c10703b2c8e4110b0d2') in 0.003850 seconds
- Import took 0.017346 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.002965 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.036 seconds
- Domain Reload Profiling:
- ReloadAssembly (1036ms)
- BeginReloadAssembly (110ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (29ms)
- EndReloadAssembly (860ms)
- LoadAssemblies (93ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (270ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (41ms)
- SetupLoadedEditorAssemblies (362ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (94ms)
- ProcessInitializeOnLoadAttributes (245ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.4 MB.
- System memory in use after: 170.5 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2712.
- Total: 2.633500 ms (FindLiveObjects: 0.212300 ms CreateObjectMapping: 0.080700 ms MarkObjects: 2.322200 ms DeleteObjects: 0.016900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 191.294969 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '902c0b74de2238e21488e5747ef0a930') in 0.003909 seconds
- Import took 0.011364 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.072041 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '902c0b74de2238e21488e5747ef0a930') in 0.001543 seconds
- Import took 0.005175 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003068 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.063 seconds
- Domain Reload Profiling:
- ReloadAssembly (1063ms)
- BeginReloadAssembly (128ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (32ms)
- EndReloadAssembly (871ms)
- LoadAssemblies (92ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (273ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (41ms)
- SetupLoadedEditorAssemblies (368ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (95ms)
- ProcessInitializeOnLoadAttributes (250ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (11ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.4 MB.
- System memory in use after: 170.5 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2716.
- Total: 2.672800 ms (FindLiveObjects: 0.199200 ms CreateObjectMapping: 0.075400 ms MarkObjects: 2.381300 ms DeleteObjects: 0.015900 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003272 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.037 seconds
- Domain Reload Profiling:
- ReloadAssembly (1037ms)
- BeginReloadAssembly (108ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (29ms)
- EndReloadAssembly (863ms)
- LoadAssemblies (92ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (268ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (43ms)
- SetupLoadedEditorAssemblies (364ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (96ms)
- ProcessInitializeOnLoadAttributes (246ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.4 MB.
- System memory in use after: 170.6 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2720.
- Total: 2.606600 ms (FindLiveObjects: 0.216700 ms CreateObjectMapping: 0.085600 ms MarkObjects: 2.287900 ms DeleteObjects: 0.015500 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 26.377219 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08909b34dc8ebf55814ea3a430e6a43c') in 0.003895 seconds
- Import took 0.006946 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.002130 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08909b34dc8ebf55814ea3a430e6a43c') in 0.001593 seconds
- Import took 0.004758 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003286 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.056 seconds
- Domain Reload Profiling:
- ReloadAssembly (1056ms)
- BeginReloadAssembly (114ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (29ms)
- EndReloadAssembly (877ms)
- LoadAssemblies (91ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (270ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (42ms)
- SetupLoadedEditorAssemblies (375ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (95ms)
- ProcessInitializeOnLoadAttributes (258ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (11ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.4 MB.
- System memory in use after: 170.6 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2724.
- Total: 2.507500 ms (FindLiveObjects: 0.216700 ms CreateObjectMapping: 0.086200 ms MarkObjects: 2.188200 ms DeleteObjects: 0.015300 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003080 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.049 seconds
- Domain Reload Profiling:
- ReloadAssembly (1050ms)
- BeginReloadAssembly (112ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (30ms)
- EndReloadAssembly (872ms)
- LoadAssemblies (93ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (276ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (40ms)
- SetupLoadedEditorAssemblies (368ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (98ms)
- ProcessInitializeOnLoadAttributes (248ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.4 MB.
- System memory in use after: 170.6 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2728.
- Total: 2.640800 ms (FindLiveObjects: 0.198900 ms CreateObjectMapping: 0.077600 ms MarkObjects: 2.348200 ms DeleteObjects: 0.015100 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 62.623608 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '98c07992a2198137f28dea40c14823b6') in 0.003780 seconds
- Import took 0.006817 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003165 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.029 seconds
- Domain Reload Profiling:
- ReloadAssembly (1029ms)
- BeginReloadAssembly (109ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (29ms)
- EndReloadAssembly (854ms)
- LoadAssemblies (92ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (266ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (41ms)
- SetupLoadedEditorAssemblies (363ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (95ms)
- ProcessInitializeOnLoadAttributes (246ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.4 MB.
- System memory in use after: 170.6 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2732.
- Total: 2.514800 ms (FindLiveObjects: 0.208000 ms CreateObjectMapping: 0.079900 ms MarkObjects: 2.211200 ms DeleteObjects: 0.015000 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 16.002314 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '05404b71314120232698c64b89fd56aa') in 0.003901 seconds
- Import took 0.017139 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.066265 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '05404b71314120232698c64b89fd56aa') in 0.001569 seconds
- Import took 0.004656 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.002996 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.042 seconds
- Domain Reload Profiling:
- ReloadAssembly (1043ms)
- BeginReloadAssembly (120ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (29ms)
- EndReloadAssembly (857ms)
- LoadAssemblies (95ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (269ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (42ms)
- SetupLoadedEditorAssemblies (359ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (95ms)
- ProcessInitializeOnLoadAttributes (242ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.4 MB.
- System memory in use after: 170.6 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2736.
- Total: 2.534900 ms (FindLiveObjects: 0.206500 ms CreateObjectMapping: 0.079400 ms MarkObjects: 2.234200 ms DeleteObjects: 0.014100 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 10.746441 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2e33e25d1c361abe5ff0b1d7bebf4153') in 0.003912 seconds
- Import took 0.019481 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.065146 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2e33e25d1c361abe5ff0b1d7bebf4153') in 0.001584 seconds
- Import took 0.004925 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003151 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.055 seconds
- Domain Reload Profiling:
- ReloadAssembly (1056ms)
- BeginReloadAssembly (116ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (30ms)
- EndReloadAssembly (873ms)
- LoadAssemblies (96ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (275ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (40ms)
- SetupLoadedEditorAssemblies (365ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (97ms)
- ProcessInitializeOnLoadAttributes (246ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2116 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.4 MB.
- System memory in use after: 170.7 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2740.
- Total: 2.585200 ms (FindLiveObjects: 0.208400 ms CreateObjectMapping: 0.080700 ms MarkObjects: 2.280100 ms DeleteObjects: 0.015200 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 53.753576 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f98236edd6057f45188f418de934a586') in 0.003778 seconds
- Import took 0.006607 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 129.009618 seconds.
- path: Assets/Examples/017JsonConstructer/Scripts
- artifactKey: Guid(4776f81a4a4649f4f921113470a20cd1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Examples/017JsonConstructer/Scripts using Guid(4776f81a4a4649f4f921113470a20cd1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3638892a215b0fcd844275b320402729') in 0.001756 seconds
- Import took 0.004967 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.489118 seconds.
- path: Assets/Examples/017JsonConstructer/Scripts/ExampleTestScript.cs
- artifactKey: Guid(f61239b6ea10d974e96ef6b959aa92e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Examples/017JsonConstructer/Scripts/ExampleTestScript.cs using Guid(f61239b6ea10d974e96ef6b959aa92e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c5d313b00562483d303e540a104a917c') in 0.001651 seconds
- Import took 0.016623 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 2.707570 seconds.
- path: Assets/Examples/017JsonConstructer/Scripts/JC.cs
- artifactKey: Guid(f61239b6ea10d974e96ef6b959aa92e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Examples/017JsonConstructer/Scripts/JC.cs using Guid(f61239b6ea10d974e96ef6b959aa92e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0f9717f6a2387ae1dd1e3e042c2e3a9a') in 0.002139 seconds
- Import took 0.005201 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 1.216847 seconds.
- path: Assets/Examples/017JsonConstructer/Scenes
- artifactKey: Guid(7ef728cd07cc74a44be631f083d68b98) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Examples/017JsonConstructer/Scenes using Guid(7ef728cd07cc74a44be631f083d68b98) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '61a3d95951395a5096fc5cd152e2e5a4') in 0.001985 seconds
- Import took 0.015646 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.291499 seconds.
- path: Assets/Examples/017JsonConstructer/Scenes/Example.unity
- artifactKey: Guid(5e370fd43ad04524c97fe593b9e0e372) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Examples/017JsonConstructer/Scenes/Example.unity using Guid(5e370fd43ad04524c97fe593b9e0e372) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd6c2b389442012c51a58738a03bac9f7') in 0.052400 seconds
- Import took 0.055638 seconds .
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003013 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.049 seconds
- Domain Reload Profiling:
- ReloadAssembly (1050ms)
- BeginReloadAssembly (117ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (34ms)
- EndReloadAssembly (867ms)
- LoadAssemblies (96ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (271ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (39ms)
- SetupLoadedEditorAssemblies (365ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (97ms)
- ProcessInitializeOnLoadAttributes (245ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (11ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (11ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2117 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.5 MB.
- System memory in use after: 170.7 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2745.
- Total: 2.661200 ms (FindLiveObjects: 0.206400 ms CreateObjectMapping: 0.082300 ms MarkObjects: 2.355900 ms DeleteObjects: 0.015700 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.002966 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.063 seconds
- Domain Reload Profiling:
- ReloadAssembly (1063ms)
- BeginReloadAssembly (122ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (31ms)
- EndReloadAssembly (876ms)
- LoadAssemblies (99ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (267ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (42ms)
- SetupLoadedEditorAssemblies (372ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (1ms)
- BeforeProcessingInitializeOnLoad (103ms)
- ProcessInitializeOnLoadAttributes (246ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (11ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2117 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.5 MB.
- System memory in use after: 170.7 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2749.
- Total: 2.801600 ms (FindLiveObjects: 0.229300 ms CreateObjectMapping: 0.098200 ms MarkObjects: 2.454700 ms DeleteObjects: 0.018200 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Prepare
- Registering precompiled user dll's ...
- Registered in 0.003318 seconds.
- Begin MonoManager ReloadAssembly
- Native extension for WindowsStandalone target not found
- Native extension for WebGL target not found
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Mono: successfully reloaded assembly
- - Completed reload, in 1.047 seconds
- Domain Reload Profiling:
- ReloadAssembly (1047ms)
- BeginReloadAssembly (110ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (30ms)
- EndReloadAssembly (874ms)
- LoadAssemblies (96ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- SetupTypeCache (287ms)
- ReleaseScriptCaches (1ms)
- RebuildScriptCaches (40ms)
- SetupLoadedEditorAssemblies (358ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (0ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (93ms)
- ProcessInitializeOnLoadAttributes (242ms)
- ProcessInitializeOnLoadMethodAttributes (5ms)
- AfterProcessingInitializeOnLoad (11ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (10ms)
- Platform modules already initialized, skipping
- Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 2117 Unused Serialized files (Serialized files now loaded: 0)
- System memory in use before: 170.5 MB.
- System memory in use after: 170.7 MB.
- Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2753.
- Total: 2.793300 ms (FindLiveObjects: 0.202200 ms CreateObjectMapping: 0.077700 ms MarkObjects: 2.494900 ms DeleteObjects: 0.017600 ms)
- AssetImportParameters requested are different than current active one (requested -> active):
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- ========================================================================
- Received Import Request.
- Time since last request: 951.425391 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a377804621c53b49853e58fd44a0be1c') in 0.003984 seconds
- Import took 0.018669 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.014146 seconds.
- path: Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs
- artifactKey: Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/ToneTuneToolkit/Scripts/Common/JsonConstructer.cs using Guid(c9374cc2a1726fa42a4af017919f03fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a377804621c53b49853e58fd44a0be1c') in 0.001688 seconds
- Import took 0.004953 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 152.833520 seconds.
- path: Assets/PDFs/017.pdf
- artifactKey: Guid(8084ee8b42178fa42948e51fb4b468c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/PDFs/017.pdf using Guid(8084ee8b42178fa42948e51fb4b468c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5b48ffe95e8d36e757145e1cb5293bc6') in 0.020976 seconds
- Import took 0.037304 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.895631 seconds.
- path: Assets/PDFs/018.pdf
- artifactKey: Guid(3b9cfd7c05abb214cbd036df7f3cab56) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/PDFs/018.pdf using Guid(3b9cfd7c05abb214cbd036df7f3cab56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a29591824d3d25ccd671cc53c0039c69') in 0.001941 seconds
- Import took 0.008748 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.000928 seconds.
- path: Assets/PDFs/018.pdf
- artifactKey: Guid(3b9cfd7c05abb214cbd036df7f3cab56) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/PDFs/018.pdf using Guid(3b9cfd7c05abb214cbd036df7f3cab56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a29591824d3d25ccd671cc53c0039c69') in 0.001518 seconds
- Import took 0.004567 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 1.210121 seconds.
- path: Assets/PDFs/014.pdf
- artifactKey: Guid(171002eb164e5214eaa073170882e0a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/PDFs/014.pdf using Guid(171002eb164e5214eaa073170882e0a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '22a98d318af81b86bdadc4eb1448c236') in 0.002364 seconds
- Import took 0.006303 seconds .
- ========================================================================
- Received Import Request.
- Time since last request: 0.482444 seconds.
- path: Assets/PDFs/015.pdf
- artifactKey: Guid(34e554e4c0ab27f459003031370b6acc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/PDFs/015.pdf using Guid(34e554e4c0ab27f459003031370b6acc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1d6e90b9601d9218e86205e7ee4937ad') in 0.001663 seconds
- Import took 0.018289 seconds .
- AssetImportWorkerClient::OnTransportError - code=2 error=End of file
|